/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
#hero {
    background-image: url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 40, 60, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.logo-img {
    max-height: 120px;
    width: auto;
    margin-bottom: 10px;
}

.logo-group h1 {
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 6px;
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
}

.tagline {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 300;
}

.text-body {
    max-width: 900px;
    padding: 0 20px;
    margin: 50px auto 0;
}

.body-paragraph {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.body-paragraph:last-child {
    margin-bottom: 0;
}

/* Yearbook Pages Styles */
.yearbook-page {
    background-color: #006633; /* INSEAD Green */
    min-height: 100vh;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.yearbook-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

.yearbook-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.yearbook-text {
    font-size: 1.4rem;
    font-weight: 700; /* Bold from screenshots */
    line-height: 1.4;
    margin-bottom: 40px;
}

.yearbook-subtext {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
}

.yearbook-links {
    list-style: none;
    margin-bottom: 60px;
}

.yearbook-links li {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
}

.yearbook-links li::before {
    content: "•";
    color: #FFFFFF;
    margin-right: 10px;
}

.yearbook-link {
    color: #FFC72C; /* Brand Yellow/Gold */
    text-decoration: none;
}

.yearbook-link:hover {
    text-decoration: underline;
}

.contact-info {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.contact-link {
    color: #FFC72C;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.sign-off {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Common Header Styles */
.site-header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 40px;
}

.site-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.site-header-logo img {
    height: 50px;
    margin-right: 15px;
}

.site-header-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #333333;
}

/* Policy Page Styles */
.policy-page {
    background-color: #FFFFFF;
    color: #333333;
    padding-top: 0;
    padding-bottom: 60px;
    line-height: 1.6;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60vh;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: #FF6B2B; /* Brand Orange */
    margin-bottom: 30px;
    font-weight: 700;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 5px;
}

.policy-content a {
    color: #FF6B2B;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}


/* Footer Section */
#footer {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.email-icon {
    height: 30px;
    margin-bottom: 10px;
}

.email-link {
    color: #FF6B2B;
    text-decoration: none;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

.legal-text {
    color: #A0A0A0;
    font-size: 0.8rem;
}

.legal-text a {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #FF6B2B;
    text-decoration: underline;
}

/* Yearbook Footer Overrides */
.yearbook-footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
    text-align: center;
    padding: 20px;
}

.yearbook-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-group h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .body-paragraph {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .text-body {
        margin-top: 30px;
    }
    
    .logo-img {
        max-height: 90px;
        width: auto;
    }
    
    .email-link {
        font-size: 1.2rem;
    }
    
    #hero {
        min-height: 70vh;
    }

    /* Yearbook Responsive */
    .yearbook-headline {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .yearbook-text, .yearbook-subtext, .yearbook-links li, .contact-info, .sign-off {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Policy Responsive */
    .policy-content h1 {
        font-size: 2rem;
    }
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .site-header-logo-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .site-header-logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-group h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .body-paragraph {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .logo-img {
        max-height: 70px;
        width: auto;
    }
    
    .email-link {
        font-size: 1.1rem;
    }
    
    #footer {
        padding: 40px 20px;
    }
    
    .legal-text {
        font-size: 0.75rem;
    }

    /* Yearbook Responsive Mobile */
    .yearbook-headline {
        font-size: 2rem;
    }
}