:root {
    --primary: #0A192F;
    --secondary: #112240;
    --accent: #2A9D8F;
    --text-light: #F8F9FA;
    --text-muted: #8892B0;
    --gold: #D4AF37;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.glass-nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.glass-nav ul {
    display: flex;
    list-style: none;
}

.glass-nav ul li {
    margin-left: 30px;
}

.glass-nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.glass-nav ul li a:hover {
    color: var(--accent);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.dates {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.tagline {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccd6f6;
}

.btn-primary {
    display: inline-block;
    padding: 15px 45px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Journey Section - Split Layout */
.journey {
    padding: 0;
}

.split-layout {
    display: flex;
    position: relative;
}

.poi-scroll {
    width: 45%;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.poi-card {
    height: 500px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.poi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.poi-card h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.poi-card p {
    font-size: 1.1rem;
    color: #e6f1ff;
    margin-bottom: 15px;
}

.poi-meta {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    background: rgba(10, 25, 47, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.highlight-meta {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
}

.sticky-map {
    width: 60%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 10;
    border-left: 1px solid var(--glass-border);
}

.poi-scroll {
    width: 40%;
    padding: 80px 40px;
}

/* Selection Highlighting */
.poi-card.active {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--accent);
}

.disclaimer-card {
    padding: 30px;
    background: rgba(42, 157, 143, 0.1);
    border: 1px dashed var(--accent);
    border-radius: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Vessel Section */
.vessel-section {
    padding: 120px 0;
    background: var(--secondary);
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.vessel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vessel-item {
    background: var(--primary);
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s;
    height: 100%;
}

.vessel-item:hover {
    transform: translateY(-10px);
}

.vessel-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.vessel-info {
    padding: 30px;
}

.vessel-info h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

/* Hotel Section - Redesign */
.hotel-section {
    padding: 120px 0;
}

.ground-title {
    text-align: center;
    margin-bottom: 60px;
}

.ground-title h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hotel-hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px;
}

.hotel-box {
    background: rgba(10, 25, 47, 0.9);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.hotel-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hotel-box h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hotel-box p {
    margin-bottom: 30px;
    color: #a8b2d1;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: var(--secondary);
}

.contact-box {
    margin-top: 40px;
    padding: 60px;
    background: var(--primary);
    border-radius: 30px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }

    .poi-scroll {
        width: 100%;
        order: 2;
    }

    .sticky-map {
        width: 100%;
        height: 400px;
        top: 0;
        order: 1;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hotel-hero {
        justify-content: center;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .glass-nav {
        padding: 12px 18px;
    }

    .glass-nav .logo {
        font-size: 1.1rem;
    }

    .glass-nav ul {
        gap: 8px;
        margin-left: 10px;
        flex-wrap: wrap;
    }

    .glass-nav ul li {
        margin-left: 8px;
    }

    .hero {
        height: auto;
        padding: 60px 20px 40px;
        background-position: center top;
        align-items: flex-start;
    }

    .glass-nav {
        display: none !important;
    }

    .hero-content {
        width: 100%;
        padding-top: 40px;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin: 0 0 8px 0;
    }

    .dates {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .tagline {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 18px;
        text-align: center;
        margin-left: 0;
    }

    .split-layout {
        flex-direction: column;
    }

    .poi-scroll {
        width: 100%;
        padding: 40px 16px;
        order: 2;
        gap: 24px;
    }

    .poi-card {
        height: auto;
        min-height: 240px;
        padding: 20px;
        border-radius: 14px;
    }

    .poi-card h3 {
        font-size: 1.2rem;
    }

    .poi-card p {
        font-size: 0.95rem;
    }

    .sticky-map {
        width: 100%;
        height: 300px;
        order: 1;
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }

    .vessel-grid {
        grid-template-columns: 1fr;
    }

    .vessel-img {
        height: 200px;
    }

    .vessel-info {
        padding: 18px;
    }

    .hotel-hero {
        height: 360px;
        padding: 20px;
        border-radius: 16px;
        justify-content: center;
    }

    .hotel-box {
        max-width: 100%;
        padding: 24px;
        border-radius: 12px;
    }

    .contact-box {
        padding: 24px;
        display: block;
        width: 100%;
    }

    .footer,
    footer {
        padding: 30px 16px;
    }
}