@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #030711; /* Deep Navy */
    --accent-gold: #D4AF37;
    --text-primary: #000000;
    --text-secondary: #4b5563; /* Slate grey for body text on white */
    --text-light: #f3f4f6; /* Off-white for text on navy */
    
    /* Spacing */
    --section-padding: 120px 5%;
    --content-max-width: 1200px;
    
    /* Transitions */
    --transition-standard: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    font-weight: 700;
}

/* Base Layout */
.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
}

section {
    padding: var(--section-padding);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-standard);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    position: relative;
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    max-width: var(--content-max-width);
}

.hero-logo img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin-left: auto;
    transition: var(--transition-standard);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem); /* Slightly smaller to fit the long copy better */
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 500;
}

/* Institutional Sections (Navy) */
.section-dark {
    background-color: var(--bg-secondary);
    color: var(--text-light);
    overflow: hidden;
}

.section-dark h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 40px;
}

.section-title-alt {
    font-size: 1.25rem !important;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--accent-gold);
    text-align: center;
}

.section-dark p {
    font-size: 1.2rem;
    max-width: 800px;
    font-weight: 300;
}

/* DNA Section Styling */
.dna-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 40px;
    margin-top: 20px;
}

.dna-tag {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    transition: var(--transition-standard);
    cursor: default;
}

.dna-tag:hover {
    color: var(--accent-gold);
    transform: translateY(-5px);
}

.dna-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-standard);
}

.dna-tag:hover::after {
    width: 100%;
}

/* DNA / Pillars Section */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.pillar-item {
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 30px;
    padding-bottom: 20px;
}

.pillar-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.2;
    display: block;
    margin-bottom: -20px;
}

.pillar-item h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Footer & Legal */
footer {
    padding: 80px 5%;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

footer p {
    margin: 0 auto;
    max-width: 900px;
}

footer a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

footer a:hover {
    color: var(--bg-secondary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 80px 5%;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-top: 60px;
    }
    
    .hero-logo img {
        margin: 0 auto;
        order: -1;
        max-width: 200px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .section-dark h2 {
        font-size: 2rem;
    }

    .dna-tags {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}
