    /* header css */


    /* header css end */
    /* hero */
    .hero {
        position: relative;
        overflow: hidden;
        height: 100vh;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(0, 0, 0, 0.5); */
        /* dark overlay */
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .highlight {
    color: #d4a64f;
}
#typing-text {
    color: #ffffff !important;
}

/* button paddington and fitzrovia */
/* Base button */
.cta-btn {
    position: relative;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

/* 🔥 Paddington (gold premium) */
.btn-paddington {
    color: #1a1a1a !important; /* dark text = better readability */
    background: linear-gradient(135deg, #d4a64f, #f1d293);
    box-shadow: 0 6px 18px rgba(205,164,94,0.45);
}

/* Hover */
.btn-paddington:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205,164,94,0.7);
}

/* ✨ Fitzrovia (glass + outline) */
.btn-fitzrovia {
    color: #fff;
    border: 1.5px solid rgba(205,164,94,0.8);
    background: rgba(255,255,255,0.05); /* glass effect */
    backdrop-filter: blur(6px);
}

/* hover fill animation */
.btn-fitzrovia::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4a64f, #f1d293);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-fitzrovia:hover::before {
    transform: scaleX(1);
}

.btn-fitzrovia:hover {
    color: #1a1a1a;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 576px) {
    .cta-btn {
        width: 100%;
        text-align: center;
    }
}
/* button paddington and fitzrovia */
/* hero end */


/* About us */

    .script-text {
        font-family: 'Dancing Script', cursive;
    }

    .serif-text {
        font-family: 'Playfair Display', serif;
    }

    .stats-section {
        margin-top: 40px;
    }

    .stat-box {
        padding: 30px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        transition: 0.3s ease;
    }

    .stat-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .stat-box h3 {
        font-size: 42px;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .stat-box p {
        font-size: 16px;
        letter-spacing: 1px;
        font-weight: 500;
    }

    /* about end */







.event-modern {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    cursor: pointer;
}

.event-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Dark overlay */
.event-modern .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    transition: 0.4s;
}

/* Text content */
.event-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.4s;
}

.event-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.event-info .price {
    color: #d4a64f;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* Hover Effects */
.event-modern:hover img {
    transform: scale(1.1);
}

.event-modern:hover .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
}

.event-modern:hover .event-info {
    transform: translateY(0);
    opacity: 1;
}




/* book a table */

.booking-advanced {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: #fff;
}

/* Branch Cards */
.branches {
    display: flex;
    gap: 10px;
}

.branch-card {
    padding: 10px 20px;
    border: 1px solid #555;
    cursor: pointer;
    border-radius: 6px;
}

.branch-card.active {
    background: #d4a64f;
}

/* Floating Labels */
.floating {
    position: relative;
}

.floating input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
}

.floating label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #aaa;
    transition: 0.3s;
}

.floating input:focus+label,
.floating input:valid+label {
    top: -10px;
    font-size: 12px;
    color: #d4a64f;
}


/* Buttons */
.btn-book {
    background: #d4a64f;
    padding: 10px 30px;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.btn-whatsapp {
    margin-left: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}


/* form */
.floating {
    position: relative;
}

/* INPUT + SELECT SAME STYLE */
.floating input,
.floating select {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: 1px solid #444;
    color: #000000;
}

/* LABEL */
.floating label {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #aaa;
    transition: 0.3s;
    pointer-events: none;
    background: #000;
    padding: 0 5px;
}

/* INPUT FLOAT */
.floating input:focus+label,
.floating input:valid+label {
    top: -10px;
    font-size: 12px;
    color: #d4a64f;
}

/* SELECT FIX (MAIN ISSUE FIX) */
.floating select:focus+label,
.floating select:not([value=""])+label {
    top: -10px;
    font-size: 12px;
    color: #d4a64f;
}


/* map */
.branch-buttons .btn {
  border-radius: 30px;
  padding: 8px 20px;
  transition: 0.3s;
}

.branch-buttons .btn.active {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  border: none;
}

.map-box {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: opacity 0.4s ease;
}

/* fade effect */
.map-box.fade iframe {
  opacity: 0;
}




/* book table */
.floating {
    position: relative;
}

.floating select {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #fff;
    border: 1px solid #444;
}

.floating label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: 0.3s;
    pointer-events: none;
    background: black;
    padding: 0 5px;
}

/* active state */
.floating.active label {
    top: -8px;
    font-size: 12px;
    color: orange;
}
/* book table end */