/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from main site */
    --primary-dark: #0A2540;
    --primary-blue: #1E4976;
    --accent-teal: #2A9D8F;
    --accent-coral: #E76F51;
    --warm-gray: #F4F1EA;
    --light-gray: #FAFAF8;
    --mid-gray: #8B8B8B;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Libre Baskerville', serif;
    --font-body: 'Work Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A2540 0%, #1E4976 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Molecular Background Canvas */
#molecular-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.8vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.2rem, 7.2vw, 1.8rem);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
