﻿/* Custom Blockquote Styling */
.venue-expert-quote {
    border-left: 4px solid #3c4858 !important; /* The vertical bar */
    background-color: #fcfcfc;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem; /* Top, Right, Bottom, Left */
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
    position: relative;
}

    .venue-expert-quote .quote-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #444;
        font-style: italic;
        margin-bottom: 1rem;
        display: block;
    }

    .venue-expert-quote .quote-footer {
        display: block;
        padding-top: 0.75rem;
        border-top: 1px solid #eee;
        width: fit-content;
        color: #3c4858;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

/* FROM HERE */

/* Award Badge Container */
.award-badge.gold-edition {
    display: flex;
    flex-wrap: nowrap; /* Forces everything to stay on one line */
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding-bottom: 45px;
    width: 100%;
}

/* The 'Window' that crops the wreath in half */
.wreath-crop {
    width: 45px; /* Adjust this to show more or less of the branch */
    overflow: hidden;
    display: flex;
    flex-shrink: 0; /* Prevents the wreaths from squishing */
}

    .wreath-crop.left {
        justify-content: flex-start;
    }

    .wreath-crop.right {
        justify-content: flex-end;
    }

.award-wreath {
    width: 90px; /* The full image size */
    max-width: none;
    opacity: 0.9;
}

    .award-wreath.mirror {
        transform: scaleX(-1);
    }

/* Typography & Center Section */
.award-center {
    padding: 0 5px;
    flex-shrink: 0;
    white-space: nowrap; /* Crucial: stops the number from wrapping */
}

.award-top-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: -5px;
}

.award-number {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem; /* Balanced size to prevent overflow */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #D4AF37;
    margin: 0;
    display: inline-block;
}

.award-bottom-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D4AF37;
    margin-top: 5px;
}

/* Mobile Adjustments for very small screens */
@media (max-width: 380px) {
    .award-number {
        font-size: 3.5rem;
    }

    .wreath-crop {
        width: 35px;
    }

    .award-wreath {
        width: 70px;
    }
}


/* Ensure the container can hold the absolute-positioned credit */
.hero-credit-wrapper {
    display: block;
}

.main-photo-credit {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
    /* Subtle backdrop so text is readable regardless of the photo brightness */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px); /* Modern 'glass' effect */
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

    .main-photo-credit a {
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .main-photo-credit i {
        width: 12px;
        height: 12px;
    }

    /* Hover State: The 'Pro' Finish */
    .main-photo-credit:hover {
        background: #ffffff;
        transform: translateY(-2px);
    }

        .main-photo-credit:hover a {
            color: #d4af37; /* Gold */
        }