:root {
    --primary-color: #2c3e50;
    --secondary-color: #95a5a6;
    --accent-color: #f39c12;
    /* Warning yellow */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color);
    overflow-x: hidden;
}

.font-serif {
    font-family: var(--font-serif);
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    z-index: 9999;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    position: relative;
    margin-top: -80px;
    /* Pull up behind navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Cards */
.destination-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top-wrapper img {
    transition: transform 0.5s ease;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.destination-card:hover .card-img-top-wrapper img {
    transform: scale(1.1);
}

/* Icon Box */
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}