@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

:root{
    --red:#cf1f2e;
    --red-dark:#a81824;
    --blue:#1f4f8b;
    --blue-dark:#0f2a44;
    --blue-light:#eef4ff;
    --white:#ffffff;
    --offwhite:#f4f7fb;
    --text:#17212f;
    --muted:#6b7280;
    --border:#dbe4ef;
    --shadow:0 12px 30px rgba(18,52,86,0.12);
    --radius:22px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html, body{
    margin:0;
    padding:0;
    font-family:Arial, sans-serif;
    background:var(--offwhite);
    color:var(--text);
}

a{
    text-decoration:none;
}

/* HEADER */
.site-header{
    background:linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-bottom:3px solid var(--red);
    color:#fff;
}

.header-inner{
    max-width:1200px;
    margin:0 auto;
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
}

.brand img{
    width:200px;
    height:auto;
    display:block;
    filter:drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}

.brand-text{
    font-family:'Orbitron', sans-serif;
    font-size:22px;
    font-weight:700;
    letter-spacing:4px;
    color:#fff;
    text-transform:uppercase;
}

.brand-text span{
    color:#ff5a66;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    color:#fff;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
}

.nav a:hover{
    color:#ff5a66;
}

.back-link{
    color:#fff;
    font-size:14px;
    font-weight:700;
    padding:12px 16px;
    border-radius:12px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.18);
}

.back-link:hover{
    background:rgba(255,255,255,0.18);
}

/* HERO */
.hero{
    background:
        linear-gradient(135deg, rgba(15,42,68,0.88), rgba(31,79,139,0.72)),
        url('images/grob109a.jpg') center/cover no-repeat;
    min-height:85vh;
    display:flex;
    align-items:center;
}

.hero-inner{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:40px;
}

.hero h1{
    margin:0 0 12px;
    font-size:56px;
    line-height:1.05;
    color:#fff;
}

.hero p{
    margin:0;
    max-width:760px;
    color:rgba(255,255,255,0.92);
    font-size:20px;
    line-height:1.65;
}

.hero-simple{
    background:linear-gradient(135deg, rgba(15,42,68,0.95), rgba(31,79,139,0.88));
    color:#fff;
    padding:54px 20px 76px;
    min-height:auto;
}

.hero-simple .hero-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0;
    display:block;
}

.hero-simple h1{
    margin:0 0 12px;
    font-size:48px;
    line-height:1.05;
    color:#fff;
}

.hero-simple p{
    margin:0;
    max-width:760px;
    font-size:19px;
    line-height:1.65;
    color:rgba(255,255,255,0.92);
}

.booking-pill,
.date-pill{
    display:inline-block;
    margin-top:22px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.24);
    color:#fff;
    font-size:14px;
    font-weight:700;
}

/* HOME BOOKING CARD */
.booking-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:var(--shadow);
}

.booking-card h2{
    margin:0 0 10px;
    color:var(--blue-dark);
}

.booking-card input{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:2px solid #d7e0eb;
    margin-bottom:15px;
}

/* LAYOUT */
.wrap{
    max-width:1200px;
    margin:-36px auto 0;
    padding:0 20px 60px;
}

.layout{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:24px;
    align-items:start;
}

.card{
    background:#fff;
    border-radius:24px;
    padding:26px;
    box-shadow:var(--shadow);
}

.summary-card{
    position:sticky;
    top:20px;
}

.summary-title{
    margin:0 0 16px;
    font-size:28px;
    color:var(--blue-dark);
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.card-top h2{
    margin:0 0 8px;
    font-size:30px;
    color:var(--blue-dark);
}

.card-top p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
}

.form-title{
    margin:0 0 8px;
    font-size:30px;
    color:var(--blue-dark);
}

.form-subtitle{
    margin:0 0 22px;
    color:var(--muted);
    line-height:1.6;
}

/* FORMS */
.date-form{
    width:100%;
    max-width:320px;
}

.date-label,
label{
    display:block;
    margin:16px 0 8px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.7px;
    color:var(--blue-dark);
}

input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"]{
    width:100%;
    box-sizing:border-box;
    padding:15px 16px;
    border:2px solid var(--border);
    border-radius:14px;
    font-size:16px;
    background:#fff;
    color:var(--text);
}

input[type="date"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus{
    outline:none;
    border-color:var(--blue);
    box-shadow:0 0 0 4px rgba(31,79,139,0.10);
}

.check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:18px;
    padding:14px 16px;
    border-radius:16px;
    background:#f9fbfd;
    border:1px solid #e2e8f0;
}

.check input{
    margin-top:2px;
    transform:scale(1.1);
}

.check span{
    font-size:14px;
    color:#4b5563;
    line-height:1.5;
}

.row{
    display:flex;
    gap:12px;
}

.row .col{
    flex:1;
}

/* BUTTON */
.btn{
    width:100%;
    border:none;
    border-radius:14px;
    padding:16px;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg, var(--red), var(--red-dark));
    margin-top:20px;
    cursor:pointer;
    transition:0.2s ease;
}

.btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(207,31,46,0.24);
}

/* SLOT CARDS */
.slots-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
}

.slot-card{
    display:block;
    background:linear-gradient(180deg, #ffffff, #f8fbff);
    border:1px solid #dbe6f3;
    border-top:4px solid var(--blue);
    border-radius:18px;
    padding:20px;
    color:var(--text);
    transition:0.2s ease;
    box-shadow:0 4px 12px rgba(18,52,86,0.04);
}

.slot-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(18,52,86,0.10);
    border-color:#c7d8eb;
}

.slot-card.taken{
    background:#f6f7f9;
    border:1px solid #e5e7eb;
    border-top:4px solid #c7cdd8;
    color:#9ca3af;
    pointer-events:none;
    box-shadow:none;
}

.slot-title{
    font-size:22px;
    font-weight:700;
    margin:0 0 10px;
    color:inherit;
}

.slot-time{
    font-size:15px;
    font-weight:700;
    color:var(--red);
    margin-bottom:10px;
}

.slot-meta{
    font-size:14px;
    line-height:1.7;
    color:inherit;
    opacity:0.9;
    margin-bottom:12px;
}

.slot-status{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    padding:8px 12px;
    border-radius:999px;
    background:#eef4ff;
    color:var(--blue-dark);
}

.slot-card.taken .slot-status{
    background:#eceff3;
    color:#8a94a3;
}

/* HELPERS */
.loading,
.empty{
    padding:18px;
    border-radius:16px;
    background:#f9fbfd;
    border:1px solid #e2e8f0;
    color:var(--muted);
    font-size:15px;
}

.helper,
.note{
    margin-top:14px;
    font-size:13px;
    color:var(--muted);
    line-height:1.6;
}

/* SECTIONS */
.section{
    max-width:1000px;
    margin:auto;
    padding:80px 20px;
    text-align:center;
}

.section h2{
    font-size:36px;
    margin-bottom:15px;
    color:var(--blue-dark);
}

.section p{
    color:var(--muted);
    font-size:18px;
    line-height:1.6;
}

/* FOOTER */
.footer{
    text-align:center;
    padding:10px 20px 40px;
    color:var(--muted);
    font-size:14px;
}

/* MOBILE */
@media (max-width: 900px){
    .hero-inner{
        grid-template-columns:1fr;
    }

    .nav{
        display:none;
    }

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

    .summary-card{
        position:static;
    }

    .brand img{
        width:120px;
    }

    .hero h1{
        font-size:40px;
    }
}

@media (max-width: 760px){
    .header-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero{
        min-height:auto;
    }

    .hero-simple{
        padding:42px 20px 72px;
    }

    .hero-simple h1{
        font-size:36px;
    }

    .hero-simple p,
    .hero p{
        font-size:17px;
    }

    .card{
        padding:20px;
    }

    .card-top h2,
    .summary-title,
    .form-title{
        font-size:26px;
    }

    .slot-title{
        font-size:20px;
    }

    .row{
        flex-direction:column;
    }
}

@media (max-width: 700px){
    .slots-grid{
        grid-template-columns:1fr;
    }
}
.payment-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:20px;
}

.payment-box{
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
    background:#f9fbff;
    text-align:center;
}

.payment-box h3{
    margin-top:0;
    color:var(--blue-dark);
}

.venmo-qr img{
    width:100%;
    max-width:140px;   /* 👈 adjust this */
    height:auto;
    margin:10px auto 15px;
    display:block;
}

.venmo-text{
    font-size:14px;
    color:var(--muted);
    margin-bottom:15px;
}

@media (max-width:700px){
    .payment-options{
        grid-template-columns:1fr;
    }
}