/* AURELIA STUDIOS - Testimonials Page Specific Styles (assets/css/testimonials.css) */

.testimonials-section {
    padding-top: 150px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    /* Masonry/flexible column layout for reviews */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i.fa-quote-right {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold-accent);
    padding-left: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-color);
    margin-top: 10px;
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Star Rating component */
.rating {
    color: var(--gold-accent);
    margin-bottom: 10px;
}

/* Instagram Reels Section */
.reels-section {
    margin-top: 100px;
    text-align: center;
}
.reels-section h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reel-item {
    position: relative;
    padding-bottom: 150%; /* Aspect ratio for vertical video (3:5) */
    height: 0;
    overflow: hidden;
    background: #000;
}

.reel-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-accent);
}