/*==================== 1. MAIN & GLOBAL RESET ====================*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
}

body,
html {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 15px;
}

small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-family: 'Roboto', sans-serif;
    color: #506172;
    line-height: 1.6;
}

b {
    color: #014b85;
}

/*==================== 2. SCROLL & TARGET LOGIC ====================*/
html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

section {
    scroll-margin-top: 90px;
}

section:target {
    border-left: 8px solid #fde02f;
    padding-left: 20px;
    animation: highlight 1.5s ease-out;
}

@keyframes highlight {
    0% {
        background-color: rgba(253, 224, 47, 0.2);
    }

    100% {
        background-color: transparent;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #fde65e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #fde02f;
}

/*==================== 3. NAV BAR ====================*/
.nav-bar {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    height: 90px;
    background-color: rgba(114, 202, 253, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    flex: 1;
    font-size: 40px;
    padding: 20px;
    margin-left: 50px;
    font-family: 'Satisfy', cursive;
    cursor: pointer;
}

ul.menu {
    flex: 1;
    display: flex;
    flex-flow: row wrap;
}

.menu li {
    flex: 1;
    list-style-type: none;
}

.menu li a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Barlow Condensed", sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu li a:hover {
    color: #fde02f;
    /* text-decoration: underline; */
    transform: translateY(-2px);
}

@keyframes highlight {
    0% {
        background-color: rgba(253, 224, 47, 0.2);
    }

    100% {
        background-color: transparent;
    }
}

@media (max-width: 942px) {
    .nav-bar {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        text-align: center;
        position: static;
    }

    .logo {
        flex: 1;
        font-size: 30px;
        margin: 10px auto;
        font-family: Satisfy;
        color: #fde02f;
    }

    .nav-bar ul {
        display: none;
    }

    .nav-bar ul li {
        flex: 1;
        margin-bottom: 5px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        height: auto;
        padding: 15px 0;
        flex-direction: column;
        width: 100%;
    }

    ul.menu {
        width: 100%;
        justify-content: center;
        gap: 10px;
        padding: 0 10px;
    }

    .menu li {
        flex: none;
        margin: 0 5px;
    }

    .menu li a {
        font-size: 14px;
    }
}

/*==================== 4. BANNER ====================*/
.banner {
    background-image: url("https://wallpapercave.com/wp/wp4871144.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.banner-text-item {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-heading h1 {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: normal;
    color: #fde02f;
    font-family: 'Satisfy', cursive;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.banner-text-item .form {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    gap: 15px;
}

.banner-text-item input,
.banner-text-item .date {
    padding: 15px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border-radius: 8px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: white;
    flex: 2;
    min-width: 200px;
}

.banner-text-item .date {
    flex: 1;
    min-width: 150px;
}

.banner-text-item .book {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    padding: 15px 30px;
    cursor: pointer;
    background-color: #fde02f;
    font-size: 16px;
    font-weight: bold;
    font-family: "Barlow Condensed", sans-serif;
    border-radius: 8px;
    transition: 0.3s ease;
    flex: 0.5;
    min-width: 120px;
    text-align: center;
}

.banner-text-item .book:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
}

@media all and (max-width: 1414px) {
    .banner-text-item .form input {
        width: 40%;
    }

    .banner-text-item .form .date {
        width: 30%;
    }

    .banner-text-item .form .book {
        width: 20%;
        font-size: 14px;
    }
}

@media all and (max-width: 1173px) {
    .banner .form {
        background-color: transparent;
    }
}

@media all and (max-width: 1172px) {
    .banner-text-item .form {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    .banner-text-item .form input,
    .banner-text-item .form .date,
    .banner-text-item .form a {
        flex: 1;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .banner-text-item .form input {
        width: 60%;
    }

    .banner-text-item .form .date {
        width: 30%;
    }

    .banner-text-item .form .book {
        width: 10%;
        font-size: 14px;
    }

    .banner-heading h1 {
        font-size: 60px;
    }
}

@media all and (max-width: 928px) {
    .banner .form input,
    a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .banner-text-item .form {
        flex-direction: column;
        width: 50%;
    }

    .banner-text-item input,
    .banner-text-item .date,
    .banner-text-item .book {
        width: 60%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .banner-heading h1 {
        font-size: 40px;
        padding: 0 10px;
    }

    .banner-text-item .form {
        padding: 15px;
        width: 70%;
    }
}

/*==================== 5. SERVICES ====================*/
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px;
}

.service-item {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 !important;
}

.service-item i {
    font-size: 50px;
    color: #fde02f;
    margin-bottom: 20px;
}

.service-item h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    color: #191d34;
    line-height: 1.3;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #fde02f;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media all and (max-width: 942px) {
    .services {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
    }
    .service-item {
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 100%;
        max-width: 350px;
    }
}

/*==================== 6. PLACES & CARDS ====================*/
.places {
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.places-text {
    text-align: center;
    margin-bottom: 60px;
}

.places-text small {
    font-family: 'Roboto', sans-serif;
    color: #ffc342;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}

.places-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 55px;
    color: #191d34;
    text-transform: uppercase;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 30px;
    padding: 20px;
    justify-items: center;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 360px;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.cards .text {
    padding: 25px;
    text-align: left;
}

.cards .text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    margin: 10px 0;
    color: #191d34;
}

.cards .cost {
    color: #4cafad;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}

.cards .card-box {
    display: flex;
    flex-flow: row wrap;
    background-color: #fde02f;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 45px;
}

.cards .time,
.cards .location {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.cards .location {
    flex: 1.5;
    white-space: normal;
    line-height: 1.2;
}

.zoom-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.zoom-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover .zoom-img::after {
    opacity: 1;
}

@media all and (max-width: 1194px) {
    .places .card-box p {
        font-size: 14px;
    }
}

@media all and (max-width: 1086px) {
    .places .cards .text {
        line-height: 40px;
    }

    .cards .text .h2 {
        font-size: 12px;
    }

    .cards .img-card img {
        height: 260px;
    }
}

@media screen and (max-width: 974px) {
    .cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
        grid-gap: 20px;
    }

    .card {
        width: 300px;
        height: 500px;
        margin: auto;
    }

    .cards .text {
        padding: 5px;
        font-family: Barlow Condensed;
    }
}

@media (max-width: 942px) {
    .places-text {
        margin-top: 20px;
    }
}

/*==================== 7. ABOUT US ====================*/
.about {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
}

.about-img {
    flex: 1;
    width: 100%;
    min-width: unset;
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 15px 15px 0px #fde02f;
}

.about-text {
    flex: 1;
    min-width: 300px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.about-text small {
    color: #ffc342;
    font-size: 16px;
    font-weight: 900;
}

.about-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 5vw, 50px);
    color: #191d34;
    margin: 15px 0;
}

b {
    color: #014b85;
}

.about-text p {
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
    font-size: 16px;
    color: #506172;
    margin-bottom: 25px;
    word-wrap: break-word;
}

.about-checklist p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #191d34;
    white-space: normal;
    text-align: left;
}

.about-checklist i {
    color: #fde02f;
    font-size: 18px;
    margin-top: 4px;
}

.about-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #014b85;
    text-decoration: none;
    border-radius: 5px;
    width: 180px;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
    color: #014b85;
    font-weight: 800;
    transition: 0.3s;
}

.about-btn:hover {
    background-color: #014b85;
    color: #fff;
    transform: scale(1.05);
}

@media all and (max-width: 1334px) {
    .about-img img {
        width: 300px;
        height: 500px;
    }
}

@media all and (max-width: 1116px) {
    .about {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
    }

    .about-img {
        flex: 1;
        margin-bottom: 20px;
    }

    .about-text {
        flex: 1;
        margin: auto;
        text-align: center;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .about-text h2 {
        font-size: 35px;
    }

    .about-img img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 942px) {
    .about {
        flex-direction: column;
        text-align: center;
        margin: 60px auto;
    }

    .about-checklist p {
        justify-content: center;
    }

    .about-img img {
        box-shadow: 10px 10px 0px #fde02f;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .about-text {
        text-align: center;
        padding: 10px;
    }

    .about-checklist p {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .about-img img {
        box-shadow: 10px 10px 0px #fde02f;
        width: 90%;
    }
}

/*==================== 8. FOOTER ====================*/
.footer {
    background-image: url("https://images6.alphacoders.com/108/thumb-1920-1083694.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 400px;
    position: relative;
    padding: 80px 0 20px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.footer::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 36, 0.85);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 90%;
    gap: 30px;
}

.footer .links {
    flex: 1 1 200px;
    min-width: 150px;
    margin-bottom: 20px;
}

.links h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: #fde02f;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links li {
    font-family: 'Roboto', sans-serif;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.links li:hover {
    color: #fde02f;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fde02f;
    color: #000;
    transform: translateY(-5px);
}

.copyright {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 50px 0 20px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer .links {
        width: 100%;
        margin-bottom: 0;
    }

    .social-icons {
        justify-content: center;
    }
}

/*==================== Final Micro-Screen Fix (JioPhone/Small Devices) ====================*/
@media screen and (max-width: 320px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    .logo {
        font-size: 24px;
        padding: 10px;
    }
    
    ul.menu li a {
        font-size: 11px;
        margin: 0 2px;
    }

    .banner-heading h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .banner-text-item .form {
        padding: 10px;
        gap: 8px;
    }

    .banner-text-item input, 
    .banner-text-item .date, 
    .banner-text-item .book {
        font-size: 13px;
        padding: 10px;
        min-width: 100%;
    }

    .places-text h2 {
        font-size: 32px !important;
    }
    
    .places-text small {
        font-size: 10px;
    }

    .cards {
        padding: 10px;
    }

    .card {
        width: 100% !important;
        max-width: 220px;
    }

    .cards .text h2 {
        font-size: 20px;
    }

    .cards .card-box {
        font-size: 11px;
        padding: 8px;
    }
}
