body {
    background: #11131a;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.container {
    max-width: 950px;
    margin: 40px auto;
    padding: 30px;
    background: #1a1d27;
    border-radius: 14px;
    box-shadow:
        0 0 30px rgba(0,0,0,0.4),
        0 0 34px rgba(89,216,255,0.08);
    position: relative;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(251,191,36,0.16) 0%,
        rgba(251,191,36,0) 70%
    );
    pointer-events: none;
}

.container::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(
        circle,
        rgba(89,216,255,0.14) 0%,
        rgba(89,216,255,0) 72%
    );
    pointer-events: none;
}
.container > * {
    position: relative;
    z-index: 2;
}
h1,
h3 {
    color: #fbbf24;
    margin-top: 0;
}

h2 {
    color: #fbbf24;
    margin-top: 28px;
}

a {
    color: #59d8ff;
}

p {
    line-height: 1.6;
}

.booking-form {
    background: rgba(28, 33, 48, 0.92);
    border: 1px solid rgba(89,216,255,0.12);
    border-radius: 18px;
    padding: 24px;
    margin-top: 20px;
}

label {
    display: block;
    font-weight: bold;
    color: #59d8ff;
    margin-bottom: 6px;
}

input,
select,
textarea {
    background: rgba(38,43,56,0.92);
    color: #ffffff;
    border: 1px solid #444b5d;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 18px;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 0 10px rgba(0,0,0,0.25);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #59d8ff;
    box-shadow:
        0 0 0 1px rgba(89,216,255,0.35),
        0 0 14px rgba(89,216,255,0.28),
        0 0 34px rgba(89,216,255,0.12);
}

button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f59e0b,
        #ffd166
    );
    color: #1a1d27;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow:
        0 0 14px rgba(245,158,11,0.34),
        0 0 34px rgba(255,209,102,0.16);
    letter-spacing: 0.3px;
    text-transform: none;
}

button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 18px rgba(245,158,11,0.45),
        0 0 48px rgba(255,209,102,0.22);
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.6s;
}

button:hover::before {
    left: 140%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #202532;
    border-radius: 10px;
    overflow: hidden;
}

tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

th {
    background: #2d3447;
    color: #59d8ff;
    padding: 14px;
    text-align: left;
}

td {
    padding: 14px;
    border-top: 1px solid #32394d;
}

.error {
    background: #4d1f2d;
    color: #ffb7c8;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#calendar-wrapper {
    position: relative;
    z-index: 1;
    overflow: visible;
    margin-top: 20px;
    background: #1c2130;
    padding: 20px;
    border-radius: 12px;
}
#calendar {
    position: relative;
    z-index: 2;
}

.fc table {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    overflow: visible !important;
    position: static !important;
}

.fc tr:nth-child(even) td {
    background: transparent !important;
}

.fc-event-title,
.fc-event-time,
.fc-event-main,
.fc-timegrid-event .fc-event-main {
    color: #1a1d27 !important;
}

.fc-event,
.fc-timegrid-event,
.fc-v-event {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 50 !important;
    background: linear-gradient(135deg, #f59e0b, #ffd166) !important;
    color: #1a1d27 !important;
    border: none !important;
}

.fc-event {
    z-index: 10 !important;
    opacity: 1 !important;
    filter: none !important;
}

.fc {
    background: #1c2130;
    color: white;
}

.fc-toolbar-title {
    color: #59d8ff;
}

.fc-button {
    background: #f59e0b !important;
    color: #1a1d27 !important;
    border: none !important;
}

.fc-event {
    background: linear-gradient(
        135deg,
        #f59e0b,
        #ffd166
    ) !important;
    color: #1a1d27 !important;
    border: none !important;
    padding: 2px 4px;
    box-shadow:
        0 0 10px rgba(245,158,11,0.35);
}

.fc-timegrid-slot {
    background: #1a1d27;
}

.fc-col-header-cell {
    background: #2a3042;
}

.fc-scrollgrid {
    border-color: #394055 !important;
}

.booking-hero {
    background: linear-gradient(
        135deg,
        rgba(251,191,36,0.10),
        rgba(89,216,255,0.10)
    );
    border: 1px solid #343b50;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 28px;
}

.eyebrow {
    color: #59d8ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.booking-hero h2 {
    font-size: 34px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
}

.hero-image {
    margin-top: 24px;
    margin-bottom: 24px;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 24px rgba(89,216,255,0.14),
        0 0 60px rgba(0,0,0,0.35);
}

.hero-text {
    max-width: 100%;
    font-size: 18px;
    color: #d9dcef;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.feature-grid div {
    background: #242a39;
    border: 1px solid rgba(89,216,255,0.16);
    border-radius: 12px;
    padding: 14px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.booking-notes {
    background: #161a24;
    border-left: 4px solid #59d8ff;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
}

.booking-notes h3 {
    margin-bottom: 10px;
}

.booking-notes li {
    margin-bottom: 8px;
}

.feature-grid div,
.booking-notes.booking-hero,
.feature-grid div,
.booking-notes, {
    position: relative;
    background: rgba(28, 33, 48, 0.92);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 0 18px rgba(89,216,255,0.08),
        0 0 40px rgba(251,191,36,0.04);
    transition: all 0.25s ease;
}

.booking-hero:hover,
.feature-grid div:hover,
.booking-notes:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 0 24px rgba(89,216,255,0.14),
        0 0 50px rgba(251,191,36,0.08);
}

.time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 0;
    margin-bottom: 18px;
}

.time-row input,
.time-row select {
    width: auto !important;
    flex: 1;
    min-width: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.time-row input:first-child {
    max-width: 90px;
}

.time-row select {
    max-width: 120px;
}

.time-colon {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-top: -4px;
    flex-shrink: 0;
}

.site-logo {
    text-align: center;
    margin-bottom: 30px;
}

.site-logo img {
    max-width: 260px;
    width: 80%;
    height: auto;
}

.site-logo::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 18px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(251,191,36,0.8),
        transparent
    );
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.booking-hero img,
.hero-image,
.room-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-sizing: border-box;
}
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    margin-top: 0;
    margin-bottom: 0;
}

.time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.time-row input,
.time-row select {
    width: auto !important;
    margin: 0;
}

.time-row input:first-child {
    max-width: 90px;
}

.time-row select {
    max-width: 120px;
}
.booking-summary {
    margin-bottom: 18px;
}

.booking-summary p {
    margin: 4px 0;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    margin-top: 0;
    margin-bottom: 0;
}


@media (max-width: 700px) {

    body {
        font-size: 17px;
    }

    .container {
        margin: 0;
        border-radius: 0;
        padding: 16px;
    }

    .booking-hero {
        padding: 22px 18px;
    }

    .booking-hero h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 18px;
        line-height: 1.6;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-grid div {
        font-size: 16px;
        padding: 16px;
    }

    input,
    select,
    textarea,
    button {
        width: 100%;
        font-size: 18px;
        padding: 14px;
        box-sizing: border-box;
    }

    button {
        margin-top: 10px;
        letter-spacing: 0.3px;
        text-transform: none;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }

    .fc-toolbar-title {
        font-size: 20px !important;
        text-align: center;
    }

    .fc-button {
        padding: 10px 14px !important;
        font-size: 15px !important;
    }

    .fc-timegrid-slot {
        height: 42px !important;
    }

    .fc-event {
        background: linear-gradient(
            135deg,
            #f59e0b,
            #ffd166
        ) !important;
    }

    .time-row input,
    .time-row select {
        width: auto !important;
        margin-top: 0;
        margin-bottom: 0;
        padding: 14px;
        box-sizing: border-box;
    }

    .site-logo img {
        max-width: 200px;
        width: 75%;
    }

    .container,
    .booking-hero,
    .booking-notes {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .booking-hero img,
    .hero-image,
    .room-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    #calendar-wrapper {
        overflow: visible;
        padding: 12px;
    }

    .fc-header-toolbar {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .fc-toolbar-chunk {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .fc .fc-button {
        font-size: 14px !important;
        padding: 9px 12px !important;
    }

    .fc-toolbar-title {
        font-size: 22px !important;
        text-align: center;
    }
.fc table {
        display: table !important;
        width: 100% !important;
        table-layout: fixed !important;
        overflow: visible !important;
        white-space: normal !important;
        margin-top: 0 !important;
    }

    .fc th,
    .fc td {
        display: table-cell !important;
        padding: 0 !important;
        white-space: normal !important;
    }

    .fc .fc-button {
        width: auto !important;
        margin: 0 !important;
        font-size: 14px !important;
        padding: 9px 12px !important;
    }

    .fc-header-toolbar {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .fc-toolbar-chunk {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .fc-view-harness {
        min-height: 520px !important;
    }
    .fc-timegrid-slot {
        height: 24px !important;
    }

    .fc-timegrid-axis {
        width: 42px !important;
    }

    .fc-timegrid-slot-label {
        font-size: 11px !important;
    }

    .fc-col-header-cell-cushion {
        font-size: 11px !important;
        padding: 2px !important;
    }

    .fc-event {
        font-size: 10px !important;
        border-radius: 4px !important;
    }

    .fc-event-main {
        padding: 1px 2px !important;
    }
}
