/* Color Palette & Premium Variables */
:root {
    --primary-color: #1b2f24;
    /* Deep Forest Green for luxury contrast */
    --primary-light: #e8edea;
    --secondary-color: #e5d3b3;
    /* Soft Beige */
    --accent-color: #cda46e;
    /* Elegant Gold */

    --text-dark: #1a1a1a;
    --text-muted: #73706c;

    --bg-cream: #fbf9f6;
    /* Primary background */
    --bg-beige: #f4f0e6;
    /* Secondary background */
    --bg-dark: #121614;

    --white: #ffffff;

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 15px 45px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    line-height: 1.7;
}

/* Typography Polish */
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: -0.01em;
}

.font-body {
    font-family: var(--font-body);
}

.tracking-wider {
    letter-spacing: 0.15em;
}

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

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

.text-accent {
    color: var(--accent-color) !important;
}

.text-beige {
    color: var(--secondary-color) !important;
}

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

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

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

.fs-7 {
    font-size: 0.9rem;
}

.fs-8 {
    font-size: 0.8rem;
}

.z-index-2 {
    z-index: 2;
}

/* Transitions & Micro-interactions */
.transition-all {
    transition: var(--transition);
}

.cursor-pointer {
    cursor: pointer;
}

/* Glassmorphism helpers */
.bg-glass-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.bg-glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background-color: rgba(251, 249, 246, 0.98) !important;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar.scrolled .navbar-brand span {
    color: var(--text-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    position: relative;
    padding: 10px 18px !important;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary-color) !important;
}

/* Enhanced Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 50px !important;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-luxury {
    padding: 14px 32px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #122118;
    border-color: #122118;
    transform: translateY(-3px);
}

.btn-outline-dark {
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.btn-icon {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomOut 20s ease-out forwards;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Animations */
@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.slide-up {
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.slide-up-delay {
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.slide-up-delay-2 {
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.slide-up-delay-3 {
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(40px);
}

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

/* Hero Glimpse Video Thumbnails */
.hero-glimpse {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
}

.video-thumb {
    width: 120px;
    height: 80px;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-thumb:hover img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition);
}

.video-thumb:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    color: var(--accent-color);
}

/* Section Rhythm */
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Image Composition (Editorial About) */
.image-composition {
    position: relative;
    height: 500px;
}

.img-main {
    width: 80%;
    height: 90%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.img-accent {
    width: 50%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
}

/* Page Headers (Other Pages) */
.page-header {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-radius: 0 0 40px 40px;
    margin-bottom: 20px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 40px 40px;
}

/* Gallery Fix */
.gallery-item {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    display: none !important;
    /* Removes the plus icon showing below images */
}

/* Package Cards (Luxury Style) */
.luxury-package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.luxury-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-package-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.duration-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.card-content {
    padding: 35px 30px;
}

.link-luxury {
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 5px;
    transition: var(--transition);
}

.link-luxury:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

/* Bento Grid */
.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icon-box {
    width: 70px;
    height: 70px;
}

.bento-item {
    transition: var(--transition);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}

/* Testimonials */
.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.quote-icon {
    font-size: 8rem;
    top: -20px;
    left: -10px;
    z-index: 1;
}

/* Blog Cards */
.blog-card .blog-img-wrapper img {
    filter: grayscale(20%);
}

.blog-card:hover .blog-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.blog-title {
    display: inline-block;
    background-image: linear-gradient(var(--text-dark), var(--text-dark));
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.blog-card:hover .blog-title {
    background-size: 100% 1px;
}

/* Footer Polish */
.footer {
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    padding-top: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-newsletter .form-control:focus {
    border-color: var(--white) !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--white);
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .hero {
        min-height: 600px;
        height: 90vh;
    }

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

    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .image-composition {
        height: auto;
        margin-bottom: 30px;
    }

    .img-main,
    .img-accent {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .experience-badge {
        top: -20px;
        right: 20px;
    }
}