/* ===================================
   Classic Template Header Styles
   =================================== */

/* Main Header */
.classic-header {
    background: #000000 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.classic-header.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
}

.header-container {
    background: #000000 !important;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    height: 80px;
}

/* Logo Section */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.company-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-name {
    color: #ffffff;
}

/* Desktop Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 60px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--brand-color, #3B82F6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-color, #3B82F6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Section */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Reserveren Button */
.btn-reserveren {
    background: #ffffff;
    color: #000000;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
}

.btn-reserveren:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Phone Number (text only, not clickable) */
.phone-number {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.phone-icon-small {
    width: 16px;
    height: 16px;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: fadeInUp 0.5s ease-out;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BD5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.sticky-btn-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

/* Mobile Book Button */
.mobile-book-btn {
    display: none;
    background: var(--brand-color, #3B82F6);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-book-btn:hover {
    background: var(--brand-hover, #2563EB);
    transform: scale(1.05);
}

/* Mobile Phone Icon */
.mobile-phone-icon {
    display: none;
    color: var(--brand-color, #3B82F6);
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-phone-icon:hover {
    transform: scale(1.1);
}

.mobile-phone-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0,0,0,0.3);
}

.mobile-nav.is-open {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo {
    flex-shrink: 0;
}

.mobile-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.mobile-logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-content {
    padding: 40px 20px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--brand-color, #3B82F6);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-btn.btn-reserveren {
    background: #ffffff;
    color: #000000;
}

.mobile-btn.btn-bel {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Utility Classes */
.desktop-only {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 30px;
    }

    .nav-list {
        gap: 30px;
    }

    .header-actions {
        gap: 15px;
    }

    .btn-reserveren {
        padding: 10px 20px;
        font-size: 14px;
    }

    .phone-number {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-header-actions {
        display: flex;
    }

    .mobile-book-btn {
        display: inline-flex;
    }

    .mobile-phone-icon {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-container {
        padding: 10px 15px;
        height: 70px;
    }

    .company-logo {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    .whatsapp-sticky {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        width: 55px;
        height: 55px;
    }

    .sticky-btn-icon {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pulse 2s infinite;
}