:root {
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --text-dark: #2d2d2d;
    --text-gray: #6b6b6b;
    --text-muted: #999999;
    --accent-pink: #f8c8dc;
    --accent-lavender: #e8d5f2;
    --accent-mint: #c5e8e0;
    --accent-peach: #fde4cf;
    --accent-coral: #e8a598;
    --border: #eaeaea;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Content container for max-width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Decorative background shapes */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-lavender) 50%, var(--accent-mint) 100%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-peach) 100%);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

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

nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.66rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.95em;
    margin-right: -0.95em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-family: 'Special Elite', 'Courier New', monospace;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-dark);
    outline: none;
}

.nav-links a.active {
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-coral);
    padding-bottom: 0.25rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-light), var(--bg-light)), linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-lavender) 50%, var(--accent-mint) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.nav-cta:hover,
.nav-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.menu-toggle:focus {
    outline: 2px solid var(--accent-coral);
    outline-offset: 2px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(200, 230, 220, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(230, 200, 220, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 220, 200, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(220, 200, 240, 0.3) 0%, transparent 40%),
        linear-gradient(135deg, #faf9f7 0%, #f5f0f0 50%, #f0f5f3 100%);
    background-size: auto, auto, auto, auto, cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/hero-background-mashup.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* Decorative circles - using separate elements since ::before is used for background */
.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-peach);
    border-radius: 50%;
    opacity: 0.6;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Travel Hero with Video */
.hero:has(.travel-hero) {
    padding: 0 2rem;
}

.hero:has(.travel-hero) .hero-inner {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content.travel-hero {
    max-width: 1400px;
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
}

.hero-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-lavender) 50%, var(--accent-mint) 100%);
    padding: 8px;
}

.hero-video-container {
    position: relative;
}

.hero-video-container iframe,
.hero-video-container > div:first-child iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
    transform: scale(1.03);
}

.hero-video-container > div:first-child {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

#heroVideo {
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px;
}

.unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateX(-50%) scale(1.05);
}

.hero-image {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-lavender) 50%, var(--accent-mint) 100%);
    padding: 8px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-label {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #3d3d3d;
}

.subtitle {
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.subtitle a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.subtitle a:hover {
    color: var(--accent-coral);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-link.primary {
    background: var(--text-dark);
    color: var(--bg-white);
    border: 2px solid var(--text-dark);
}

.hero-link.primary:hover,
.hero-link.primary:focus {
    background: transparent;
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    outline: none;
}

.hero-link.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.hero-link.secondary:hover,
.hero-link.secondary:focus {
    border-color: var(--text-dark);
    transform: translateY(-3px);
    outline: none;
}

/* Quote decoration */
.hero-quote {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    max-width: 240px;
    text-align: right;
    display: none;
}

@media (min-width: 1200px) {
    .hero-quote {
        display: block;
    }
}

.hero-quote::before {
    content: '"';
    position: absolute;
    top: -60px;
    right: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--accent-mint);
    opacity: 0.4;
    line-height: 1;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-author {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 3px;
}

/* Social sidebar */
.social-sidebar {
    position: fixed;
    left: calc((100vw - 1200px) / 2 + 2rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    z-index: 100;
}

@media (max-width: 1200px) {
    .social-sidebar {
        left: 2rem;
    }
}

.social-sidebar a {
    color: var(--text-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-sidebar a:hover {
    color: var(--text-dark);
    transform: scale(1.15);
}

.social-sidebar::after {
    content: 'FOLLOW ME';
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator .arrow {
    width: 16px;
    height: 16px;
    border-right: 1px solid var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
    transform: rotate(45deg);
}

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

/* Next Adventure link styling */
.scroll-indicator.next-adventure {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
}

.scroll-indicator.next-adventure-fixed {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: opacity 0.3s ease;
}

.scroll-indicator.next-adventure span {
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.arrow-animated {
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.arrow-animated svg {
    stroke: var(--text-gray);
    transition: stroke 0.3s ease;
}

.scroll-indicator.next-adventure:hover .arrow-animated svg {
    stroke: var(--accent-coral);
}

.scroll-indicator.next-adventure:hover span {
    color: var(--accent-coral);
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Video Sections (like hero) */
.video-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 2rem;
    background: transparent;
}

.video-section .hero-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-section .hero-content.travel-hero {
    margin-left: 50px;
    margin-right: 50px;
}

/* Journey Section Styles */
.journey-section {
    padding: 8rem 4rem;
    position: relative;
    background: var(--bg-white);
}

.journey-section:nth-child(odd) {
    background: var(--bg-light);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.destination-info {
    padding: 2rem;
}

.country-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.country-flag {
    font-size: 2rem;
}

.country-name {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-coral);
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.travel-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-frame {
    display: none;
}

/* Flight decorations - disabled for clean look */
.flight-path,
.plane-icon {
    display: none;
}

/* Contact Section */
.contact-section {
    padding: 8rem 4rem;
    background: var(--bg-white);
    text-align: center;
    position: relative;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover,
.social-link:focus {
    border-color: var(--text-dark);
    color: var(--text-dark);
    transform: translateY(-3px);
    outline: none;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

footer .container {
    max-width: 1200px;
}

footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-coral);
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }
    
    .hero {
        padding: 8rem 2rem 4rem;
    }
    
    .journey-section,
    .contact-section {
        padding: 6rem 2rem;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .hero-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-content.travel-hero,
    .video-section .hero-content.travel-hero {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 968px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }

    .journey-section {
        padding: 4rem 1.5rem;
    }

    .travel-stats {
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-link {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Disabled elements */
.world-pattern {
    display: none;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
