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

:root {
    --background: hsl(250, 43%, 98%);
    --foreground: hsl(30, 15%, 15%);
    --primary: hsl(264, 41%, 25%);
    --primary-foreground: hsl(45, 25%, 95%);
    --primary-glow: hsl(264, 51%, 35%);
    --secondary: hsl(25, 35%, 35%);
    --secondary-foreground: hsl(45, 25%, 95%);
    --muted-foreground: hsl(30, 15%, 45%);
    --accent: hsl(45, 85%, 55%);
    --accent-foreground: hsl(30, 15%, 15%);
    --accent-glow: hsl(45, 95%, 65%);
    --magic: hsl(270, 65%, 55%);
    --adventure: hsl(25, 85%, 55%);
    --adventure-foreground: hsl(45, 25%, 95%);
    --border: hsl(40, 20%, 85%);
    --radius: 0.75rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(250, 43%, 98%, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    height: 64px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--magic) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cart:hover {
    color: var(--primary);
}

.nav-cart svg {
    width: 20px;
    height: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.btn-contact svg {
    width: 16px;
    height: 16px;
}

.nav-spacer {
    height: 64px;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: hsla(30, 15%, 8%, 0.6);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px hsla(264, 41%, 15%, 0.4);
    max-width: 480px;
    width: 90%;
    padding: 2rem;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: hsl(40, 20%, 90%);
    color: var(--foreground);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-foreground);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.contact-value {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.4;
}

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

.hero-bg {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('hero-bg.jpg');
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(264, 41%, 25%, 0.8), hsl(25deg 16.19% 4.47% / 60%));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(to right, var(--accent), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.hero-desc {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: hsla(45, 25%, 95%, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-adventure {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 56px;
    padding: 0 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--adventure) 0%, var(--accent) 100%);
    color: var(--adventure-foreground);
    box-shadow: 0 10px 30px -10px hsla(25, 85%, 55%, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

.btn-adventure:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px -10px hsla(25, 85%, 55%, 0.5);
}

.btn-adventure svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-adventure:hover svg {
    transform: rotate(12deg);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 56px;
    padding: 0 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--primary-foreground);
    box-shadow: 0 0 40px hsla(45, 95%, 65%, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px hsla(45, 95%, 65%, 0.5);
}

.btn-hero svg {
    width: 20px;
    height: 20px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: hsla(45, 25%, 95%, 0.8);
    font-size: 0.9375rem;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-info-item svg {
    width: 20px;
    height: 20px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

.scroll-pill {
    width: 24px;
    height: 40px;
    border: 2px solid hsla(45, 25%, 95%, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: var(--accent);
    border-radius: 9999px;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

/* ===== MOBILE NAV ===== */
.nav-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--foreground);
}

.nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
}

.nav-mobile-menu {
    display: none;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
}

.nav-mobile-menu.open {
    display: block;
}

.nav-mobile-menu .btn-contact {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }

    .hero-buttons {
    flex-direction: column;
    align-items: center;
    }

    .btn-adventure, .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    }

    .hero-info {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    }

}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0 0;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: hsla(45, 25%, 95%, 0.8);
    max-width: 500px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid hsla(45, 25%, 95%, 0.15);
    padding: 1.25rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: hsla(45, 25%, 95%, 0.6);
}

.footer-copyright a {
    color: hsla(45, 25%, 95%, 0.45);
    text-decoration: none;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: hsla(45, 25%, 95%, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom {
    flex-direction: column;
    text-align: center;
    }
    .footer-legal {
    justify-content: center;
    }
}
