/* ================================
   Design Tokens
   ================================ */
:root {
    /* Colors */
    --color-black: #313131;
    --color-white: #FFFFFF;
    --color-coral: #EE6C4D;
    --color-yellow: #FDD585;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 36px;
    --spacing-xxl: 42px;

    /* Typography */
    --font-heading: 'Babe Sans', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);

    /* Layout */
    --container-max: 1920px;
    --content-padding: 51px;
}

/* ================================
   Font Faces
   ================================ */
@font-face {
    font-family: 'Babe Sans';
    src: url('fonts/BabeSansRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background: var(--color-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* ================================
   Header
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--spacing-lg) 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 20px;
    line-height: 44px;
    padding: 10px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-link:hover:not(.nav-link--disabled) {
    opacity: 0.8;
    cursor: pointer;
}

.nav-link--disabled {
    opacity: 0.6;
    cursor: default;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero__overlay--coral {
    background: rgba(238, 108, 77, 0.15);
    z-index: 2;
}

.hero__overlay--dark {
    background: rgba(21.62, 21.62, 21.62, 0.50);
    z-index: 3;
}

.hero__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    padding: 0 var(--content-padding);
    max-width: 1920px;
    margin: 0 auto;
}

.hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 8vw, 100px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    max-width: 1096px;
}

/* ================================
   Tags Animation
   ================================ */
.tags-animation {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   CTA Button
   ================================ */
.cta-button {
    min-width: 424px;
    height: 71px;
    padding: 0 var(--spacing-sm);
    background: var(--color-coral);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.72px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(238, 108, 77, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    :root {
        --content-padding: 40px;
    }

    .tags-animation {
        max-width: 300px;
    }

    .cta-button {
        min-width: 320px;
        height: 60px;
        font-size: 20px;
    }

    .nav-link {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    :root {
        --content-padding: 24px;
    }

    .hero__image {
        object-position: center 35%;
    }

    .hero__content {
        gap: 24px;
    }

    .header {
        padding: var(--spacing-md) 0;
    }

    .nav {
        gap: var(--spacing-lg);
    }

    .nav-link {
        font-size: 14px;
        line-height: 24px;
    }

    .tags-animation {
        max-width: 200px;
    }

    .cta-button {
        min-width: 280px;
        height: 56px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    :root {
        --content-padding: 16px;
    }

    .hero__content {
        gap: 20px;
    }

    .logo-image {
        height: 28px;
    }

    .nav {
        gap: var(--spacing-md);
    }

    .nav-link {
        font-size: 12px;
        padding: 8px;
    }

    .tags-animation {
        max-width: 180px;
    }

    .cta-button {
        min-width: 240px;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    :root {
        --content-padding: 12px;
    }

    .hero__content {
        gap: 16px;
    }

    .logo-image {
        height: 24px;
    }

    .nav-link {
        font-size: 10px;
        padding: 6px;
    }

    .tags-animation {
        max-width: 180px;
    }

    .cta-button {
        min-width: 200px;
        height: 44px;
        font-size: 14px;
    }
}
