/* ===================================
   GENERAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-red: #dc2626;
    --color-red-dark: #b91c1c;
    --color-dark: #202e2f;
    --color-dark-light: #374151;
    --color-gray: #6b7280;
    --color-light-gray: #f3f4f6;
    --color-white: #ffffff;
    --color-banner: #324f51db;
    --color-techniek: #d1e7dd;
    --color-entertainment: #fef3c7;
    --color-catering: #dbeafe;
    --color-inrichting: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5rem;
}

/* ===================================
   TOP BANNER
   =================================== */

.top-banner {
    background-color: var(--color-banner);
    color: var(--color-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-text {
    font-size: 0.875rem;
}

.banner-highlight {
    background-color: #000000;
    padding: 0.25rem 0.75rem;
    display: inline-block;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-red);
}

.menu-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--color-red);
}

/* ===================================
   HEADER
   =================================== */

.main-header {
    background-color: var(--color-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--color-white);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-btn:hover {
    color: var(--color-red);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-link:hover {
    color: var(--color-red);
}

.cart-price {
    font-weight: 600;
}

.cart-icon {
    position: relative;
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 9999px;
    min-width: 18px;
    text-align: center;
}

/* Cart Dropdown */
.cart {
    position: relative;
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 0;
    width: 380px;
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 200;
}

.cart:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-white);
}

.cart-empty {
    padding: 0;
    text-align: center;
    color: var(--color-dark);
}

.cart-empty-header {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 2rem 2rem 1.5rem;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.cart-empty-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-red);
}

.cart-empty-icon {
    font-size: 3.5rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.cart-empty-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.cart-empty-text {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    padding: 0 1rem;
}

.cart-empty-body {
    padding: 1.5rem 2rem 2rem;
}

.cart-cta-box {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a2527 100%);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.cart-cta-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cart-cta-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cart {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-cart-primary:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
}

.btn-cart-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-cart-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: 600px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 600px;
    gap: 2px;
    background-color: var(--color-white);
}

.hero-left {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url('/theme/images/109_vanArnhem100Jaar_EwaldGeerdink_230630-scaled-1024x683.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hero-content {
    max-width: 600px;
    color: var(--color-white);
    margin-left: -12rem;
}

.hero-title {
    color: var(--color-white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-line-small {
    font-size: 0.75em;
}

.title-line-large {
    font-size: 1.15em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem;
}

.hero-takeaway {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/theme/images/food-takeaway.jpg') center/cover no-repeat;
}

.hero-brasserie {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url('/theme/images/bar-interior.jpg') center/cover no-repeat;
}

.card-content {
    text-align: left;
    max-width: 420px;
    width: 100%;
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.card-title-white {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.card-subtitle-white {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.card-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ===================================
   HERO SLIDER (Mobile Only)
   =================================== */

.hero-slider {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.hero-slide .card-content {
    width: 100%;
    max-width: 100%;
}

.hero-slide .card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-slide .card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.hero-slide .card-buttons {
    flex-direction: column;
    gap: 0.5rem;
}

.hero-slide .card-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Main hero slide styling */
.hero-slide-main {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url('/theme/images/109_vanArnhem100Jaar_EwaldGeerdink_230630-scaled-1024x683.jpg') center/cover no-repeat;
}

.hero-slide-content {
    width: 100%;
    text-align: center;
}

.hero-slide-content .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-slide-content .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
}

.hero-slide-content .hero-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Slider Navigation Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background-color: var(--color-white);
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--color-red);
}

.slider-arrow-prev {
    left: 0.75rem;
}

.slider-arrow-next {
    right: 0.75rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-red:hover {
    background-color: var(--color-red-dark);
    border-color: var(--color-red-dark);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

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

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

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

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
}

.btn-service {
    background: none;
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateX(4px);
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #d1d5db;
    padding: 1rem 2rem;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background-color: #d1d5db;
}

.section-title::before {
    right: 100%;
}

.section-title::after {
    left: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-techniek {
    background-color: var(--color-techniek);
}

.service-entertainment {
    background-color: var(--color-entertainment);
}

.service-catering {
    background-color: var(--color-catering);
}

.service-inrichting {
    background-color: var(--color-inrichting);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-dark);
}

.icon-svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-dark-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-image {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('/theme/images/venue-interior.jpg') center/cover no-repeat;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.about-content {
    background-color: var(--color-white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--color-dark-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ===================================
   FOOTER
   =================================== */

.main-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-red);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
    color: #d1d5db;
}

.contact-list i {
    color: var(--color-red);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Quick Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--color-white);
    padding-left: 0.5rem;
}

.footer-links-list a i {
    font-size: 0.6rem;
    color: var(--color-red);
    transition: transform 0.3s ease;
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

/* ===================================
   FOOTER BOTTOM
   =================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.separator {
    color: #4b5563;
}

.footer-credits strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ===================================
   MOBILE MENU / SIDEBAR
   =================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    background-color: #053A62;
    padding: 0;
    transition: left 0.3s ease;
    overflow: hidden;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    left: 0;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.9rem, 1.8vh, 1.3rem) 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.menu-logo {
    height: clamp(32px, 5.5vh, 40px);
    width: auto;
}

.menu-close {
    position: fixed;
    top: 0;
    left: 380px;
    width: 60px;
    height: 60px;
    background-color: #000000;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: left 0.3s ease, background-color 0.3s ease;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active .menu-close {
    left: 380px;
}

.menu-close:hover {
    background-color: #ff2323;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    justify-content: flex-start;
}

.mobile-nav a {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 1 auto;
}

.mobile-nav a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    padding-left: 2.5rem;
}

.mobile-nav a.active {
    background-color: rgba(0, 0, 0, 0.25);
    border-left: 4px solid #ff2323;
    padding-left: calc(1.5rem - 4px);
}

.mobile-nav a.active:hover {
    padding-left: calc(2.5rem - 4px);
}

.mobile-nav a.menu-sub-item.active {
    padding-left: calc(2.5rem - 4px);
}

.mobile-nav a.menu-sub-item.active:hover {
    padding-left: calc(3rem - 4px);
}

.mobile-nav a i {
    font-size: 0.875rem;
}

.menu-section-title {
    color: var(--color-white);
    font-size: clamp(0.65rem, 1.4vh, 0.875rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: clamp(0.6rem, 1.8vh, 1.5rem) 2rem clamp(0.3rem, 1vh, 0.75rem);
    letter-spacing: 1px;
    flex: 0 1 auto;
    background-color: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Menu Section Header (non-clickable, like "LOCATIES") */
.menu-section-header {
    color: var(--color-white);
    font-size: clamp(0.67rem, 1.55vh, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    padding: clamp(0.65rem, 1.55vh, 1rem) 1rem;
    letter-spacing: 0.5px;
    flex: 0 1 auto;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Menu Sub Items (indented items under a header) */
.mobile-nav a.menu-sub-item {
    padding-left: 2.5rem;
}

.mobile-nav a.menu-sub-item:hover {
    padding-left: 3rem;
}

.menu-contact {
    margin-top: auto;
    flex-shrink: 0;
    padding: clamp(1rem, 1.8vh, 1.4rem) 1.5rem;
    background-color: var(--color-white);
    color: var(--color-dark);
    font-size: clamp(0.9rem, 1.7vh, 1.1rem);
    font-weight: 700;
}

.menu-contact i {
    margin-right: 0.75rem;
    color: var(--color-dark);
    font-size: 1.1rem;
}

/* ===================================
   COOKIE CONSENT
   =================================== */

.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 400px;
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.cookie-consent.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a2527 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--color-red);
}

.cookie-header-text h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cookie-header-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.cookie-body {
    padding: 1.5rem;
}

.cookie-text {
    color: var(--color-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-text a {
    color: var(--color-red);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--color-red-dark);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-red);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.cookie-btn-decline:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.cookie-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.25rem;
}

.cookie-close:hover {
    color: var(--color-white);
}

/* ===================================
   CART PAGE - Specific styling for cart.html
   =================================== */

.cart-page-section {
    min-height: 60vh;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    display: flex;
    align-items: center;
}

.cart-page-empty {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.cart-page-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.cart-page-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.cart-page-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 50%;
}

.cart-page-icon {
    position: relative;
    font-size: 4rem;
    color: var(--color-red);
}

.cart-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.cart-page-text {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.cart-page-suggestions {
    padding: 2.5rem 3rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.suggestions-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.suggestion-card {
    background-color: #f9fafb;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-card:hover {
    background-color: var(--color-white);
    border-color: var(--color-red);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.suggestion-icon {
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 0.75rem;
}

.suggestion-card span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-page-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a2527 100%);
    padding: 2.5rem 3rem;
}

.cart-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-cta-icon {
    font-size: 3rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.cart-cta-text {
    flex: 1;
}

.cart-cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.cart-page-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
    /* Container adjustments */
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    /* Hero section - stack vertically */
    .hero-section {
        min-height: auto;
    }

    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        min-height: 500px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        flex-direction: row;
        min-height: 300px;
    }

    .hero-card {
        min-height: 300px;
    }

    /* Services section */
    .services-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .section-title::before,
    .section-title::after {
        width: 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    /* About section */
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 350px;
        order: -1;
    }

    .about-content {
        padding: 3rem 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Top Banner */
    .top-banner {
        padding: 0.75rem 0;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .banner-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .banner-right .social-icons,
    .banner-right .menu-link {
        display: none;
    }

    /* Header */
    .main-header {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 35px;
    }

    .cart-price {
        display: none;
    }

    /* Hero section - Hide desktop content, show slider */
    .hero-split {
        display: none !important;
    }

    .hero-slider {
        display: block;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-right {
        flex-direction: column;
    }

    .hero-card {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-buttons {
        flex-direction: column;
    }

    .card-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Services section */
    .services-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1rem;
        padding: 0.625rem 1rem;
        max-width: calc(100% - 2rem);
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .service-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .btn-service {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* About section */
    .about-image {
        min-height: 280px;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Footer */
    .main-footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.125rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Mobile menu adjustments */
    .mobile-menu-content {
        width: 300px;
        left: -300px;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        left: 0;
    }

    .menu-close {
        left: 300px;
    }

    .mobile-menu-overlay.active .menu-close {
        left: 300px;
    }

    /* Cookie consent */
    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    /* Cart dropdown - hide on mobile, use cart page instead */
    .cart-dropdown {
        display: none;
    }

    /* Cart page */
    .suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-page-header,
    .cart-page-suggestions,
    .cart-page-cta {
        padding: 2rem 1.5rem;
    }

    .cart-page-buttons {
        flex-direction: column;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 0.75rem;
    }

    /* Top Banner */
    .banner-text {
        font-size: 0.75rem;
    }

    .banner-highlight {
        padding: 0.2rem 0.5rem;
    }

    .banner-right {
        gap: 0.75rem;
    }

    .contact-info {
        font-size: 0.75rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .menu-link {
        font-size: 0.75rem;
    }

    /* Header */
    .menu-btn span:last-child {
        display: none;
    }

    .logo img {
        height: 30px;
    }

    /* Hero section */
    .hero-left {
        min-height: 350px;
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .title-line-small {
        font-size: 0.7em;
    }

    .title-line-large {
        font-size: 1.1em;
    }

    .hero-card {
        min-height: 220px;
        padding: 1.5rem 1rem;
    }

    .card-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .card-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    /* Buttons */
    .btn {
        font-size: 0.7rem;
        padding: 0.625rem 0.875rem;
    }

    .btn-sm {
        padding: 0.5rem 0.75rem;
        font-size: 0.65rem;
    }

    /* Services section */
    .services-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0;
    }

    .service-card {
        padding: 1.25rem 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.8rem;
    }

    .btn-service {
        padding: 0.5rem 0.875rem;
        font-size: 0.7rem;
        margin-top: 0.75rem;
    }

    /* About section */
    .about-image {
        min-height: 220px;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.875rem;
    }

    /* Footer */
    .main-footer {
        padding: 1.5rem 0 0;
    }

    .footer-content {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .contact-list li {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom-content {
        font-size: 0.75rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Mobile menu */
    .mobile-menu-content {
        width: 85vw;
        max-width: 300px;
        left: -85vw;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        left: 0;
    }

    .menu-close {
        left: 85vw;
        max-width: 50px;
        width: 50px;
        height: 50px;
    }

    .mobile-menu-overlay.active .menu-close {
        left: min(85vw, 300px);
    }

    .menu-header {
        padding: 1rem 1.5rem;
    }

    .menu-logo {
        height: 35px;
    }

    .menu-contact {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Cookie consent */
    .cookie-consent {
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }

    .cookie-header {
        padding: 1rem;
    }

    .cookie-icon {
        font-size: 1.5rem;
    }

    .cookie-header-text h3 {
        font-size: 1rem;
    }

    .cookie-header-text p {
        font-size: 0.7rem;
    }

    .cookie-body {
        padding: 1rem;
    }

    .cookie-text {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .cookie-btn {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    /* Cart page */
    .cart-page-header,
    .cart-page-suggestions,
    .cart-page-cta {
        padding: 1.5rem 1rem;
    }

    .cart-page-title {
        font-size: 1.5rem;
    }

    .cart-page-text {
        font-size: 1rem;
    }

    .suggestions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .suggestion-card {
        padding: 1rem 0.5rem;
    }

    .suggestion-icon {
        font-size: 1.5rem;
    }

    .suggestion-card span {
        font-size: 0.8rem;
    }
}

/* Extra small phones (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-subtitle {
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.65rem;
        padding: 0.5rem 0.75rem;
    }

    .section-title {
        font-size: 0.7rem;
    }

    .service-title {
        font-size: 0.9rem;
    }

    .service-description {
        font-size: 0.75rem;
    }

    .about-title {
        font-size: 1.125rem;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PAGE HERO - Shared Banner Component
   =================================== */

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/theme/images/109_vanArnhem100Jaar_EwaldGeerdink_230630-scaled-1024x683.jpg') center/cover no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 46, 47, 0.85) 0%, rgba(32, 46, 47, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    padding-bottom: 5rem;
}

.page-hero-label {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.page-hero-scroll:hover {
    color: var(--color-white);
}

.page-hero-scroll i {
    font-size: 1rem;
    animation: heroScrollBounce 2s infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Page Hero Responsive */
@media (max-width: 1024px) {
    .page-hero {
        min-height: 350px;
    }

    .page-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
    }

    .page-hero-title {
        font-size: 2.25rem;
        letter-spacing: 1px;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 260px;
    }

    .page-hero-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }
}

/* Landscape orientation fixes for phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-left {
        min-height: 300px;
    }

    .hero-card {
        min-height: 200px;
    }

    .mobile-menu-content {
        overflow-y: auto;
    }

    .mobile-nav {
        justify-content: flex-start;
    }

    .mobile-nav a {
        padding: 0.75rem 2rem;
    }
}

/* ==========================================================================
   Custom DS Events Datepicker (Global)
   ========================================================================== */
.ds-datepicker-wrapper {
    position: relative;
}

.ds-datepicker-input {
    cursor: pointer;
    padding-right: 40px !important;
}

.ds-datepicker-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    cursor: pointer;
}

.ds-datepicker-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 100;
    overflow: hidden;
    min-width: 280px;
}

.ds-datepicker-header {
    background: linear-gradient(135deg, var(--color-dark, #202e2f) 0%, #1a2527 100%);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    text-align: center;
    border-bottom: 3px solid var(--color-red, #dc2626);
}

.ds-datepicker-logo {
    height: 28px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.ds-datepicker-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.ds-datepicker-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark, #202e2f);
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ds-datepicker-nav-btn:hover {
    background: var(--color-red, #dc2626);
    color: #ffffff;
    transform: scale(1.05);
}

.ds-datepicker-month {
    font-weight: 600;
    color: var(--color-dark, #202e2f);
    font-size: 0.95rem;
}

.ds-datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0.5rem 0.75rem;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.ds-datepicker-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.ds-datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0.5rem;
    gap: 2px;
}

.ds-datepicker-day {
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark, #202e2f);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-datepicker-day:hover:not(.disabled):not(.other-month) {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-red, #dc2626);
}

.ds-datepicker-day.other-month {
    color: #d1d5db;
}

.ds-datepicker-day.today {
    background: var(--color-dark, #202e2f);
    color: #ffffff;
    font-weight: 700;
}

.ds-datepicker-day.today:hover {
    background: #374151;
}

.ds-datepicker-day.selected {
    background: var(--color-red, #dc2626) !important;
    color: #ffffff !important;
    font-weight: 700;
}

.ds-datepicker-day.disabled {
    color: #e5e7eb;
    cursor: not-allowed;
    text-decoration: line-through;
}

.ds-datepicker-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.ds-datepicker-clear,
.ds-datepicker-today {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ds-datepicker-clear {
    background: transparent;
    color: #6b7280;
}

.ds-datepicker-clear:hover {
    background: #e5e7eb;
    color: var(--color-dark, #202e2f);
}

.ds-datepicker-today {
    background: var(--color-red, #dc2626);
    color: #ffffff;
}

.ds-datepicker-today:hover {
    background: #b91c1c;
}

.ds-datepicker-input::-webkit-calendar-picker-indicator {
    display: none;
}

[x-cloak] {
    display: none !important;
}

/* New Header Layout */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.main-header .logo {
    flex-shrink: 0;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.main-nav > a,
.nav-dropdown-toggle {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav > a:hover,
.nav-dropdown-toggle:hover,
.main-nav > a.active,
.nav-dropdown-toggle.active {
    color: #c41e3a;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a:hover {
    background: rgba(196, 30, 58, 0.2);
    color: #c41e3a;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hide old menu button */
.menu-btn {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-container {
        justify-content: space-between;
    }
}

/* Smaller logo in header */
.main-header .logo img {
    height: 45px;
    width: auto;
}
