@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,700&display=swap');

@font-face {
    font-family: 'GoBold';
    src: url('assets/fonts/Gobold-Bold-Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'GoBold';
    src: url('assets/fonts/Gobold-Bold-Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'GoBold';
    src: url('assets/fonts/Gobold-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GoBold';
    src: url('assets/fonts/Gobold-Bold.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cute Font';
    src: url('assets/fonts/CuteFont-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --brand-red: #EE2352;
    --brand-dark-red: #A91E52;
    --burgundy: #64384B;
    --sand: #FAE3C7;
    --sand-light: #FFF0E0;
    --ocean-deep: #3F777D;
    --ocean-sun: #6EAEAB;
    --surface-dark: #396D73;
    
    --glass-bg: rgba(0, 0, 0, 0.1);
    --glass-bg-alt: rgba(0, 0, 0, 0.15);
    --nav-bg: rgba(40, 75, 80, 0.6);

    --surface-deeper: rgba(0, 17, 19, 0.35);
    --surface-deepest: rgba(0, 11, 13, 0.55);
    --surface-tint: rgba(0, 0, 0, 0.06);
    --surface-card: rgba(0, 0, 0, 0.15);
    --border-subtle: rgba(254, 218, 197, 0.15);
    --text-muted: rgba(254, 218, 197, 0.75);

    --font-headline: 'GoBold', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-cute: 'Cute Font', cursive;
}

::-moz-selection {
    background: var(--brand-red);
    color: var(--sand);
}

::selection {
    background: var(--brand-red);
    color: var(--sand);
}

html {
    scroll-behavior: smooth;
}

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

body {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-sun) 100%);
    color: var(--sand);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
.text-brand-red {
    color: var(--brand-red);
}

.text-right {
    text-align: right;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

.material-symbols-outlined[data-weight="fill"] {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
}

.logo {
    font-family: var(--font-headline);
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

.logo-icon {
    height: 3.4rem;
    width: auto;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--sand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-red);
}

/* Nav actions and legacy buttons removed */

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 1.5rem 0;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: left;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 8rem 1.5rem 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-content {
        max-width: none;
        margin: 0;
    }
}

.badge {
    display: inline-block;
    background: rgba(100, 56, 75, 0.4);
    border: 1px solid var(--burgundy);
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    color: var(--sand);
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: flex-start;
}

.hero-title {
    font-family: var(--font-headline);
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--sand-light);
    max-width: 32rem;
    font-weight: 500;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.store-badge img {
    height: 3.5rem;
    width: auto;
    transition: transform 0.2s ease;
}

.store-badge:hover img {
    transform: scale(1.05);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-height: 480px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-visual {
        max-height: none;
        overflow: visible;
        align-items: center;
    }
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(238, 35, 82, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

@media (min-width: 768px) {
    .glow-orb {
        width: 500px;
        height: 500px;
        filter: blur(120px);
    }
}

.hero-img {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.6));
    border-radius: 3rem;
    border: 8px solid rgba(100, 56, 75, 0.5);
}

@media (min-width: 768px) {
    .hero-img {
        max-width: 400px;
        transform: rotate(3deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    display: none;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}

.scroll-indicator .material-symbols-outlined {
    color: rgba(250, 227, 199, 0.4);
    font-size: 2.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Intro Section */
.intro {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: visible;
}

.intro-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-text {
    max-width: 48rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 5;
}

.intro-visual {
    display: none;
}

@media (min-width: 1024px) {
    .intro-container {
        grid-template-columns: 320px 1fr;
    }

    .intro-visual {
        display: block;
        order: -1;
    }
}

.intro-floating-phone {
    width: 260px;
    border-radius: 1.5rem;
    border: 4px solid rgba(250, 227, 199, 0.3);
    box-shadow: 0 40px 60px -15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(238, 35, 82, 0.1);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
    background: var(--surface-dark);
}

.intro-floating-phone:hover {
    transform: rotate(0deg);
}

.intro h2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

@media (min-width: 768px) {
    .intro h2 {
        font-size: 3rem;
    }
}

.intro p {
    color: var(--sand-light);
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (min-width: 768px) {
    .intro p {
        font-size: 1.25rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 1.5rem;
    background-color: var(--glass-bg-alt);
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 10rem 1.5rem;
    }
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

@media (min-width: 1024px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }

    .steps-container::before {
        content: "";
        position: absolute;
        top: 2.5rem;
        left: 12%;
        right: 12%;
        height: 2px;
        background-color: var(--brand-red);
        z-index: 0;
    }
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: var(--surface-dark);
    border: 2px solid var(--brand-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-cute);
    font-size: 3.5rem;
    color: var(--sand);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.step h3 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--sand);
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

.step p {
    color: var(--sand-light);
    font-size: 1rem;
    max-width: 20rem;
    line-height: 1.6;
}

/* Key Features Section */
.features {
    padding: 0;
    overflow: visible;
}

.features-container {
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: center;
    overflow: visible;
    position: relative;
    background: var(--surface-tint);
    padding: 3rem 0;
}

.feature-row:nth-child(even) {
    grid-template-columns: 2fr 3fr;
    background: var(--surface-deeper);
}

.feature-row:nth-child(even) .feature-content {
    order: 1;
}

.feature-row:nth-child(even) .feature-visual {
    order: -1;
}

@media (min-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
        padding: 0;
        background: none;
    }

    .feature-row:nth-child(even) {
        grid-template-columns: 1fr 1fr;
        background: none;
    }

    .feature-row:nth-child(even) .feature-content {
        order: unset;
    }

    .feature-row:nth-child(even) .feature-visual {
        order: unset;
    }
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem;
    background: none;
    order: -1;
}

@media (min-width: 768px) {
    .feature-content {
        order: unset;
        gap: 1.5rem;
        padding: 6rem 4rem;
    }
}

.feature-content h2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.15;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

@media (min-width: 768px) {
    .feature-content h2 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .feature-visual.reverse {
        order: -1;
    }
}

.feature-content p {
    color: var(--sand-light);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .feature-content p {
        font-size: 1.125rem;
        line-height: 1.625;
    }
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-size: 0.875rem;
}

.feature-list .material-symbols-outlined {
    color: var(--brand-red);
}

.multipliers {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.multiplier-box {
    background: var(--surface-dark);
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    border-left: 4px solid var(--brand-red);
}

.multiplier-box.box-elite {
    border-left-color: var(--brand-dark-red);
}

.multiplier-box .title {
    display: block;
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
}

.box-legendary .title {
    color: var(--brand-red);
}

.box-elite .title {
    color: var(--brand-dark-red);
}

.multiplier-box .sub {
    font-size: 0.75rem;
    color: rgba(254, 218, 197, 0.6);
}

.feature-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    padding: 1rem 0;
    background: none;
    overflow: visible;
}

@media (min-width: 768px) {
    .feature-visual {
        padding: 6rem 4rem;
        background: radial-gradient(ellipse at center, rgba(0, 17, 19, 0) 0%, var(--surface-deeper) 70%);
    }
}

.feature-glow {
    width: 250px;
    height: 250px;
    display: none;
}

@media (min-width: 768px) {
    .feature-glow {
        display: block;
        width: 400px;
        height: 400px;
    }
}

.feature-img {
    width: 100%;
    max-width: 160px;
    border-radius: 1.5rem;
    border: 6px solid var(--surface-dark);
    outline: 2px solid rgba(250, 227, 199, 0.3);
    background: var(--surface-dark);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease;
    margin: 0;
}

@media (min-width: 768px) {
    .feature-img {
        max-width: 300px;
        border-radius: 2rem;
        border: 8px solid var(--surface-dark);
        box-shadow: 0 35px 50px -15px rgba(0, 0, 0, 0.8);
        margin: 0;
    }
}

.rotate-right {
    transform: rotate(2deg);
}

.rotate-right:hover {
    transform: rotate(0deg);
}

.rotate-left {
    transform: rotate(-2deg);
}

.rotate-left:hover {
    transform: rotate(0deg);
}

/* Schedule / Timeline */
.schedule {
    padding: 6rem 1.5rem;
    background-color: var(--glass-bg-alt);
}

.schedule-container {
    max-width: 1280px;
    margin: 0 auto;
}

.schedule h2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    font-size: 2.25rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

.schedule-desc {
    color: var(--sand-light);
    max-width: 48rem;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 4rem;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    background: var(--surface-card);
    border-radius: 0.5rem;
}

.events-table thead th {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--sand);
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.15);
}

.events-table .col-stop {
    width: 3rem;
    text-align: center;
}

.events-table .col-dates,
.events-table tbody td:last-child {
    display: none;
    text-align: right;
}

@media (min-width: 768px) {
    .events-table .col-dates,
    .events-table tbody td:last-child {
        display: table-cell;
    }
}

.events-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--sand);
    font-size: 1rem;
}

.events-table tbody td:first-child {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    font-size: 0.875rem;
    color: var(--ocean-sun);
    text-align: center;
}

.events-table .event-name {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--sand);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .events-table .event-name {
        font-size: 1.125rem;
    }
}

.events-table .col-location,
.events-table .location {
    display: none;
}

@media (min-width: 768px) {
    .events-table .col-location,
    .events-table .location {
        display: table-cell;
    }
}

.events-table .location {
    color: var(--sand);
    font-size: 0.9rem;
    white-space: nowrap;
}

.events-table .flag {
    width: 2rem;
    height: auto;
    vertical-align: middle;
    margin-right: 0.4rem;
    border-radius: 2px;
    outline: 1px solid rgba(250, 227, 199, 0.25);
}

.events-table tbody td:last-child {
    text-align: right;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.events-table tbody tr:hover td {
    background: rgba(0, 0, 0, 0.1);
}

.event-next-badge {
    background: var(--brand-red);
    color: var(--sand-light);
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 0.35rem;
    margin-left: 1rem;
    vertical-align: middle;
    display: inline-block;
}

.events-table tbody tr.event-next {
    outline: 2px solid var(--brand-red);
    outline-offset: -1px;
}

.events-table tbody tr.event-next td {
    border-bottom-color: transparent;
}

.events-table tbody tr.event-next td:last-child {
    color: var(--sand);
}

.events-table tbody tr:last-child td {
    border-bottom: none;
}

/* App Screenshot Wall */
.screenshot-wall {
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.wall-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.wall-header {
    text-align: center;
}

.wall-header h2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

.grid-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
    perspective: 1200px;
}

.wall-phone {
    width: 240px;
    border-radius: 1.5rem;
    border: 6px solid var(--surface-dark);
    outline: 2px solid rgba(250, 227, 199, 0.3);
    background: var(--surface-dark);
    box-shadow: 20px 30px 40px -10px rgba(0, 0, 0, 0.9), inset 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .wall-phone {
        width: 280px;
        margin-left: -5rem;
    }
    
    .wall-phone:first-child {
        margin-left: 0;
    }
    
    .wall-phone:nth-child(1) { transform: rotateY(20deg) rotateZ(-8deg) translateY(20px); z-index: 1; }
    .wall-phone:nth-child(2) { transform: rotateY(10deg) rotateZ(-3deg) translateY(0px); z-index: 2; }
    .wall-phone:nth-child(3) { transform: rotateY(-10deg) rotateZ(3deg) translateY(0px); z-index: 3; }
    .wall-phone:nth-child(4) { transform: rotateY(-20deg) rotateZ(8deg) translateY(20px); z-index: 4; }
}

.wall-phone:hover {
    transform: translateY(-30px) rotateZ(0) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 40px 60px -15px rgba(0, 0, 0, 1), inset 0 0 10px rgba(0,0,0,0.5);
}

/* Call to Action */
.cta {
    position: relative;
    padding: 8rem 1.5rem;
    text-align: center;
    overflow: hidden;
    background: var(--surface-deeper);
}

.cta-bg-skew {
    position: absolute;
    inset: 0;
    background: rgba(238, 35, 82, 0.05);
    transform: skewY(-3deg);
    transform-origin: left;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.cta h2 {
    font-family: var(--font-headline);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 4.5rem;
    }
}

.cta-desc {
    color: var(--sand-light);
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-desc {
        font-size: 1.5rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
}

/* Cleaned legacy .btn-glow */

/* Footer */
.footer {
    padding: 3rem 1.5rem 2rem;
    background: var(--surface-deepest);
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-family: var(--font-headline);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: var(--sand);
    text-shadow: 2px 3px 10px rgba(0, 40, 45, 0.3);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(254, 218, 197, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sand);
}

.footer-legal {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    color: rgba(254, 218, 197, 0.6);
    font-size: 0.75rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}