/* Fonts are self-hosted via fonts.css (DSGVO compliant) */

#hero h1 {
    font-family: 'Cinzel', serif !important;
}

body {
    font-family: 'Arsenal', sans-serif !important;
}

.section-title p {
    font-family: 'Satisfy', cursive !important;
}

#about h2 {
    font-family: 'Satisfy', cursive !important;
    color: #cda45e !important;
}

@media (min-width: 992px) { 
    #events .swiper-wrapper {
        height: 70%;
    }
}

@media (min-width: 1199px) { 
    #events .swiper-wrapper {
        height: 60%;
    }
}

#contact iframe {
    border:0; 
    width: 100%; 
    height: 350px;
}

/* Maps consent placeholder (DSGVO) */
.maps-consent-placeholder {
    width: 100%;
    height: 350px;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(205, 164, 94, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.maps-consent-inner {
    max-width: 400px;
    padding: 2rem;
}
.maps-consent-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 1rem 0;
    line-height: 1.5;
}
.maps-consent-hint {
    color: rgba(205, 164, 94, 0.85);
    font-size: 0.8rem;
    margin: 0.25rem 0 1rem;
}
.maps-consent-btn {
    background: #cda45e;
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.maps-consent-btn:hover {
    background: #d4af37;
}

.reservation-hero {
    background: linear-gradient(135deg, rgba(12,12,12,0.95), rgba(44,36,28,0.95));
    border-radius: 18px;
    padding: 36px;
    color: #fff;
}

/* Index page — hero booking form */
.hero-booking-form {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 164, 94, 0.3);
}
.hero-booking-form input,
.hero-booking-form select,
.hero-booking-form textarea,
.hero-booking-form input.form-control,
.hero-booking-form select.form-control,
.hero-booking-form textarea.form-control {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #c8c0b0 !important;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
}
.hero-booking-form input:focus,
.hero-booking-form select:focus,
.hero-booking-form textarea:focus {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(205, 164, 94, 0.5) !important;
    color: #ddd6c6 !important;
    outline: none;
}
.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder {
    color: #7a7468 !important;
}

/* Index page — info cards */
.info-card {
    background: rgba(205, 164, 94, 0.05);
    border: 1px solid rgba(205, 164, 94, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.info-card:hover {
    background: rgba(205, 164, 94, 0.1);
    border-color: rgba(205, 164, 94, 0.3);
    transform: translateY(-5px);
}
.info-card h4 {
    color: #cda45e;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.info-card p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Index page — CTA accent buttons */
.cta-accent:hover {
    background: #cda45e;
    border-color: #cda45e;
    color: #1a1814;
}

/* Index page — testimonials equal height */
.testimonials .swiper-slide {
    height: auto;
    display: flex;
}
.testimonials .testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
}
.testimonials .testimonial-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    flex: 1;
}

/* About section — image slider */
.about .about-img {
    position: relative;
}
.about .about-slider {
    overflow: hidden;
    border-radius: 0;
}
.about .about-slider img {
    max-width: 100%;
    display: block;
}
.about-slider-prev,
.about-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #cda45e;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
}
.about-slider-prev:hover,
.about-slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}
.about-slider-prev {
    left: 10px;
}
.about-slider-next {
    right: 10px;
}

/* Events section — highlight card + list panel */
.event-highlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
}
.event-highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.event-highlight-overlay h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}
.event-highlight-category {
    display: inline-block;
    background: #cda45e;
    color: #1a1814;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.event-highlight-date {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 0;
}
.event-highlight-date i {
    color: #cda45e;
    margin-right: 6px;
}
.event-highlight-prev,
.event-highlight-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #cda45e;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
}
.event-highlight-prev:hover,
.event-highlight-next:hover {
    background: rgba(0, 0, 0, 0.8);
}
.event-highlight-prev { left: 12px; }
.event-highlight-next { right: 12px; }

.event-list-panel {
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    height: 420px;
    overflow-y: auto;
    backdrop-filter: blur(8px);
}
.event-list-heading {
    color: #cda45e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(205, 164, 94, 0.2);
}
.event-list-heading i {
    margin-right: 8px;
}
.event-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 12px;
    border-radius: 10px;
    transition: background 0.25s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.event-list-item:last-child {
    border-bottom: none;
}
.event-list-item:hover,
.event-list-item.active {
    background: rgba(205, 164, 94, 0.1);
}
.event-list-detail-link {
    margin-left: auto;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
    padding: 4px;
}
.event-list-item:hover .event-list-detail-link {
    color: #cda45e;
    transform: translateX(3px);
}
.event-list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    background: rgba(205, 164, 94, 0.15);
    border-radius: 10px;
    padding: 8px 6px;
}
.event-list-day {
    font-size: 22px;
    font-weight: 700;
    color: #cda45e;
    line-height: 1;
}
.event-list-month {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    font-weight: 600;
}
.event-list-info h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.event-list-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-bottom: 2px;
}
.event-list-info p i {
    color: #cda45e;
    margin-right: 5px;
    font-size: 12px;
}
.event-list-artist {
    color: rgba(205, 164, 94, 0.8) !important;
}
.event-list-location {
    color: rgba(255, 255, 255, 0.45) !important;
}
.events-more-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.3s;
}
.events-more-link:hover {
    color: #cda45e;
}
.events-more-link i {
    margin-left: 4px;
    font-size: 12px;
    transition: transform 0.3s;
}
.events-more-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .event-highlight-card {
        height: 300px;
    }
    .event-list-panel {
        height: auto;
        margin-top: 16px;
    }
}

/* Event cards — /events/ page */
.event-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}
.event-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(205, 164, 94, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(205, 164, 94, 0.15);
    border-color: rgba(205, 164, 94, 0.4);
}
.event-card-img {
    position: relative;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}
.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.event-card:hover .event-card-img img {
    transform: scale(1.05);
}
.event-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(205, 164, 94, 0.9);
    color: #1a1814;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
}
.event-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.event-card-body h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.event-card-date,
.event-card-location,
.event-card-artist {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-bottom: 4px;
}
.event-card-date i,
.event-card-location i,
.event-card-artist i {
    color: #cda45e;
    margin-right: 6px;
    font-size: 12px;
}
.event-card-past {
    opacity: 0.65;
}
.event-card-past:hover {
    opacity: 1;
}
@media (max-width: 767px) {
    .event-card-img {
        height: 180px;
    }
}

/* Event detail page — blog style */
.event-detail-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    max-height: 520px;
    overflow: hidden;
}
.event-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
}
.event-detail-hero-overlay h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.event-detail-category {
    display: inline-block;
    background: #cda45e;
    color: #1a1814;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.event-detail-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    margin-bottom: 0;
}
.event-detail-content {
    padding: 48px 0 60px;
}
.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(205, 164, 94, 0.06);
    border: 1px solid rgba(205, 164, 94, 0.15);
    border-radius: 12px;
    margin-bottom: 36px;
}
.event-detail-meta-item {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}
.event-detail-meta-item i {
    color: #cda45e;
    margin-right: 6px;
}
.event-detail-body {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.event-detail-body p {
    margin-bottom: 1.2em;
}
.event-detail-artist-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 40px;
}
.event-detail-artist-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.event-detail-artist-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cda45e;
    font-weight: 600;
}
.event-detail-artist-card h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 4px 0 0;
}
.event-detail-gallery {
    margin-top: 20px;
    margin-bottom: 48px;
}
.event-detail-gallery-title {
    color: #cda45e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.event-detail-gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.event-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.event-detail-gallery-item:hover img {
    transform: scale(1.05);
}
.event-detail-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding-top: 20px;
}
.event-detail-cta {
    display: inline-block;
    background: #cda45e;
    color: #1a1814;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.event-detail-cta:hover {
    background: #b8933e;
    transform: translateY(-2px);
    color: #1a1814;
}
.event-detail-cta i {
    margin-right: 6px;
}
.event-detail-back {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}
.event-detail-back:hover {
    color: #cda45e;
}
.event-detail-back i {
    margin-right: 4px;
}
@media (max-width: 768px) {
    .event-detail-hero {
        height: 40vh;
        min-height: 260px;
    }
    .event-detail-hero-overlay h1 {
        font-size: 1.6rem;
    }
    .event-detail-meta {
        flex-direction: column;
        gap: 12px;
    }
    .event-detail-footer {
        flex-direction: column;
        gap: 16px;
    }
}

/* Truck booking page */
.truck-hero {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(205, 164, 94, 0.15);
    border-radius: 16px;
    padding: 36px;
    color: #fff;
}
.truck-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #cda45e;
}
.truck-hero-title i {
    margin-right: 10px;
}
.truck-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}
.truck-hero-hint {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.truck-hero-hint i {
    color: #cda45e;
    margin-right: 6px;
}
.truck-hero-icon {
    font-size: 80px;
    color: rgba(205, 164, 94, 0.15);
}
.truck-panel {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    color: #f4f0e6;
}
.truck-panel-heading {
    color: #cda45e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(205, 164, 94, 0.2);
}
.truck-panel-heading i {
    margin-right: 8px;
}
.truck-form-section {
    margin-bottom: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.truck-form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}
.truck-form-label {
    color: rgba(205, 164, 94, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.truck-form-label i {
    margin-right: 5px;
    font-size: 11px;
}
.truck-alert {
    border-radius: 10px;
    border: none;
}
.truck-panel-compact {
    padding: 22px 20px;
}
.truck-panel-compact .truck-panel-heading {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 10px;
}
.truck-back-btn {
    background: none;
    border: 1px solid rgba(205, 164, 94, 0.3);
    color: #cda45e;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.truck-back-btn:hover {
    background: rgba(205, 164, 94, 0.15);
    border-color: #cda45e;
}
.truck-step2-summary {
    background: rgba(205, 164, 94, 0.08);
    border: 1px solid rgba(205, 164, 94, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.truck-step2-summary i {
    color: #cda45e;
    font-size: 12px;
}
.truck-required {
    color: #cda45e;
    font-weight: 700;
    font-size: 13px;
    margin-left: 2px;
}

/* Reservation time slot grid */
.res-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.res-slot {
    padding: 8px 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}
.res-slot:hover {
    background: rgba(205, 164, 94, 0.1);
    border-color: rgba(205, 164, 94, 0.3);
}
.res-slot.selected {
    background: rgba(205, 164, 94, 0.2);
    border-color: #cda45e;
    color: #cda45e;
    font-weight: 600;
}
.res-slot.disabled {
    opacity: 0.3;
    pointer-events: none;
    text-decoration: line-through;
}
@media (max-width: 575px) {
    .res-slot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.truck-date-display,
.truck-enddate-display {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}
.truck-date-clickable {
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}
.truck-date-clickable:hover {
    border-color: rgba(205, 164, 94, 0.4);
    background: rgba(205, 164, 94, 0.06);
}
.truck-date-placeholder {
    color: #7a7468;
    font-style: italic;
}
.truck-date-value {
    color: #cda45e;
    font-weight: 600;
}
.truck-multiday-check .form-check-input {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}
.truck-multiday-check .form-check-input:checked {
    background-color: #cda45e;
    border-color: #cda45e;
}
.truck-multiday-check .form-check-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    cursor: pointer;
}

/* Calendar: other-month days visible but muted */
#truck-calendar .fc-day-other .fc-daygrid-day-number,
#res-calendar .fc-day-other .fc-daygrid-day-number {
    opacity: 0.3;
}
#truck-calendar .fc-day-other .fc-daygrid-day-events,
#res-calendar .fc-day-other .fc-daygrid-day-events {
    opacity: 0.25;
}

/* Calendar hover preview */
#truck-calendar .truck-hover-preview,
#res-calendar .truck-hover-preview {
    background: rgba(205, 164, 94, 0.15) !important;
    border-radius: 12px;
}
#truck-calendar .truck-hover-mid,
#res-calendar .truck-hover-mid {
    background: rgba(205, 164, 94, 0.07) !important;
    border-radius: 0;
}
#truck-calendar .truck-hover-start,
#res-calendar .truck-hover-start {
    background: rgba(205, 164, 94, 0.15) !important;
    border-radius: 12px 0 0 12px;
}
#truck-calendar .truck-hover-end,
#res-calendar .truck-hover-end {
    background: rgba(205, 164, 94, 0.15) !important;
    border-radius: 0 12px 12px 0;
}

/* Calendar range selection */
#truck-calendar .truck-range-start,
#res-calendar .truck-range-start {
    background: rgba(205, 164, 94, 0.3) !important;
    border-radius: 12px 0 0 12px;
}
#truck-calendar .truck-range-end,
#res-calendar .truck-range-end {
    background: rgba(205, 164, 94, 0.3) !important;
    border-radius: 0 12px 12px 0;
}
#truck-calendar .truck-range-start.truck-range-end,
#res-calendar .truck-range-start.truck-range-end {
    border-radius: 12px;
}
#truck-calendar .truck-range-mid,
#res-calendar .truck-range-mid {
    background: rgba(205, 164, 94, 0.12) !important;
    border-radius: 0;
}
.calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #cda45e;
}
.legend-dot.busy {
    background: #8b5e3c;
}

/* FullCalendar dark theme overrides */
#truck-calendar,
#res-calendar {
    --fc-border-color: rgba(255, 255, 255, 0.08);
    --fc-page-bg-color: transparent;
    --fc-neutral-bg-color: rgba(255, 255, 255, 0.03);
    --fc-today-bg-color: rgba(205, 164, 94, 0.1);
    --fc-event-bg-color: #8b5e3c;
    --fc-event-border-color: #8b5e3c;
    --fc-event-text-color: #fff;
    --fc-button-bg-color: transparent;
    --fc-button-border-color: rgba(205, 164, 94, 0.3);
    --fc-button-text-color: #cda45e;
    --fc-button-hover-bg-color: rgba(205, 164, 94, 0.15);
    --fc-button-hover-border-color: #cda45e;
    --fc-button-active-bg-color: #cda45e;
    --fc-button-active-border-color: #cda45e;
}
#truck-calendar .fc-toolbar-title,
#res-calendar .fc-toolbar-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
#truck-calendar .fc-button,
#res-calendar .fc-button {
    border-radius: 8px !important;
    font-size: 13px;
    padding: 6px 12px;
    box-shadow: none !important;
    transition: all 0.2s;
}
#truck-calendar .fc-button:focus,
#res-calendar .fc-button:focus {
    box-shadow: none !important;
}
#truck-calendar .fc-button-active,
#res-calendar .fc-button-active {
    color: #1a1814 !important;
    font-weight: 600;
}
#truck-calendar .fc-prev-button,
#truck-calendar .fc-next-button,
#res-calendar .fc-prev-button,
#res-calendar .fc-next-button {
    padding: 6px 10px;
}
#truck-calendar .fc-col-header-cell-cushion,
#res-calendar .fc-col-header-cell-cushion {
    color: #cda45e;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}
#truck-calendar .fc-daygrid-day-number,
#res-calendar .fc-daygrid-day-number {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
}
#truck-calendar .fc-day-today .fc-daygrid-day-number,
#res-calendar .fc-day-today .fc-daygrid-day-number {
    color: #cda45e;
    font-weight: 700;
}
#truck-calendar .fc-daygrid-day:hover,
#res-calendar .fc-daygrid-day:hover {
    background: rgba(205, 164, 94, 0.08);
    cursor: pointer;
}
#truck-calendar .fc-daygrid-day-events,
#res-calendar .fc-daygrid-day-events {
    min-height: 18px;
}
#truck-calendar .fc-event,
#res-calendar .fc-event {
    border-radius: 4px;
    font-size: 11px;
    padding: 1px 4px;
}
#truck-calendar .fc-list-event-title a,
#truck-calendar .fc-list-day-cushion,
#res-calendar .fc-list-event-title a,
#res-calendar .fc-list-day-cushion {
    color: #fff;
}
#truck-calendar .fc-list-day-cushion,
#res-calendar .fc-list-day-cushion {
    background: rgba(205, 164, 94, 0.1) !important;
}
#truck-calendar a,
#res-calendar a {
    color: inherit;
    text-decoration: none;
}
#truck-calendar .fc-scrollgrid,
#res-calendar .fc-scrollgrid {
    border: none !important;
}
#truck-calendar table,
#res-calendar table {
    border-color: rgba(255, 255, 255, 0.06) !important;
}
#truck-calendar td,
#truck-calendar th,
#res-calendar td,
#res-calendar th {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Global booking button */
.btn-book {
    background: #cda45e;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-book:hover {
    background: #d3af71;
}

/* Global form input colors on dark backgrounds */
.php-email-form input,
.php-email-form textarea,
.php-email-form select {
    color: #c8c0b0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color 0.2s, background 0.2s;
}
.php-email-form input::placeholder,
.php-email-form textarea::placeholder {
    color: #7a7468;
}
.php-email-form input:focus,
.php-email-form textarea:focus,
.php-email-form select:focus {
    border-color: rgba(205, 164, 94, 0.5);
    background: rgba(255, 255, 255, 0.06);
    color: #ddd6c6;
    outline: none;
}
