/* css/homepage.css */

/* --- HERO PARALLAX --- */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start; /* Moves the box to the top */
    justify-content: flex-end; /* Moves the box to the right */
    padding-top: 1vh; /* Breathing room from the top header */
    padding-right: 1%; /* Breathing room from the right edge */
    box-sizing: border-box; /* Ensures padding doesn't break the layout */
    text-align: center;
    color: #fff;
    position: relative;
}

/* The New Elegant Text Box 
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 90%;
    background: rgba(18, 18, 18, 0.20); 
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(3px); 
    border-radius: 12px; /* Increased from 4px to 12px for a softer, elegant curve 
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}*/

/* The Clean, Transparent Text Box */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 90%;
    
    /* Frosted glass effects completely removed */
    background: transparent; 
    border: none;
    backdrop-filter: none; 
    box-shadow: none;
}




.hero-content h1 { 
    font-size: 4.5rem; /* Scaled perfectly for the new box width */
    text-transform: uppercase; 
    letter-spacing: 6px; 
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 0 auto; 
}

/* --- HOST INTRO TEXT --- */
.host-intro {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    z-index: 5;
    padding: 10px;
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }

/* --- EDITORIAL CONTENT BLOCKS --- */
.content-wrapper {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    overflow-x: hidden; 
}

.content-block {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

.content-block:nth-child(even) { 
    flex-direction: row-reverse; 
}

.image-side { 
    flex: 1.2; 
    position: relative; 
}

.image-side img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    filter: brightness(0.95) contrast(1.1);
}

.text-side {
    flex: 1;
    background: #fff;
    padding: 30px 40px; 
    margin-left: -100px; 
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-gold);
    
    height: 380px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    box-sizing: border-box;
}

.content-block:nth-child(even) .text-side {
    margin-left: 0;
    margin-right: -100px;
}

.text-side h2 { 
    font-size: 3rem; 
    color: var(--dark-charcoal); 
    margin-bottom: 25px; 
}

.text-side p { 
    color: var(--text-gray); 
    font-size: 1rem; 
    
    display: -webkit-box;
    -webkit-line-clamp: 8; 
    -webkit-box-orient: vertical;  
    overflow: hidden; 
}

/* --- AWARDS & ACCOLADES ROW --- */
.awards-section {
    background-color: var(--off-white); 
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.awards-grid img {
    height: 90px; /* Constrains all awards to a neat, uniform size */
    width: auto;
    filter: grayscale(100%) opacity(0.65); /* Elegant faded grayscale by default */
    transition: all 0.4s ease;
    cursor: default;
}

.awards-grid img:hover {
    filter: grayscale(0%) opacity(1); /* Bursts into full color */
    transform: scale(1.1); /* Subtle premium zoom */
}

/* Responsive Content Adjustments */
@media (max-width: 992px) {
    .hero {
        align-items: center; 
        justify-content: center; 
        padding-top: 0;
        padding-right: 0;
    }
    .hero-content {
        padding: 40px 20px;
    }
    .hero-content h1 { 
        font-size: 3rem; 
        letter-spacing: 4px;
    }
    .host-intro {
        font-size: 0.95rem; /* Shrinks slightly on tablet/mobile */
        bottom: 10px;
        right: 10px;
    }
    .content-block, .content-block:nth-child(even) { 
        flex-direction: column; 
        margin-bottom: 80px; 
    }
    .text-side, .content-block:nth-child(even) .text-side { 
        margin: -50px 20px 0 20px; 
        padding: 40px 30px; 
        height: auto; 
    }
    .text-side p {
        -webkit-line-clamp: unset; 
    }
    .awards-grid {
        gap: 30px;
    }
    .awards-grid img {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 { 
        font-size: 2.2rem; 
        letter-spacing: 2px;
    }
}