/* ============================================
   XFALAFEL CUSTOM STYLES
   ============================================ */


/* Header Styles */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    padding: 1rem 0;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}


/* Navigation */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-white);
}


/* Locations Dropdown */

.locations-dropdown {
    position: relative;
}

.locations-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.locations-toggle:hover {
    color: var(--color-white);
}

.locations-toggle .chevron {
    transition: transform 0.3s ease;
}

.locations-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.locations-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 220px;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.locations-menu[hidden] {
    display: none;
}

.location-group {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-group:last-child {
    border-bottom: none;
}

.location-group h4 {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.location-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-group a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.location-group a:hover {
    color: var(--color-white);
    background: rgba(215, 25, 33, 0.2);
}


/* Header CTA */

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

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


/* Mobile Menu */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: var(--color-dark-card);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-locations {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-locations h4 {
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.mobile-locations ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0 0 0 1rem;
}

.mobile-locations li {
    margin-bottom: 0.5rem;
}

.mobile-locations a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-split {
    position: absolute;
    inset: 0;
    display: flex;
}

.hero-side {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-left .hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
}

.hero-right .hero-overlay {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
}

.hero-divider {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.vs-badge {
    width: 64px;
    height: 64px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(215, 25, 33, 0.5);
}

.vs-badge span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-locations {
    display: flex;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.location-name {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-red);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}


/* Section Styles */

.about-section,
.community-section,
.events-section,
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.section-label {
    display: inline-block;
    color: var(--color-red);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-header.centered {
    text-align: center;
    flex-direction: column;
    align-items: center;
}


/* About Section */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.about-text-secondary {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}


/* About Images - Artistic Layout */

.about-images-artistic {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 1.25rem;
    min-height: 520px;
    height: 100%;
}

.about-image-main {
    grid-row: 1 / 3;
    grid-column: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    position: relative;
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215, 25, 33, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.about-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(215, 25, 33, 0.2);
    border-radius: 1.5rem;
    pointer-events: none;
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-main:hover img {
    transform: scale(1.08);
}

.about-image-secondary {
    grid-row: 1;
    grid-column: 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.about-image-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-image-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(215, 25, 33, 0.4);
    border-radius: 1rem;
    pointer-events: none;
    z-index: 2;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-secondary:hover img {
    transform: scale(1.1);
}

.about-image-accent {
    grid-row: 2;
    grid-column: 2;
    position: relative;
    background: linear-gradient(135deg, var(--color-red) 0%, #8B0000 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(215, 25, 33, 0.3);
}

.about-image-accent::before {
    content: '#XFALAFEL';
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.15em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-image-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stat-item {
    text-align: left;
}

.stat-item svg {
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}


/* About Images */

.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-grid .image-item {
    aspect-ratio: 1;
}

.image-featured {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    aspect-ratio: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(215, 25, 33, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
}


/* Community Section */

.community-section {
    background: var(--color-black);
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--color-white);
}


/* Gallery */

.community-gallery {
    position: relative;
    margin-bottom: 3rem;
}

.community-gallery::before,
.community-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.community-gallery::before {
    left: 0;
    background: linear-gradient(to right, var(--color-black), transparent);
}

.community-gallery::after {
    right: 0;
    background: linear-gradient(to left, var(--color-black), transparent);
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 1;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: grab;
}

.gallery-item:active {
    cursor: grabbing;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-stats {
    display: flex;
    gap: 1.5rem;
}

.gallery-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.gallery-stats svg {
    color: var(--color-red);
}


/* Community Stats */

.community-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.community-stat {
    text-align: center;
}

.community-stat .stat-number {
    font-size: 2.5rem;
    color: var(--color-red);
}


/* Google Review */

.xf-reviews {
    background: #0d0d0d;
    padding: 80px 20px;
    color: #ffffff;
    overflow: hidden;
}

.xf-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.xf-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.xf-reviews-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff3b30;
    margin-bottom: 12px;
}

.xf-reviews-header h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #ffffff;
}

.xf-reviews-header p {
    font-size: 17px;
    color: #cfcfcf;
    max-width: 680px;
    margin: 0 auto 30px;
}

.xf-reviews-score {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 24px;
}

.xf-score-left {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.xf-score-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
}

.xf-score-outof {
    font-size: 18px;
    color: #bbbbbb;
}

.xf-stars,
.xf-review-stars {
    color: #ff3b30;
    letter-spacing: 2px;
    font-size: 18px;
}

.xf-score-meta {
    font-size: 14px;
    color: #b5b5b5;
    margin-top: 4px;
}

.xfReviewsSwiper {
    padding: 10px 5px 60px;
}

.xfReviewsSwiper .swiper-slide {
    height: auto;
}

.xf-review-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    box-sizing: border-box;
}

.xf-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 59, 48, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.xf-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.xf-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff3b30;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}


/* Events Section */

.events-section {
    background: linear-gradient(to bottom, var(--color-black), rgba(26, 26, 26, 0.5), var(--color-black));
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.event-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--color-dark-card);
}

.event-image {
    position: relative;
    height: 300px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    transition: opacity 0.5s ease;
}

.event-card:hover .event-overlay {
    opacity: 0.7;
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.event-icon {
    width: 48px;
    height: 48px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1);
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.event-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.event-features svg {
    color: var(--color-red);
    flex-shrink: 0;
}

.events-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.events-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}


/* Partner Logos */

.partner-logos {
    text-align: center;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.partner-title {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.partner-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 120px;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.partner-logo:hover {
    border-color: var(--color-red);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(215, 25, 33, 0.25);
    background: rgba(215, 25, 33, 0.05);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.65;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}


/* Contact Section */

.contact-section {
    background: var(--color-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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


/* Contact Form - Underline Style (Clean) */

.contact-form-wrapper {
    background: transparent;
    padding: 0;
}

.xfalafel-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group-underline {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group-underline label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group-underline input,
.form-group-underline textarea {
    width: 100%;
    padding: 0.625rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group-underline input:focus,
.form-group-underline textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);
}

.form-group-underline input::placeholder,
.form-group-underline textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9375rem;
}

.form-group-underline textarea {
    resize: none;
    min-height: 80px;
}

.btn-submit-underline {
    width: 100%;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-submit-underline:hover {
    background: #b9161c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 25, 33, 0.35);
}

.btn-submit-underline svg {
    transition: transform 0.3s ease;
}

.btn-submit-underline:hover svg {
    transform: translateX(3px) translateY(-2px);
}


/* Footer */

.site-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

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

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.footer-location h4,
.footer-contact-col h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-links,
.footer-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-quick-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-quick-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.quick-links-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin: 1.5rem 0 0.75rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

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


/* Page Header */

.page-header-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, var(--color-dark-card), var(--color-black));
    text-align: center;
}

.page-label {
    display: inline-block;
    color: var(--color-red);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 1rem auto 0;
}


/* Page Content */

.page-content {
    padding: 4rem 0;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}


/* Menu Page Styles */

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

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

.menu-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.menu-item-card {
    padding: 1.5rem;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    border-color: rgba(215, 25, 33, 0.5);
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.menu-item-card:hover .menu-item-title {
    color: var(--color-red);
}

.menu-badges {
    display: flex;
    gap: 0.25rem;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-vegan {
    color: #22c55e;
}

.badge-spicy {
    color: var(--color-red);
}

.menu-item-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-red);
}

.menu-info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.menu-info-box svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.menu-info-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.menu-info-box p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.menu-cta {
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.no-menu-items,
.no-categories {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Order Page */

.order-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    color: var(--color-red);
    margin-bottom: 1.5rem;
}

.order-coming-soon h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.order-coming-soon p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.coming-soon-subtitle {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.coming-soon-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-alternative p {
    margin-bottom: 1rem;
}


/* Reservation Page */

.reservation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.reservation-form-wrapper {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.reservation-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reservation-form .form-group {
    margin-bottom: 1rem;
}

.reservation-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
}

.reservation-form button {
    width: 100%;
    margin-top: 1rem;
}

.reservation-info {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.reservation-info svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.reservation-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.reservation-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-list svg {
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card-small {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.info-card-small svg {
    color: var(--color-red);
    margin-bottom: 0.75rem;
}

.info-card-small h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-card-small p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


/* Catering Page */

.catering-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.catering-card {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.catering-image {
    height: 200px;
    overflow: hidden;
}

.catering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.catering-content {
    padding: 1.5rem;
}

.catering-icon {
    width: 48px;
    height: 48px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.catering-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.catering-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.catering-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.catering-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.catering-features svg {
    color: var(--color-red);
    flex-shrink: 0;
}

.catering-form-section {
    background: var(--color-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.catering-form-section h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.catering-contact-fallback {
    text-align: center;
}

.catering-contact-fallback p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.catering-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    text-align: center;
}

.contact-info-item svg {
    color: var(--color-red);
    margin-bottom: 1rem;
}

.contact-info-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


/* Responsive */

@media (max-width: 1024px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-locations {
        flex-direction: column;
        gap: 0.5rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-images-artistic {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
    }
    .about-image-main {
        grid-row: 1;
        aspect-ratio: 1;
    }
    .community-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    .reservation-grid {
        grid-template-columns: 1fr;
    }
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    .catering-types {
        grid-template-columns: 1fr;
    }
    .catering-contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .image-grid {
        grid-template-columns: 1fr;
    }
    .image-featured {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 1rem;
    }
}


/* ===== Over ons: foto styling ===== */

.about-images-artistic img {
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}


/* ===== Over ons: modern overlap layout (optie B) ===== */

.about-images-artistic {
    display: block;
    position: relative;
    min-height: 520px;
}

.about-images-artistic .about-image-main {
    position: relative;
    width: 70%;
    height: 520px;
    margin-left: 0;
    border-radius: 24px;
    overflow: hidden;
}

.about-images-artistic .about-image-secondary {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 48%;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(10px);
}

.about-images-artistic .about-image-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 40%;
    border-radius: 20px;
    transform: translateY(-10px);
}

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

@keyframes xfalafelFloat2 {
    0%,
    100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-2px);
    }
}

.about-images-artistic .about-image-secondary {
    animation: xfalafelFloat 5.5s ease-in-out infinite;
}

.about-images-artistic .about-image-accent {
    animation: xfalafelFloat2 6.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .about-images-artistic .about-image-secondary,
    .about-images-artistic .about-image-accent {
        animation: none;
    }
}

@media (max-width: 900px) {
    .about-images-artistic {
        min-height: auto;
    }
    .about-images-artistic .about-image-main {
        width: 100%;
        height: 320px;
    }
    .about-images-artistic .about-image-secondary,
    .about-images-artistic .about-image-accent {
        position: relative;
        width: 100%;
        height: 220px;
        top: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
        transform: none;
        animation: none;
    }
}


/* ===== Samenwerkingen: partner logo grid ===== */

.partner-logos-inline {
    margin: 26px 0 10px;
}

.partner-logos-inline .partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.partner-logos-inline .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    min-height: 110px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.partner-logos-inline .partner-logo img {
    width: 100% !important;
    max-width: 150px;
    height: 64px !important;
    object-fit: contain;
    border-radius: 14px;
    transition: transform .18s ease;
    display: block;
}

.partner-logos-inline .partner-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 0, 0, .55);
    background: rgba(192, 0, 0, .10);
}

.partner-logos-inline .partner-logo:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .partner-logos-inline .partner-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ===== Contact (custom form in theme): clean underline styling ===== */

.xfalafel-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.xfalafel-contact-form .form-group-underline {
    position: relative;
    margin-bottom: 2.2rem;
    display: block;
}

.xfalafel-contact-form .form-group-underline label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    margin-bottom: .55rem;
}

.xfalafel-contact-form .form-group-underline input,
.xfalafel-contact-form .form-group-underline textarea {
    width: 100% !important;
    display: block !important;
    padding: .7rem 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .25) !important;
    color: #fff !important;
    font-size: 1rem !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.xfalafel-contact-form .form-group-underline input::placeholder,
.xfalafel-contact-form .form-group-underline textarea::placeholder {
    color: rgba(255, 255, 255, .45) !important;
}

.xfalafel-contact-form .form-group-underline input:focus,
.xfalafel-contact-form .form-group-underline textarea:focus {
    border-bottom-color: var(--color-red) !important;
}

.xfalafel-contact-form .form-group-underline textarea {
    resize: none;
    min-height: 110px;
}

.xfalafel-contact-form .btn-submit-underline {
    width: 100%;
    background: var(--color-red) !important;
    color: #fff !important;
    border: 0 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    cursor: pointer;
    transition: transform .12s ease, filter .18s ease;
}

.xfalafel-contact-form .btn-submit-underline:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}


/* ===== Contact Form 7: styling (zoals screenshot) ===== */

.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    display: grid;
    gap: 18px;
}

.wpcf7 label {
    display: block;
    color: rgba(255, 255, 255, .92);
    font-weight: 600;
    letter-spacing: .2px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    color: #fff;
    padding: 14px 14px;
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: rgba(192, 0, 0, .70);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 4px rgba(192, 0, 0, .18);
}

.wpcf7 ::placeholder {
    color: rgba(255, 255, 255, .45);
}

.wpcf7 input[type="submit"] {
    width: 100%;
    background: #c00000;
    border: 0;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: .6px;
    cursor: pointer;
    transition: transform .12s ease, filter .18s ease;
}

.wpcf7 input[type="submit"]:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}

.wpcf7-response-output {
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .9);
    padding: 12px 14px;
    background: rgba(255, 255, 255, .05);
}

.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 8px;
}


/* =========================
   Reserveren - multi-step
   ========================= */

.xf-form-stepper {
    max-width: 760px;
    margin: 0 auto
}

.xf-steps {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px
}

.xf-steps li {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase
}

.xf-steps li span {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 13px
}

.xf-steps li.is-active {
    border-color: rgba(230, 0, 0, .55);
    color: #fff;
    background: rgba(230, 0, 0, .08)
}

.xf-steps li.is-active span {
    background: rgba(230, 0, 0, .85)
}

.xf-step {
    display: none
}

.xf-step.is-active {
    display: block
}

.xf-step-title {
    margin: 0 0 8px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .02em
}

.xf-step-help {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .7)
}

.xf-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.xf-form-grid label {
    display: block
}

.xf-form-grid label span {
    display: block;
    margin: 0 0 6px;
    color: rgba(255, 255, 255, .9);
    font-weight: 600
}

.xf-form-grid input,
.xf-form-grid select,
.xf-form-grid textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 12px 12px;
    color: #fff;
    outline: none
}

.xf-form-grid textarea {
    resize: vertical;
    min-height: 120px
}

.xf-form-grid input:focus,
.xf-form-grid select:focus,
.xf-form-grid textarea:focus {
    border-color: rgba(230, 0, 0, .65);
    box-shadow: 0 0 0 3px rgba(230, 0, 0, .18)
}

.xf-form-full {
    grid-column: 1 / -1
}

.xf-form-check {
    display: flex;
    align-items: center;
    gap: 10px
}

.xf-form-check input {
    width: 18px;
    height: 18px
}

.xf-step-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px
}

.btn.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .16)
}

.btn.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .28)
}

.xf-time-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px
}

.xf-time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, background .12s ease, border-color .12s ease
}

.xf-time-slot:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .26)
}

.xf-time-slot.is-selected {
    background: rgba(230, 0, 0, .85);
    border-color: rgba(230, 0, 0, .85)
}

.xf-summary {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    border-radius: 14px;
    padding: 14px 14px;
    margin: 12px 0 0
}

.xf-summary .row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.xf-summary .row:last-child {
    border-bottom: 0
}

.xf-summary .k {
    color: rgba(255, 255, 255, .65)
}

.xf-summary .v {
    color: #fff;
    font-weight: 700
}

@media (max-width: 760px) {
    .xf-form-grid {
        grid-template-columns: 1fr
    }
    .xf-time-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    .xf-steps {
        flex-direction: column
    }
}