﻿/* Section & Grid Setup */
.reviews-section {
    background-color: #fcfcfc;
}

.review-hidden {
    display: none;
}

.grid-item.is-visible {
    display: block !important;
}

/* Design Elements */
.gold-text {
    color: #d4af37;
    letter-spacing: 2px;
}

.title-accent-line {
    width: 50px;
    height: 2px;
    background-color: #d4af37;
    margin: 20px 0;
}

/* Card Styling */
.review-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
    }

/* Typography */
.review-quote {
    font-family: 'Georgia', serif;
    font-style: italic;
    line-height: 1.7;
    color: #444;
    font-size: 0.95rem;
}

.quote-mark {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
}

.couple-name {
    font-family: 'serif';
    font-weight: 700;
    color: #1a1a1a;
}

.wedding-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vendor Links */
.vendor-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #bbb;
}

.vendor-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
}

    .vendor-link:hover {
        color: #d4af37;
        text-decoration: underline;
    }

/* Buttons */
.read-more-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

    .read-more-btn[aria-expanded="true"] {
        display: none;
    }

.btn-outline-gold {
    border: 2px solid #d4af37;
    color: #d4af37;
    font-weight: 700;
    transition: all 0.3s;
}

    .btn-outline-gold:hover {
        background-color: #d4af37;
        color: #fff;
    }


/* Stats Footer Styling */
.stat-icon-wrap {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-3 {
    font-size: 1.75rem;
}

/* Responsive Borders for the Stats Footer */
@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #dee2e6 !important;
    }
}

/* Make the verified badge subtle */
.verified-badge .badge {
    color: #198754 !important;
    background-color: #f0fdf4 !important;
    border: 1px solid #dcfce7 !important;
    padding: 0.35em 0.65em;
}

/* Ensure SVG alignment */
svg {
    vertical-align: middle;
}