/* ============================================
   G.I.R.L. DUBAI - Pixel-Perfect Stylesheet
   Based on InDesign: 1440x810 points
   ============================================ */

/* Font Faces - Neue Haas Grotesk Display */
@font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('../assets/fonts/NeueHaasGrotDisp-55Roman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('../assets/fonts/NeueHaasGrotDisp-65Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

@media (min-width: 769px) {
    html, body {
        overflow: hidden;
    }
}

body {
    font-family: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* ============================================
   PAGE CONTAINER - Exactly 100vh, no scroll
   ============================================ */
.page {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 7.4vh 1fr 19.8vh;
    overflow: hidden;
}

/* ============================================
   HEADER - 7.4vh height
   ============================================ */
.header {
    grid-row: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5vh 1.5vw;
    height: 7.4vh;
    box-sizing: border-box;
}

.header__left {
    display: flex;
    align-items: flex-end;
    gap: 1.5vw;
}

.header__logo {
    height: 3.8vh;
}

.header__logo img,
.header__logo svg {
    height: 100%;
    width: auto;
}

.logo-go {
    color: #fff;
    height: 100%;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 1.5vw;
}

.nav-link {
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FFD000;
}

.header__brand {
    height: 3.8vh;
}

.header__brand img {
    height: 100%;
    width: auto;
}

.logo-girl {
    color: #fff;
    stroke: #fff;
    fill: none;
    height: 100%;
    width: auto;
}

/* ============================================
   MAIN - Hero Section
   ============================================ */
.main {
    grid-row: 2;
    display: grid;
    grid-template-columns: 25.3% 74.7%;
    grid-template-rows: 1fr;
}

.hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 25.3% 74.7%;
    align-items: start;
    padding-top: 16vh;
}

/* Hero Text - Left Column */
.hero__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    padding-left: 12%;
    padding-right: 5%;
}

.hero__title {
    font-size: clamp(14px, 1.4vw, 36px);
    font-weight: 500;
    color: #FFD000;
    letter-spacing: 1.5px;
    margin-bottom: 0.3vh;
    line-height: 1.2;
    white-space: nowrap;
}

.hero__date {
    font-size: clamp(14px, 1.4vw, 36px);
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 0.15vh;
    line-height: 1.2;
    white-space: nowrap;
}

.hero__time {
    font-size: clamp(14px, 1.4vw, 36px);
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Hero Images - Right Side (3 equal columns) */
.hero__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 100%;
    max-height: 54vh;
}

.hero__image {
    overflow: hidden;
    height: 100%;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--alba img {
    object-position: center 20%;
}

.hero__image--helmet img {
    object-position: center center;
}

.hero__image--track img {
    object-position: center center;
}

/* ============================================
   INFO SECTION - Bottom 19.8vh
   Grid matches image columns: 25.3% + 3x24.9%
   ============================================ */
.info {
    grid-row: 3;
    display: grid;
    /* Match hero layout: 25.3% left + 74.7% right (3 equal parts) */
    grid-template-columns: 25.3% calc(74.7% / 3) calc(74.7% / 3) calc(74.7% / 3);
    gap: 0;
    padding: 2vh 0;
    align-items: start; /* Top-alignment for Benefits og Who */
}

.info__cta {
    /* Kolonne 1: Flugter med titel, BUND-aligned */
    padding-left: 3%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: end;
    padding-bottom: 2vh;
}

.info__signup {
    font-size: clamp(14px, 1.4vw, 36px);
    font-weight: 500;
    color: #FFD000;
    letter-spacing: 1.5px;
    margin-left: 3%;
    white-space: nowrap;
    text-decoration: none;
    display: block;
}

.info__signup:hover {
    color: #fff;
}

.info__benefits {
    /* Kolonne 2: Flugter med Alba-billede, TOP aligner med Who */
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    align-self: start;
    padding-top: 0;
}

.info__benefits p {
    font-size: clamp(9px, 0.66vw, 17px);
    line-height: 1.7;
    color: #fff;
    white-space: nowrap;
}

.info__who {
    /* Kolonne 3: Flugter med Helmet-billede, TOP aligner med Benefits */
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: start;
    padding-top: 0;
}

.info__heading {
    font-weight: 400;
    color: #FFD000;
}

.info__target {
    font-size: clamp(9px, 0.66vw, 17px);
    color: #fff;
    margin-bottom: calc(0.5em + 0.3vh);
    white-space: nowrap;
}

.info__list {
    font-size: clamp(9px, 0.66vw, 17px);
    color: #fff;
    line-height: 0.4;
    margin-top: -0.3vh;
    white-space: nowrap;
}

.info__who p {
    font-size: clamp(9px, 0.66vw, 17px);
    line-height: 1.6;
    color: #fff;
    white-space: nowrap;
}

.info__tagline {
    font-size: clamp(9px, 0.66vw, 17px);
    color: #fff;
    line-height: 0.4;
    margin-top: -0.3vh;
    white-space: nowrap;
}

.info__footer {
    /* Kolonne 4: Off-position, BUND-aligned */
    text-align: left;
    display: flex;
    flex-direction: column;
    align-self: end;
    padding-bottom: 2vh;
    /* Off-position: træk til venstre med procent i stedet for pixels */
    margin-left: -5.8%;
}

.info__spots {
    font-size: clamp(9px, 0.66vw, 17px);
    margin-bottom: 0.3vh;
    white-space: nowrap;
}

.info__hook {
    font-size: clamp(9px, 0.66vw, 17px);
    white-space: nowrap;
}

.info__link {
    color: #FFD000;
    text-decoration: none;
}

.info__link:hover {
    text-decoration: underline;
}

/* ============================================
   MEDIA QUERIES - Bevar proportioner på alle størrelser
   ============================================ */
/* Ingen ændringer til grid-struktur - proportionerne bevares */
