/* CSS Variables & Reset */
:root {
    --bg-color: #0f181a;
    --text-primary: #e6eef0;
    --text-secondary: #a3b8bc;
    --accent-color: #d4e7ea;
    --accent-gold: #e2c08d;
    --glass-bg: rgba(22, 34, 38, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background & Overlays */
.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 24, 26, 0.3), rgba(15, 24, 26, 0.8), #0f181a);
    z-index: 1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button-primary,
.cta-button-secondary,
.cta-button-outline {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cta-button-primary {
    background: #fff;
    color: var(--bg-color);
    border: 1px solid #fff;
    margin-right: 1rem;
}

.cta-button-primary:hover {
    background: transparent;
    color: #fff;
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.cta-button-outline {
    width: 100%;
    text-align: center;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    margin-top: 1rem;
}

.cta-button-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
}



/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: all 0.4s ease;
}

.main-nav.scrolled {
    background: rgba(15, 24, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--accent-gold);
}

.nav-cta {
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #fff;
    color: var(--bg-color);
    border-color: #fff;
}

section {
    padding: 8rem 5%;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    margin-top: 60px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Accommodation */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.acco-card.glass-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.acco-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.acco-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.acco-card:hover .acco-img {
    transform: scale(1.05);
}

.acco-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.acco-details {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    /* Pushes footer down */
}

.acco-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

.acco-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.sku {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.acco-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.acco-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.acco-details li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent;
}

.timeline-item.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.05);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-color);
    border: 3px solid var(--accent-gold);
    top: 24px;
    border-radius: 50%;
    z-index: 11;
    /* Above line */
}

.timeline-item.right::after {
    left: -8px;
}

.time-content {
    padding: 1.5rem 2rem;
}

/* Activities */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.activity-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Schedule */

.weeks-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.weeks-list span {
    background: rgba(212, 231, 234, 0.05);
    color: var(--text-primary);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 231, 234, 0.1);
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.weeks-list span:hover {
    background: rgba(212, 231, 234, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.weeks-list span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0.5;
}






.inclusions-container {
    text-align: center;
    margin-top: 4rem;
}

.inclusions-container h3 {
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.inclusions-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.inclusions-list li::before {
    content: '✓';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    /* JS will trigger */
}

.fade-in-right {
    opacity: 0;
    /* JS will trigger */
}

/* Footer */
.site-footer {
    background: #0b1214;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-nav h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-link:hover {
    color: var(--accent-gold);
}

.address {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {

    .intro-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 23px;
        /* Adjust dot position */
    }

    .timeline-item.left {
        text-align: left;
    }

    .timeline-item.left::before {
        right: auto;
        left: 60px;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(255, 255, 255, 0.05) transparent transparent;
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        /* Simple mobile hide for now, usually hamburger */
    }
}

/* Restored Contact Styles */
.contact-card {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

/* Enhanced Activity Cards */
.activity-item {
    background: var(--glass-bg);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(22, 34, 38, 0.8);
    border-color: rgba(212, 231, 234, 0.3);
}

.activity-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.activity-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.activity-item:hover .activity-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(226, 192, 141, 0.4));
}

.activity-item h4 {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.activity-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}