/* =============================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================================= */

:root {
    /* Color Palette */
    --navy: #0a192f;
    --cyan: #64ffda;
    --off-white: #ccd6f6;
    --navy-light: #112240;
    --navy-lighter: #1d3a5f;
    --text-muted: #8892b0;

    /* Typography */
    --font-main: 'Space Grotesk', sans-serif;

    /* Motion & Animation */
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* =============================================================================
   CSS RESET & BASE STYLES
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--navy);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================================================
   LAYOUT UTILITIES
   ============================================================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    min-height: 60vh;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--cyan);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
.hero-content .bounce {
  display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
