/* PREMIMUM HEADER STYLES - CAFINO REPLICATION */
:root {
    --h-gold: #fea116;
    --h-red: #bd1f17;
    --h-dark: #111111;
    --h-white: #ffffff;
    --h-font-main: 'Barlow', sans-serif;
    --h-font-alt: 'Playfair Display', serif;
}

/* Header Container */
.header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-main.sticky {
    position: fixed;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    border-bottom: 1px solid rgba(236, 186, 35, 0.2);
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.header-nav ul li a {
    color: var(--h-white);
    text-decoration: none;
    font-family: var(--h-font-main);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header-nav ul li a:hover,
.header-nav ul li.active > a {
    color: var(--h-gold);
}

/* CTA Button */
.header-btn .btn-book {
    background: var(--h-gold);
    color: var(--h-white);
    padding: 12px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: var(--h-font-main);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(236, 186, 35, 0.3);
    transition: all 0.3s ease;
}

/* Mobile Toggler */
.mobile-toggler {
    display: none;
    cursor: pointer;
    color: var(--h-white);
    font-size: 24px;
}

@media (max-width: 1100px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.98);
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 2px solid var(--h-gold);
        z-index: 999;
    }
    
    .header-nav.active {
        display: flex !important;
        animation: slideInDown 0.3s ease forwards;
    }
    
    .header-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .header-nav ul li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-btn {
        display: none;
    }
    .mobile-toggler {
        display: block;
        position: relative;
        z-index: 1100;
        pointer-events: auto;
        padding: 10px;
        margin: -10px;
    }
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slider .slide.active {
    opacity: 1;
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 43, 0.6), rgba(15, 23, 43, 0.6));
    z-index: 1;
}
    background: linear-gradient(rgba(15, 23, 43, 0.6), rgba(15, 23, 43, 0.6));
    z-index: 1;
}
