@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary: #0f172a; /* Deep Night Blue */
    --accent: #b45309; /* Antique Gold */
    --accent-soft: #f43f5e; /* Sunset Coral */
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --bg-dark: #0f172a;
    --bg-light: #ffffff;
    --transition-slow: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Badge */
.bv-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(180, 83, 9, 0.9);
    color: white;
    padding: 5px 15px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
    z-index: 3000;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: var(--transition-fast);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 6%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

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

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav ul li a {
    color: white;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

nav ul li a:hover, nav ul li a.active {
    opacity: 1;
    color: var(--accent);
}

.nav-cta {
    border: 1px solid var(--accent);
    color: white;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(60px, 8vw, 120px);
    margin-bottom: 20px;
    font-style: italic;
}

.hero p {
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--accent);
}

/* Sections */
section {
    padding: 120px 6%;
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

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

.section-header h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

/* Destination Cards */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.dest-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.dest-card span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}

/* Parallax Image Band */
.parallax-band {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.parallax-band h2 {
    font-size: 64px;
    font-style: italic;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 100px 6% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 30px;
}

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

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--accent);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero h1 {
        font-size: 70px;
    }
}
