@import url(https://db.onlinewebfonts.com/c/2f86dc938a55788d3416b876b43a116a?family=Poppins);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

body {
    padding-top: 80px;
    overflow-x: hidden;
}

header {
    background-color: #1e1e1e;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    /* ✅ Modern neon-green shadow */
    box-shadow:
        0 2px 8px rgba(209, 255, 22, 0.15),
        /* soft glow */
        0 0 10px rgba(209, 255, 22, 0.1),
        /* subtle outer */
        0 4px 15px rgba(209, 255, 22, 0.8);
    /* bottom depth */
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.btn-reserve {
    background: linear-gradient(90deg, #3a00ff, #a800ff);
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-reserve:hover {
    background: linear-gradient(90deg, #a800ff, #3a00ff);
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 100;
}

nav a.active {
    color: #D1FF16;
    /* Neon Yellow */
    font-weight: bold;
    position: relative;
}

/* Add Game Icon */
nav a.active::before {
    content: "★";
    position: absolute;
    left: 18px;
    margin-top: -8px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #D1FF16;
    text-align: center;
}


.btn-reserve {
    background: linear-gradient(to right, #8f00ff, #f0f);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    color: white;
}

/* Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

@media (max-width: 600px) {
    .header-top {
        display: flex;
        justify-content: space-between;
        /* This aligns logo left, toggle right */
        align-items: center;
        width: 100%;
    }

    .logo {
        flex: 1;
    }

    .logo img {
        height: 36px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle span {
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        transition: all 0.4s ease;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #1e1e1e;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 16px 20px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .mobile-nav.show {
        transform: translateY(0);
    }

    .mobile-nav a {
        color: #fff;
        font-weight: bold;
        padding: 10px 0;
        text-decoration: none;
        font-size: 16px;
        width: 100%;
    }

    .btn-reserve {
        background: linear-gradient(to right, #8f00ff, #f0f);
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        border-radius: 8px;
        color: white;
        font-weight: bold;
        text-align: center;
        border: none;
    }
}


/********************************************************************************** footer  **********************/
.east-hug-footer {
    background: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}



/* Logo with Side Purple Bars */
.footer-logo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    border-bottom: 1px solid #D1FF16;
    border-top: 1px solid #D1FF16;
}

.side-line {
    flex: 1;
    height: 15px;
    background: #9e55ff;
}

.logo-container {
    flex-shrink: 0;
    padding: 0 30px;
}

.logo-container img {
    height: 60px;
}

/* Footer Grid Section */
.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100vw;
    /* border-top: 1px solid #D1FF16;
    border-bottom: 1px solid #D1FF16; */
    margin: 0;
}

.footer-cell {
    /* padding: 30px 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    border-right: 1px solid #D1FF16;
}

.footer-cell:last-child {
    border-right: none;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 15px;
}

.footer-item img {
    width: 40px;
    filter: brightness(1.3);
}

.footer-item p {
    font-size: 16px;
    color: #fff;
}

/* Full-width divider lines */
.footer-divider {
    height: 1px;
    width: 100%;
    background-color: #D1FF16;
    margin: 10px 0;
}

/* Subscribe Box */
.subscribe-row {
    display: flex;
    border: 1px solid #D1FF16;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 18px;
    margin-top: 20px;
    padding: 0px;
    margin-right: 4%;
    margin-bottom: -10px;
}

.subscribe-row input {
    flex: 1;
    padding: 14px;
    font-size: 14px;
    border: none;
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(to right, #6200ff, #a22dff);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px;
    border: none;
    cursor: pointer;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 8%;
    margin-left: 20px;
}

.footer-social-icons img {
    width: 30px;
    height: 30px;
    filter: brightness(1);
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #D1FF16;
}


/********************* whatsapp container */
.whatsapp-container {
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 3%;
    width: 50px;
    height: 50px;
    background-color: transparent;
}

.whatsapp-container i {
    font-size: 40px;
    color: #D1FF16;
    display: inline-block;
    animation: whatsappbeat 1.5s infinite;
}

@keyframes whatsappbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* pop up card */
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    background-image: url(../images/Background.png);
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1000;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
}

/* Heading */
.pop-up-heading {
    font-size: 36px;
    font-weight: 700;
    color: #D1FF16;
    /* Theme orange */
    margin-bottom: 15px;
}

/* Paragraph */
.pop-up-para {
    color: #ffffff;
    /* Olive green */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Button */
.close-btn {
    background-color: #000;
    /* Olive green */
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 0px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.close-btn:hover {
    background-color: #fff;
}



@media (max-width: 600px) {
    .popup {
        width: 90%;
        padding: 20px 15px;
    }

    .pop-up-heading {
        font-size: 28px;
    }

    .pop-up-para {
        font-size: 16px;
    }

    .close-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* =================== NEW MOBILE FOOTER (current markup version) =================== */
@media (max-width: 600px) {

    /* Overall footer spacing */
    .east-hug-footer {
        padding-top: 0px;
        padding-bottom: 0px;
        font-size: 14px;
        overflow-x: hidden;
    }

    /* Top purple bar stays full width; keep as-is (no change needed) */

    /* Logo bar: stack lines above/below logo so it doesn't overflow */
    .footer-logo-bar {
        flex-direction: column;
        width: 100%;
        border-top: 1px solid #D1FF16;
        border-bottom: 1px solid #D1FF16;
        padding: 12px 0;
        gap: 8px;
        display: none;
    }

    .footer-logo-bar .side-line {
        width: 80%;
        height: 6px;
    }

    .footer-logo-bar .logo-container {
        padding: 0;
    }

    .footer-logo-bar .logo-container img {
        height: 48px;
        max-width: 80%;
        height: auto;
    }

    /* Collapse 3‑col grid into a vertical stacked layout */
    .footer-main-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        /* use container width, not 100vw (prevents sideways scroll) */
        margin: 0 auto;
        border: none;
        /* remove stray lines from desktop grid */
    }

    .footer-cell {
        width: auto;
        max-width: 340px;
        /* tighten width for nice reading */
        margin: 0 auto;
        padding: 24px 0;
        gap: 16px;
        border-right: none !important;
        border-bottom: 1px solid #D1FF16;
        align-items: center;
        text-align: center;
    }

    .footer-cell:last-child {
        border-bottom: none;
    }

    /* Location / Email / Phone items */
    .footer-item {
        padding-left: 0;
        justify-content: center;
        text-align: center;
    }

    .footer-item img {
        width: 28px;
    }

    .footer-item p {
        font-size: 15px;
        line-height: 1.4;
        word-break: break-word;
    }

    /* Divider: shorten + reduce margin */
    .footer-divider {
        width: 60%;
        margin: 8px auto;
        height: 1px;
        background-color: #D1FF16;
    }

    /* Subscribe row: stack input + button vertically, full width */
    .subscribe-row {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
        border: none;
    }

    .subscribe-row input {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border: 1px solid #D1FF16;
        border-radius: 6px;
        margin: 0;
        box-sizing: border-box;
    }

    .subscribe-row .subscribe-btn {
        width: 100%;
        margin-top: 10px;
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    /* Social icons: center & larger tap targets */
    .footer-social-icons {
        justify-content: center;
        margin: 12px auto 0;
        gap: 24px;
    }

    .footer-social-icons img {
        width: 36px;
        height: 36px;
    }

    /* Bottom bar: stack lines */
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 16px 5vw;
        font-size: 0.9rem;
    }

    .footer-bottom-bar .left,
    .footer-bottom-bar .right {
        margin: 0;
    }
}