/*
Theme Name: Coiffure Jockey
Theme URI: https://coiffurejockey.ch
Author: Coiffure Jockey
Author URI: https://coiffurejockey.ch
Description: Custom WordPress theme for Coiffure Jockey hair salon with integrated booking system
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: Private
License URI:
Text Domain: coiffure-jockey
Tags: salon, booking, custom-theme

Coiffure Jockey - Swiss Hair Salon
Bahnhofstrasse 20, 8157 Dielsdorf
*/

/* ==========================================================================
   CSS Variables (Theme Colors)
   ========================================================================== */

:root {
    --bg-0: #fefcf5;
    --fg-0: #191919;
    --line-bg: rgba(0, 0, 0, 0.15);
    --line-fg: #D8D6D0;
    --white: #ffffff;
    --error: #d9534f;
    --success: #5cb85c;
    --warning: #f0ad4e;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    background-color: var(--bg-0);
    color: var(--fg-0);
    line-height: 1.6;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', serif;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 250; /* Above mobile menu (200) and overlay (190) */
    background-color: var(--bg-0);
    border-bottom: 1px solid var(--line-bg);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar__logo {
    padding: 1.75rem 0;
    width: 8rem;
}

.navbar__links {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .navbar__links {
        display: flex;
    }
}

/* ==========================================================================
   Hover Line Effect
   ========================================================================== */

.hover-line {
    position: relative;
    cursor: pointer;
}

.hover-line::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--fg-0);
    transition: width 0.3s ease;
}

.hover-line:hover::after {
    width: 100%;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

[data-sidebar] {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 150; /* Above overlay (140) */
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

[data-sidebar].active {
    transform: translateX(0);
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Lighter overlay */
    z-index: 190; /* Above navbar (100), below mobile menu (200) */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Announcement Banner - Left Side with Barber Theme
   ========================================================================== */

.announcement-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 380px;
    max-width: calc(100vw - 4rem);
    background: linear-gradient(135deg, var(--fg-0) 0%, #2a2a2a 100%);
    color: var(--bg-0);
    border-radius: 12px;
    z-index: 100;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

/* Barber pole decorations */
.announcement-banner__pole {
    width: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.announcement-banner__pole--left {
    border-radius: 12px 0 0 12px;
}

.announcement-banner__pole--right {
    border-radius: 0 12px 12px 0;
}

.announcement-banner__pole-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        #e74c3c 0px,
        #e74c3c 8px,
        #fff 8px,
        #fff 16px,
        #3498db 16px,
        #3498db 24px,
        #fff 24px,
        #fff 32px
    );
    animation: barberPole 2s linear infinite;
}

@keyframes barberPole {
    0% { background-position: 0 0; }
    100% { background-position: 0 45px; }
}

/* Main content area */
.announcement-banner__content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Barber icon */
.announcement-banner__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.announcement-banner__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--bg-0);
    opacity: 0.9;
}

/* Text content */
.announcement-banner__text {
    flex: 1;
    min-width: 0;
}

/* Decorative scissors */
.announcement-banner__scissors {
    position: absolute;
    bottom: 10px;
    right: 25px;
    opacity: 0.08;
    transform: rotate(-20deg);
}

.announcement-banner__scissors svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
}

/* Type variations */
.announcement-banner--warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.announcement-banner--warning .announcement-banner__pole-stripes {
    background: repeating-linear-gradient(
        -45deg,
        #fff 0px,
        #fff 8px,
        #f39c12 8px,
        #f39c12 16px
    );
}

.announcement-banner--holiday {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.announcement-banner--holiday .announcement-banner__pole-stripes {
    background: repeating-linear-gradient(
        -45deg,
        #fff 0px,
        #fff 8px,
        #27ae60 8px,
        #27ae60 16px,
        #fff 16px,
        #fff 24px,
        #c0392b 24px,
        #c0392b 32px
    );
}

.announcement-banner--info {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.announcement-banner--promo {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

/* Close button */
.announcement-banner__close {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: inherit;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.announcement-banner__close svg {
    width: 16px;
    height: 16px;
}

.announcement-banner__close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Title */
.announcement-banner__title {
    font-family: 'Philosopher', serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    padding-right: 2.5rem;
    line-height: 1.3;
}

/* Message */
.announcement-banner__message {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Dates badge */
.announcement-banner__dates {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.announcement-banner__dates::before {
    content: '';
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.7;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .announcement-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
        max-width: none;
    }

    .announcement-banner__icon {
        width: 40px;
        height: 40px;
    }

    .announcement-banner__icon svg {
        width: 22px;
        height: 22px;
    }

    .announcement-banner__title {
        font-size: 1.15rem;
    }

    .announcement-banner__content {
        padding: 1.25rem;
    }

    .announcement-banner__scissors {
        display: none;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--fg-0);
    color: var(--bg-0);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn--outline {
    background-color: transparent;
    color: var(--fg-0);
    border: 1px solid var(--fg-0);
}

/* ==========================================================================
   Parallax Sections
   ========================================================================== */

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

[data-onscroll] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-onscroll].animated {
    opacity: 1;
}

[data-onscroll="opacity+left"] {
    transform: translateX(-30px);
}

[data-onscroll="opacity+left"].animated {
    transform: translateX(0);
}

[data-onscroll="opacity+top"],
[data-onscroll="bottom"] {
    transform: translateY(30px);
}

[data-onscroll="opacity+top"].animated,
[data-onscroll="bottom"].animated {
    transform: translateY(0);
}

/* Clip-path animations - using opacity + transform for better compatibility */
[data-onscroll="clipleft"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-onscroll="clipleft"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-onscroll="clipright"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-onscroll="clipright"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-onscroll="cliptop"] {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-onscroll="cliptop"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-onscroll="clipbottom"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-onscroll="clipbottom"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-onscroll="cliptop+bottom"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
                transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-onscroll="cliptop+bottom"].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--bg-0);
    padding-top: 1rem;
}

/* ==========================================================================
   Booking Popup
   ========================================================================== */

.book__popup {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.book__popup.active {
    opacity: 1;
}

.book__popup:hover {
    transform: scale(1.01);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background-color: var(--white);
    border: 1px solid var(--line-bg);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Forms
   ========================================================================== */

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu {
    position: fixed;
    top: 73px; /* Start below navbar */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bg-0);
/*     display: flex;
    flex-direction: column; */
    z-index: 200; /* High z-index to ensure it's above everything */
    transform: translateX(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--line-bg);
    color: var(--fg-0);
    text-decoration: none;
    font-size: 1rem;
}

.mobile-menu a:active {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu__book {
    margin-top: auto;
    padding: 1.25rem 1.5rem !important;
    background-color: var(--fg-0) !important;
    color: var(--bg-0) !important;
    text-align: center;
    font-weight: 500;
    border-bottom: none !important;
    flex-shrink: 0;
}

/* ==========================================================================
   Hamburger Menu
   ========================================================================== */

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 0.75rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--fg-0);
    width: 100%;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* ==========================================================================
   Price Tables
   ========================================================================== */

.price-table {
    display: grid;
    gap: 0;
}

.price-table__row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    padding: 0.5rem 0;
}

.price-table__divider {
    height: 1px;
    background-color: var(--line-fg);
    margin: 1.25rem 0;
}

/* ==========================================================================
   Team Cards
   ========================================================================== */

.team-card {
    background-color: var(--white);
    border: 1px solid var(--line-bg);
    display: flex;
    flex-direction: column;
}

.team-card__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.team-card__content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-card__name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-card__role {
    opacity: 0.6;
    margin-bottom: 2rem;
}

.team-card__social {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
}

/* ==========================================================================
   Booking System
   ========================================================================== */

.booking-category {
    margin-bottom: 1.5rem;
}

.booking-category__title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-bg);
}

.booking-category__title .arrow {
    transition: transform 0.3s;
}

.booking-category.open .arrow {
    transform: rotate(180deg);
}

.booking-category__services {
    display: none;
    padding: 1rem 0;
}

.booking-category.open .booking-category__services {
    display: block;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--line-bg);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: var(--fg-0);
}

.service-card.selected {
    border-color: var(--fg-0);
    background-color: rgba(25, 25, 25, 0.03);
}

.service-card__info {
    flex: 1;
}

.service-card__title {
    font-weight: 500;
}

.service-card__duration {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ==========================================================================
   Calendar
   ========================================================================== */

.calendar {
    border: 1px solid var(--line-bg);
}

.calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--line-bg);
}

.calendar__nav {
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
}

.calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    padding: 1rem;
}

.calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.calendar__day:hover:not(.disabled) {
    background-color: var(--line-fg);
}

.calendar__day.disabled {
    color: var(--line-fg);
    cursor: not-allowed;
}

.calendar__day.selected {
    background-color: var(--fg-0);
    color: var(--bg-0);
}

.calendar__day.today {
    border: 1px solid var(--fg-0);
}

/* ==========================================================================
   Time Slots
   ========================================================================== */

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--line-bg);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: var(--fg-0);
}

.time-slot.selected {
    background-color: var(--fg-0);
    color: var(--bg-0);
    border-color: var(--fg-0);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

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

.uppercase {
    text-transform: uppercase;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-80 {
    opacity: 0.8;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    width: 100%;
    height: 100vh;
    background: url(assets/img/index/header-bg.png) center / cover;
    filter: grayscale(100%);
    animation: hero-init 1.4s forwards linear;
    opacity: 0;
    position: relative;
}

.hero__title {
    position: absolute;
    bottom: 5rem;
    font-size: 3rem;
    max-width: 94vw;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

@keyframes hero-init {
    from { opacity: 0; }
    20% { opacity: 0; }
    30% { opacity: 0.1; }
    to { opacity: 1; }
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.section-title--center {
    text-align: center;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: var(--line-fg);
    margin-bottom: 1rem;
}

.section-divider--large {
    margin-bottom: 8rem;
}

/* ==========================================================================
   Services Grid (Homepage)
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card__image {
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-card__title {
    font-family: 'Philosopher', serif;
    text-transform: uppercase;
    font-size: 1.25rem;
}

/* ==========================================================================
   About Section (Homepage)
   ========================================================================== */

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin: 0 auto;
    width: fit-content;
}

@media (min-width: 1024px) {
    .about-section {
        flex-direction: row;
        align-items: flex-start;
    }
}

.about-section__image-container {
    position: relative;
    width: 520px;
    max-width: 96vw;
    height: 500px;
    overflow: hidden;
}

.about-section__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 410px;
    background-color: #EDE5DB;
}

.image-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 420px;
    height: 350px;
    overflow: hidden;
}

.about-section__image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 420px;
    height: 350px;
    object-fit: cover;
    object-position: top;
    will-change: transform;
}

.about-section__content {
    flex: 1;
}

@media (min-width: 1024px) {
    .about-section__content {
        max-width: 40%;
    }
}

.about-section__title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.about-section__text {
    opacity: 0.5;
    font-size: 1.125rem;
}

/* ==========================================================================
   Price Preview (Homepage)
   ========================================================================== */

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.price-preview {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .price-preview {
        grid-template-columns: 1fr;
    }
}

.price-preview__column {
    display: flex;
    flex-direction: column;
}

.price-preview__row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.price-preview__divider {
    height: 1px;
    background-color: var(--line-fg);
    margin: 1.25rem 0;
}

.price-preview__cta {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .price-preview__cta {
        order: 3;
        margin-top: 2rem;
    }
}

/* ==========================================================================
   About Text (Homepage)
   ========================================================================== */

.about-text {
    max-width: 70%;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .about-text {
        max-width: 100%;
    }
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Parallax Section
   ========================================================================== */

.parallax-section--tall {
    height: 60vh;
}

/* ==========================================================================
   Contact Block (Homepage)
   ========================================================================== */

.contact-block {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    background-color: #EEEBE2;
}

@media (max-width: 768px) {
    .contact-block {
        grid-template-columns: 1fr;
    }
}

.contact-block__info {
    padding: 4rem;
}

.contact-block__title {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-block__hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.contact-block__divider {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.2);
    margin: 1.5rem 0;
}

.contact-block__address {
    opacity: 0.7;
}

.contact-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Navbar Extended
   ========================================================================== */

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar__book-link {
    text-decoration: underline;
    display: none;
}

@media (min-width: 1024px) {
    .navbar__book-link {
        display: block;
    }
}

.navbar__sidebar-toggle {
    display: none;
    width: 2rem;
    height: 0.75rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .navbar__sidebar-toggle {
        display: flex;
    }
}

.navbar__sidebar-toggle span {
    display: block;
    height: 2px;
    background-color: var(--fg-0);
    width: 100%;
}

/* ==========================================================================
   Sidebar Extended
   ========================================================================== */

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 30vw;
    min-width: 300px;
    background-color: var(--bg-0);
    z-index: 70;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar__close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.sidebar__close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background-color: var(--fg-0);
}

.sidebar__close span:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.sidebar__close span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

.sidebar__content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.sidebar__logo {
    width: 40%;
}

.sidebar__logo img {
    width: 100%;
    margin-bottom: 4rem;
}

.sidebar__contact {
    width: 40%;
}

.sidebar__title {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.sidebar__phone,
.sidebar__email {
    display: block;
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   Font Classes
   ========================================================================== */

.font-header {
    font-family: 'Philosopher', serif;
}

:root {
    --font-header: 'Philosopher', serif;
}

/* ==========================================================================
   Desktop Navigation Dropdown
   ========================================================================== */

.nav-item {
    position: relative;
}

.nav-item--has-dropdown {
    cursor: pointer;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
}

.nav-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.nav-item--has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background-color: var(--bg-0);
    border: 1px solid var(--line-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

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

.nav-dropdown__link {
    display: block;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.nav-dropdown__link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Mobile Navigation with Submenus
   ========================================================================== */

.mobile-menu__item {
    border-bottom: 1px solid var(--line-bg);
}

.mobile-menu__item--has-submenu {
    display: flex;
    flex-direction: column;
}

.mobile-menu__link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__link {
    flex: 1;
    padding: 0.875rem 1.5rem;
    display: block;
    border-bottom: none;
}

.mobile-menu__toggle {
    width: 50px;
    height: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid var(--line-bg);
    cursor: pointer;
    font-size: 1.25rem;
    transition: background-color 0.2s;
}

.mobile-menu__toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu__toggle span {
    transition: transform 0.3s;
}

.mobile-menu__item--has-submenu.open .mobile-menu__toggle span {
    transform: rotate(45deg);
}

.mobile-submenu {
    display: none;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0 0 0 1rem;
}

.mobile-menu__item--has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-submenu__link {
    display: block;
    padding: 0.75rem 3rem;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.mobile-submenu__link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Footer Navigation
   ========================================================================== */

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 1.5rem;
}

.footer__nav .footer__link {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .footer__nav {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
	
	main#main {
		overflow-x: hidden;
	}
	[data-card-status] {
		padding: 0
	}
	.data-card-status {
		padding: 0
	}
}

.booking-steps {
    padding-top: 50px;
}


.sidebar.active {
	z-index: 9999;
}