/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png') repeat;
    opacity: 0.03;
}

.reviews h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: #d4af37;
    letter-spacing: 2px;
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #d4af37;
}

.reviewer-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 5px;
}

.stars {
    color: #d4af37;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 2px;
}

.review-text {
    font-family: 'Baskervville', serif;
    font-style: italic;
    color: #bbb;
    line-height: 1.6;
    font-size: 1rem;
}

/* Fancy quote marks */
.review-text::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;
    opacity: 0.2;
    position: absolute;
    left: 20px;
    top: 20px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }

    .reviews h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .review-card {
        padding: 25px;
    }
} 