/* --- 1. GLOBAL VARIABLES & RESET --- */
:root {
    --deep-teal: #004B49;
    --muted-gold: #C5A059;
    --soft-beige: #F5F5DC;
    --dark-charcoal: #1A1A1A;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--white); 
    color: var(--dark-charcoal); 
    line-height: 1.6;
    
    /* STICKY FOOTER LOGIC: Keeps footer at bottom */
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* --- 2. NAVIGATION & HAMBURGER MENU --- */
nav { 
    background: #fff; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo-img { height: 50px; width: auto; } 

/* Desktop Menu Styles */
.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}

.nav-menu li a { 
    text-decoration: none; 
    color: var(--dark-charcoal); 
    font-size: 0.9rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    transition: 0.3s;
}

.nav-menu li a:hover { color: var(--deep-teal); }

/* Hamburger Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-charcoal);
}

/* --- 3. MAIN CONTENT (Animation Wrapper) --- */
main {
    flex: 1; /* Pushes footer down */
    width: 100%;
    /* The Animation Trigger */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- 4. SECTIONS (Your Specific Design) --- */
.hero { padding: 80px 0; display: flex; align-items: center; gap: 50px; background-color: var(--white); }
.hero-text { flex: 1.2; }
.hero-image { flex: 1; }
.hero-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.tag-label { background: #e8f2f1; color: var(--deep-teal); padding: 6px 14px; font-size: 0.75rem; font-weight: 700; border-radius: 4px; display: inline-block; margin-bottom: 20px; }
.hero h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; color: var(--dark-charcoal); }
.hero h1 span { color: var(--deep-teal); }

.btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-teal { background: var(--deep-teal); color: #fff; padding: 16px 28px; text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; }
.btn-outline { border: 2px solid var(--dark-charcoal); color: var(--dark-charcoal); padding: 16px 28px; text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; }

.focus-section { padding: 100px 0; text-align: center; background-color: var(--soft-beige); }
.focus-section h2 { font-size: 2.2rem; margin-bottom: 10px; color: var(--deep-teal); }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.focus-card { padding: 40px; border-radius: 8px; text-align: left; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.icon-box { color: var(--deep-teal); margin-bottom: 20px; font-size: 2rem; }
.focus-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.focus-card p { font-size: 0.9rem; color: #666; }

.philosophy { background: var(--deep-teal); color: #fff; padding: 120px 0; text-align: center; }
.philosophy h2 { font-size: 2.4rem; font-weight: 400; max-width: 900px; margin: 0 auto 30px; line-height: 1.3; }
.philosophy h2 span { color: var(--muted-gold); font-weight: 700; }
.btn-gold-pill { display: inline-block; border: 2px solid var(--muted-gold); color: var(--muted-gold); padding: 14px 40px; text-transform: uppercase; text-decoration: none; border-radius: 50px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; transition: 0.3s; }
.btn-gold-pill:hover { background: var(--muted-gold); color: #fff; }

.cta-box { background-color: var(--white); padding: 120px 0; text-align: center; border-bottom: 1px solid #eee; }
.cta-box h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--dark-charcoal); }
.btn-teal-cta { background: var(--deep-teal); color: #fff; padding: 18px 45px; text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; transition: 0.3s; }

/* --- 5. FOOTER STYLES --- */
footer { background-color: #111111; color: #ffffff; padding: 80px 0 30px 0; width: 100%; display: block; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-col h5 { color: var(--muted-gold); margin-bottom: 25px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #999999; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--muted-gold); }
.social-icons { display: flex; gap: 15px; align-items: center; }
.social-icons a { width: 40px; height: 40px; background: #222; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; font-size: 1.2rem; transition: 0.3s; text-decoration: none; }
.social-icons a:hover { background: var(--muted-gold); }
.footer-logo-img { width: 150px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }

/* --- 6. ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 7. RESPONSIVE / MOBILE STYLES --- */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; }
    .focus-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; margin-top: 20px; }
    
    /* Mobile Navigation Logic */
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%; /* Hide off screen */
        top: 80px; /* Below the header */
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding-bottom: 20px;
    }

    .nav-menu.active { left: 0; } /* Slide in */
    .nav-menu li { margin: 16px 0; }
}