@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary: #059669;
    --primary-light: #10b981;
    --primary-dark: #047857;
    --accent: #f59e0b;
    --bg-dark: #090d16;
    --card-bg: rgba(15, 23, 42, 0.78);
    --card-border: rgba(255, 255, 255, 0.12);
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --text-dim: #94a3b8;
    --glass-glow: 0 10px 32px 0 rgba(0, 0, 0, 0.45);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background video with overlay */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.background-clip {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(9, 13, 22, 0.65) 0%, 
        rgba(15, 23, 42, 0.85) 55%, 
        rgba(9, 13, 22, 0.95) 100%);
    z-index: -1;
    backdrop-filter: blur(2px);
}

/* Modern Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-brand i {
    color: var(--primary-light);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Audio Player styling */
.audio-player-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 25px;
}

audio {
    border-radius: 9999px;
    filter: invert(0.9) hue-rotate(180deg);
    opacity: 0.85;
    transition: var(--transition);
    height: 38px;
}

audio:hover {
    opacity: 1;
}

/* Container */
.main-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 44px 36px;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(5, 150, 105, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 980px;
    margin: 0 auto 55px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1s ease-out;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ec4899 100%);
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f1f5f9;
    max-width: 820px;
    margin: 0 auto 28px;
    line-height: 1.85;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle .highlight {
    color: #34d399;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.4);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.4);
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.6);
}

/* Destinations Section */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    margin-bottom: 70px;
}

.dest-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--glass-glow);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dest-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.25);
}

.dest-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img-wrap img {
    transform: scale(1.08);
}

.dest-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.dest-card:hover .dest-title {
    color: var(--primary-light);
}

.dest-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dest-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dest-card:hover .dest-link {
    gap: 12px;
    color: #34d399;
}

/* Gallery Section */
.gallery-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(12px);
    box-shadow: var(--glass-glow);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(9, 13, 22, 0.9) 0%, transparent 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Modern Footer */
.footer {
    text-align: center;
    padding: 30px 20px 10px;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid var(--card-border);
}

.footer span {
    color: var(--primary-light);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
        flex-direction: column;
        gap: 12px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .main-wrapper {
        padding-top: 160px;
    }
    .hero-section {
        padding: 32px 18px;
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 1.95rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .gallery-section {
        padding: 24px 16px;
    }
}