:root {
    --primary: #f39c12;
    /* Warm Sunrise Orange */
    --secondary: #27ae60;
    /* Nature Green */
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text: #333333;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism Classes */
.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.bg-glass-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Navbar */
.navbar-wrapper {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-wrapper.scrolled .navbar {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--dark) !important;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
}

.brand-text {
    font-size: 1rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-gallery-link {
    background-color: rgba(243, 156, 18, 0.08) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease !important;
}

.nav-video-link {
    background-color: rgba(39, 174, 96, 0.08) !important;
    color: var(--secondary) !important;
    font-weight: 700 !important;
    border: 1px solid rgba(39, 174, 96, 0.15);
    transition: all 0.3s ease !important;
}

.nav-gallery-link:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.25);
}

.nav-video-link:hover {
    background-color: var(--secondary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.nav-gallery-link::after,
.nav-video-link::after {
    display: none !important; /* Hide the default underline animation */
}

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

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.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: 0;
}

.video-mute-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
    border-color: var(--primary);
}

.video-mute-btn i {
    font-size: 1.5rem !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .video-mute-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .video-mute-btn i {
        font-size: 1.2rem !important;
    }
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Service Cards */
.card-tour {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-tour:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.card-tour img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

/* Utilities */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.section-padding {
    padding: 100px 0;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-translate-y:hover {
    transform: translateY(-5px);
}

.filter-white {
    filter: brightness(0) invert(1);
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 15px;
    background: #fff;
}

.blog-card img {
    border-radius: 15px 15px 0 0;
}

/* Booking Form */
.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
    background-color: #fff;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .hero-section {
        height: 70vh;
    }
}

/* Mobile Navbar Optimization */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 35px !important;
    }

    .brand-text {
        font-size: 1rem !important;
    }

    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand {
        margin-right: 5px;
    }
}

/* Custom Section Fixes */
.section-padding h6 {
    white-space: normal;
    word-break: keep-all;
}

@media (max-width: 576px) {
    .section-padding h6 {
        font-size: 0.8rem;
        letter-spacing: 1px !important;
    }
}