/* =============================================
   JJS INNOVATIONS — Responsive Stylesheet
   ============================================= */

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

/* =============================================
   NAVBAR
   ============================================= */

nav {
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgb(21, 74, 74);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    padding: 0 3%;
}

nav .logo {
    width: 140px;
    margin: 1.5vh 0;
    flex-shrink: 0;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

nav ul li {
    list-style: none;
    display: inline-block;
}

.navbar a {
    color: white;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: ease 0.40s;
    display: block;
}

.navbar a:hover,
.navbar a.active {
    background: white;
    color: black;
    box-shadow: 5px 10px 30px rgb(85 85 85 / 20%);
    border-radius: 5px;
}

/* Hamburger toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =============================================
   HOME PAGE — BANNER
   ============================================= */

.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(1,0,5,0.3), rgba(4,1,17,0.3));
}

.title {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 14px 20px;
    margin-top: 30vh;
    text-align: center;
}

.title h1 {
    font-size: clamp(2rem, 8vw, 10vh);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: ease 0.3s;
}

.title h1:hover {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.title p {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    margin-top: 10px;
}

/* Home CTA button */
.button {
    display: inline-block;
    margin-top: 5vh;
    font-size: clamp(16px, 2.5vw, 25px);
    padding: 10px 30px;
    color: rgb(21, 74, 74);
    background-color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: ease 0.30s;
}

.button:hover {
    transform: scale(1.1);
    color: white;
    background-color: rgb(21, 74, 74);
    box-shadow: 5px 10px 30px rgba(0,0,0,0.4);
}

/* =============================================
   SERVICES
   ============================================= */

.text h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 650;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 2;
    text-align: center;
}

.rowitems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    align-items: center;
    text-align: center;
    margin: 20px 20px 10px;
}

.container-box {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 40px 10px;
    transition: all 0.7s ease 0s;
    cursor: pointer;
}

.container-image img {
    height: 80px;
    width: 80px;
    padding: 10px;
    margin-bottom: 15px;
}

.container-box h4 {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 5px;
    font-weight: 550;
}

.container-box p {
    font-size: clamp(13px, 1.5vw, 16px);
    color: #808080;
}

.container-box:hover {
    transform: translateX(3px);
    box-shadow: 5px 20px 50px rgba(78,78,78,0.1);
    border: 1px solid transparent;
    border-radius: 0px;
}

/* =============================================
   PACKAGES
   ============================================= */

.package-title {
    text-align: center;
}

.package-title h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 650;
    padding-top: 60px;
    padding-bottom: 10px;
    line-height: 2;
}

.package-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.image {
    position: relative;
    transition: all 0.3s cubic-bezier(0.445,0.05,0.55,0.95);
    cursor: pointer;
    filter: brightness(95%);
}

.image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 30px;
    object-fit: cover;
}

.image h3 {
    color: white;
    position: absolute;
    font-size: clamp(18px, 2.5vw, 30px);
    font-weight: 600;
    text-align: center;
    top: 10px;
    right: 20px;
}

.dest-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-bottom: 50px;
}

.location h4 {
    font-size: clamp(18px, 2.5vw, 25px);
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.pac-details li {
    font-size: clamp(14px, 1.8vw, 19px);
    color: #4c4c4c;
    margin-left: 15px;
    margin-bottom: 2px;
    list-style-type: disc;
}

.image:hover {
    filter: brightness(120%);
    transform: scale(1.03);
}

/* =============================================
   AMENITIES / LOCATIONS GRID
   ============================================= */

.locations {
    padding: 20px 16px 40px;
}

.location-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.col-content {
    position: relative;
    filter: brightness(95%);
    transition: all 0.3s cubic-bezier(0.445,0.05,0.55,0.95);
    width: 100%;
}

.col-content img {
    margin-bottom: 40px;
    height: 280px;
    border-radius: 27px;
    width: 100%;
    object-fit: cover;
}

.col-content h5 {
    position: absolute;
    font-size: clamp(15px, 2vw, 22px);
    color: white;
    font-weight: 500;
    left: 14px;
    bottom: 68px;
    cursor: pointer;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.col-content p {
    position: absolute;
    font-size: clamp(13px, 1.5vw, 18px);
    color: white;
    left: 14px;
    bottom: 46px;
    cursor: pointer;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.col-content:hover {
    filter: brightness(120%);
    transform: scale(1.03);
    cursor: pointer;
}

/* =============================================
   NEWSLETTER
   ============================================= */

.newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    gap: 20px;
}

.newstext h2 {
    margin-top: 60px;
    font-size: clamp(22px, 3.5vw, 38px);
}

.newstext p {
    font-size: clamp(15px, 2vw, 20px);
    color: #4c4c4c;
}

.newsletter form {
    margin-top: 60px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.newsletter form input:first-child {
    display: inline-block;
    width: 100%;
    font-size: 17px;
    outline: none;
    border: none;
    border-radius: 20px;
    padding: 20px 160px 20px 30px;
    box-shadow: 5px 10px 30px rgb(85 85 85 / 20%);
}

.newsletter form input:last-child {
    display: inline-block;
    position: absolute;
    outline: none;
    border: 2px solid transparent;
    border-radius: 20px;
    color: white;
    background-color: rgb(21, 74, 74);
    padding: 14px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 450;
    top: 6px;
    right: 6px;
    transition: ease 0.30s;
}

.newsletter form input:last-child:hover {
    border: 2px solid rgb(21, 74, 74);
    background-color: white;
    color: rgb(21, 74, 74);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    margin-top: 0px;
    background-color: rgb(21, 74, 74);
}

.foot {
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 0 20px;
}

.footlinks h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.footlinks h4::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    left: 0;
    bottom: -7px;
    background: white;
}

.footlinks ul li {
    margin-bottom: 15px;
}

.footlinks ul li a {
    font-size: 17px;
    color: #dddddd;
    display: block;
    transition: ease 0.30s;
}

.footlinks ul li a:hover {
    transform: translate(6px);
    color: white;
}

.social a {
    font-size: 25px;
    margin: 4px;
    height: 40px;
    width: 40px;
    color: rgb(21, 74, 74);
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: ease 0.30s;
}

.social a:hover {
    transform: scale(1.2);
}

.end {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 12px;
}

.end p {
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
    font-weight: 300;
    padding: 0 16px;
}

/* =============================================
   ABOUT US
   ============================================= */

.aboutbody {
    background-color: #191919;
}

.about {
    width: 100%;
    padding: 90px 20px 60px;
}

.main {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.about img {
    height: auto;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

.abt-text {
    width: 100%;
    max-width: 500px;
}

.abt-text h1 {
    font-size: clamp(40px, 8vw, 70px);
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.abt-text h1 span {
    color: #fc0050;
    letter-spacing: 1px;
}

.abt-text p {
    color: white;
    font-size: clamp(16px, 2.5vw, 24px);
    margin-bottom: 45px;
    line-height: 1.6;
    letter-spacing: 1px;
}

.connectbtn {
    display: inline-block;
    background-color: #fc0050;
    font-size: clamp(15px, 2vw, 18px);
    color: white;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: ease 0.4s;
    border: 2px solid transparent;
    letter-spacing: 1px;
}

.connectbtn:hover {
    background-color: transparent;
    border: 2px solid #fc0050;
    transform: scale(1.1);
}

.connect-section {
    margin-top: 26px;
}

.social-icons a {
    height: 40px;
    width: 40px;
    margin: 4px;
    font-size: 30px;
    color: #101010;
    background-color: white;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: ease 0.30s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* =============================================
   CONTACT US
   ============================================= */

.contactbody {
    background-color: #101010;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact {
    padding: 100px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 640px;
}

.contact-form h1 {
    font-size: clamp(36px, 8vw, 80px);
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-form h1 span {
    color: #fc0050;
}

.contact-form p {
    color: white;
    line-height: 1.7;
    letter-spacing: 1px;
    font-size: clamp(15px, 2vw, 20px);
    margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    background-color: #191919;
    font-size: clamp(15px, 2vw, 18px);
    color: white;
    margin-bottom: 10px;
    border-radius: 10px;
}

.contact-form form .submit-btn {
    display: inline-block;
    background-color: #fc0050;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 40px;
    width: 180px;
    cursor: pointer;
    transition: ease 0.30s;
    color: white;
    padding: 12px;
}

.contact-form form .submit-btn:hover {
    border: 2px solid #fc0050;
    background-color: transparent;
    transform: scale(1.1);
}

/* =============================================
   REGISTRATION
   ============================================= */

.register-body {
    background-color: #101010;
}

.registration {
    padding: 100px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.register-form {
    width: 100%;
    max-width: 600px;
    color: white;
    font-size: clamp(15px, 2vw, 20px);
}

.register-form h1 {
    font-size: clamp(36px, 8vw, 80px);
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.register-form h1 span {
    color: #fc0050;
}

.register-form form input[type="text"],
.register-form form input[type="email"],
.register-form form input[type="tel"],
.register-form form input[type="number"] {
    width: 100%;
    color: white;
    padding: 14px 16px;
    background-color: #191919;
    font-size: clamp(14px, 2vw, 18px);
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 16px;
    display: block;
}

.register-form h4 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 10px;
    color: #fc0050;
}

.register-form form .submitbtn {
    display: inline-block;
    background-color: #fc0050;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 60px;
    width: 180px;
    cursor: pointer;
    transition: ease 0.30s;
    color: white;
    padding: 12px;
}

.register-form form .submitbtn:hover {
    border: 2px solid #fc0050;
    background-color: transparent;
    transform: scale(1.1);
}

/* =============================================
   LOCATION DETAIL PAGES
   ============================================= */

.location-body {
    background-color: #191919;
    color: white;
}

.location-section {
    padding: 100px 20px 60px;
    min-height: 100vh;
}

.location-heading h1 {
    margin-top: 20px;
    font-size: clamp(30px, 6vw, 60px);
    margin-bottom: 20px;
}

.location-heading h1 span {
    color: #fc0050;
}

.location-detail h1 {
    padding-top: 40px;
    color: #fc0050;
    font-size: clamp(24px, 4vw, 40px);
}

.location-detail p {
    font-size: clamp(15px, 2vw, 20px);
    margin-top: 30px;
    margin-bottom: 10px;
}

.location-img img {
    height: auto;
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.stars i {
    font-size: 20px;
    color: rgb(197, 167, 44);
}

.ok {
    margin-top: 30px;
}

/* =============================================
   AMENITY DETAIL HERO / PLANS (override inline styles)
   ============================================= */

.hero-section {
    padding: clamp(90px, 12vw, 120px) 6% 60px;
    text-align: center;
    background: linear-gradient(to bottom, #0d0d0d, #111);
}

.hero-section h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #fc0050;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-section p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.plans-section {
    padding: 60px 6%;
    background-color: #0f0f0f;
    text-align: center;
    margin-top: -60px;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Tablet */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Hide nav links by default, show when .open */
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(21, 74, 74);
        padding: 10px 0 20px;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .navbar.open {
        display: flex;
    }

    .navbar li {
        display: block;
        width: 100%;
    }

    .navbar a {
        display: block;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 0;
    }

    .navbar a:hover,
    .navbar a.active {
        border-radius: 0;
        background: rgba(255,255,255,0.15);
        color: white;
    }

    /* About */
    .main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px;
    }

    .about img {
        max-width: 90%;
    }

    .abt-text {
        max-width: 100%;
        text-align: center;
    }

    /* Amenities: 2 columns on tablet */
    .location-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-content img {
        height: 240px;
    }

    /* Gym pricing — 2 per row on tablet */
    .package-content {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footlinks h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 480px) {

    nav .logo {
        width: 100px;
    }

    .title {
        margin-top: 22vh;
        padding: 14px 12px;
    }

    .button {
        font-size: 15px;
        padding: 10px 22px;
    }

    /* Amenities: single column */
    .location-content {
        grid-template-columns: 1fr;
    }

    .col-content img {
        height: 220px;
    }

    /* Contact & Register */
    .contact, .registration {
        padding: 90px 14px 50px;
    }

    /* About */
    .about {
        padding: 80px 12px 40px;
    }

    /* Plans */
    .plans-section {
        padding: 40px 14px;
        margin-top: 0;
    }

    .hero-section {
        padding: 90px 14px 40px;
    }

    /* Gym cards: single column */
    .package-content {
        flex-direction: column;
        align-items: center;
    }

    /* Newsletter */
    .newsletter form {
        margin-top: 30px;
    }

    .newsletter form input:first-child {
        padding: 16px 120px 16px 16px;
        font-size: 14px;
    }

    .newsletter form input:last-child {
        font-size: 13px;
        padding: 10px 12px;
    }
}
