﻿body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f1ec;  /* warm off-white */
}
.justifyText{
    text-align: justify;
}
/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    color: white;
    align-items: center;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .logo span {
        color: white;
        font-weight: bold;
        font-size: 18px;
    }
    .logo:hover img {
        transform: scale(1.05);
        transition: 0.3s;
    }

    .logo img {
        height: 50px;
        width: 50px; /* equal width/height */
        border-radius: 50%; /* make it perfect circle */
        object-fit: cover; /* prevent distortion */
        border: 2px solid white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }
.navbar ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
}

    .navbar a:hover {
        color: gold;
    }

/* TOP HOMEPAGE SLIDER */
.top-slider {
    position: relative;
    height: 80vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.top-slider__track {
    position: absolute;
    inset: 0;
}

.top-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.top-slider__slide.is-active {
    opacity: 1;
}

.top-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
    z-index: 1;
}

.top-slider__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 20px;
}

.top-slider__tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-slider__content h1 {
    color: white;
    font-size: 54px;
    margin-bottom: 14px;
}

.top-slider__content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
}

.top-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.top-slider__arrow:hover {
    background: rgba(255,255,255,0.32);
}

.top-slider__arrow--prev {
    left: 24px;
}

.top-slider__arrow--next {
    right: 24px;
}

.top-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.top-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.top-slider__dot.is-active {
    background: white;
}

/* HERO */
.hero {
    height: 85vh;
    background: url('/images/Image01.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::after {
        content: '';
        position: absolute;
        background: rgba(0,0,0,0.6);
        inset: 0;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
}

/* BUTTON */

.hero-buttons {
    margin-top: 20px;
}

/* BUTTON */
.btn {
    background: gold;
    padding: 12px 20px;
    border-radius: 5px;
    color: black !important;
    text-decoration: none;
}

/* SECTION */
section {
    padding: 80px 20px;
    text-align: center;
}

/* CARDS */
.feature-card, .room-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* GRID */
.feature-grid, .room-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* IMAGE FIX */
.room-card img, .gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 10px;
}

/* BOOKING FORM */
.booking-section {
    background: linear-gradient(135deg,#000,#333);
    color: white;
    padding: 80px 20px;
}

.booking-form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .booking-form input,
    .booking-form select {
        padding: 12px;
        border-radius: 5px;
        border: none;
    }

    .booking-form button {
        background: gold;
        padding: 12px;
        border: none;
    }

/* SUCCESS PAGE */
.success {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-box {
    background: white;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}
.booking-form input:focus {
    outline: none;
    border: 2px solid gold;
}
/* MODERN FORM GRID */
.modern-form {
    max-width: 700px;
    margin: auto;
}

/* GRID LAYOUT */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* DATE INPUT GROUP */
.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-input-group label {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

/* FULL WIDTH TEXTAREA */
.booking-form textarea {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 100%;
    min-height: 100px;
    resize: none;
}

/* INPUT STYLE */
.booking-form input,
.booking-form select {
    padding: 12px;
    border-radius: 8px;
    border: none;
}

/* BUTTON */
.booking-form button {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    background: gold;
    border: none;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .top-slider {
        height: 60vh;
        min-height: 360px;
    }

    .top-slider__content h1 {
        font-size: 34px;
    }

    .top-slider__content p {
        font-size: 15px;
    }

    .top-slider__arrow {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .top-slider__arrow--prev {
        left: 12px;
    }

    .top-slider__arrow--next {
        right: 12px;
    }

    .hero {
        height: 50vh;
    }
}
/* ADMIN PANEL */
.admin-section {
    padding: 60px 20px;
}

    .admin-section h1 {
        text-align: center;
        margin-bottom: 30px;
    }

/* TABLE */
.table-container {
    overflow-x: auto;
}

.booking-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .booking-table th,
    .booking-table td {
        padding: 12px;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }

    .booking-table th {
        background: black;
        color: white;
    }

    .booking-table tr:hover {
        background: #f5f5f5;
    }
/* FILTER FORM */
.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

    .filter-form input,
    .filter-form select {
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .filter-form button {
        background: gold;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
    }
/* EXPLORE SECTION */
.explore {
    background: #ffffff;
}

    .explore h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.explore-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

    .explore-card:hover {
        transform: translateY(-8px);
    }

    /* IMAGE FIX */
    .explore-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

/* TEXT */
.explore-info {
    padding: 15px;
}

    .explore-info h3 {
        margin-bottom: 8px;
    }
.explore-card.highlight {
    border: 2px solid gold;
    transform: scale(1.03);
}

    .explore-card.highlight h3 {
        color: gold;
    }
/* REQUIRED for badge positioning */
.explore-card {
    position: relative;
}

/* BADGE STYLE */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: gold;
    color: black;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: bold;
}
/* PREMIUM AARTI SECTION */
.aarti-premium {
    position: relative;
    height: 80vh;
    background: url('/nearby/aarti.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DARK OVERLAY */
.aarti-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* GLASS CARD */
.aarti-box {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    max-width: 600px;
}

    /* TEXT */
    .aarti-box h2 {
        font-size: 32px;
        margin: 15px 0;
    }

.aarti-sub {
    font-size: 14px;
    opacity: 0.9;
}

/* TIMINGS */
.aarti-timings {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.time-card {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    width: 140px;
}

/* FEATURES */
.aarti-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* BADGE */
.badge {
    background: gold;
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .aarti-box {
        padding: 25px;
    }

    .aarti-timings {
        flex-direction: column;
    }
    .gallery-big {
        height: 250px;
    }

    .gallery-small {
        height: 150px;
    }
}
.highlights {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: #111;
    color: white;
    padding: 20px 15px;
    flex-wrap: wrap;
}

/* Default (desktop) */
.highlight-box {
    background: #222;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 768px) {
    .highlight-box {
        flex: 1 1 calc(50% - 10px); /* 2 per row */
        text-align: center;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .highlights {
        gap: 10px;
    }

    .highlight-box {
        flex: 1 1 100%; /* 1 per row */
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }
}
.about.modern {
    background: #fff;
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-top: 5%;
    background: #ffffff;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.features.modern .feature-card {
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

    .features.modern .feature-card:hover {
        transform: translateY(-10px);
    }

.rooms.modern .room-card {
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s;
}

    .rooms.modern .room-card:hover img {
        transform: scale(1.1);
    }

.room-card img {
    transition: 0.3s;
    width: 100%;
    height: 230px;
    object-fit: cover;
}
/* GALLERY */
.gallery.modern {
    background: #f9f9f9;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    padding: 20px;
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    /* IMAGE FIX */
    .gallery-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: 0.4s;
    }

    /* HOVER EFFECT */
    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* OVERLAY */
    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: 0.3s;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }
/* CONTACT */
.contact.modern {
    background: #111;
    color: white;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}

/* LEFT */
.contact-info {
    max-width: 300px;
    text-align: left;
}

/* RIGHT */
.contact-form {
    max-width: 400px;
    width: 100%;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px;
        border-radius: 5px;
        border: none;
    }

    .contact-form button {
        width: 100%;
        padding: 12px;
        background: gold;
        border: none;
    }

/* MOBILE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
.gallery-premium {
    padding: 80px 20px;
    background: #f8f5f0;
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.gallery-layout {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* BIG IMAGE */
.gallery-big {
    flex: 2;
    position: relative;
}


.gallery-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #FFD700;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), -1px -1px 0px rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
}

/* SIDE */
.gallery-side {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


.gallery-small p {
    text-align: center;
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-layout {
        flex-direction: column;
    }
}
.contact-premium {
    position: relative;
    padding: 100px 20px;
    background: url('/images/Image02.jpeg') center/cover;
    color: white;
    text-align: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.contact-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

    .contact-box h2 {
        font-size: 38px;
        color: #f5d27a; /* warm gold (matches aarti lighting) */
        margin-bottom: 10px;
    }
.contact-sub {
    margin: 20px 0;
    opacity: 0.9;
    color: #e0e0e0; /* soft white (not harsh) */
    font-size: 15px;
}
.contact-box h2,
.contact-sub {
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
/* CARDS */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    backdrop-filter: blur(5px);
}
/* BIG IMAGE */
.gallery-big {
    height: 420px;   /* FIX HEIGHT */
}

.gallery-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* KEY FIX */
    border-radius: 12px;
}

/* SMALL IMAGES */
.gallery-small {
    height: 170px;   /* FIX HEIGHT */
}

.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* KEY FIX */
    border-radius: 10px;
}

.bg-light {
    background: #f8f5f0;
}
h2 {
    color: #222;
}
.about-hero {
    position: relative;
    height: 60vh;
    background: url('/images/Image03.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .about-hero .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

    .about-hero .content {
        position: relative;
        text-align: center;
    }

/* HERO */
.contact-hero {
    position: relative;
    height: 50vh;
    background: url('/images/Image04.jpeg') center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-hero .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

/* MAIN */
.contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-left {
    max-width: 400px;
}

.contact-right {
    max-width: 400px;
    width: 100%;
}

    /* FORM */
    .contact-right input,
    .contact-right textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 10px;
    }

    .contact-right button {
        width: 100%;
        padding: 12px;
        background: #25D366; /* WhatsApp green */
        color: white;
        border: none;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
    }

        .contact-right button:hover {
            background: #1ebe5d;
        }

/* LOGIN PAGE */
.login-body {
    margin: 0;
    height: 100vh;
    background: url('/images/Image05.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* DARK OVERLAY EFFECT */
    .login-body::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
    }

/* CONTAINER */
.login-container {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    text-align: center;
    color: white;
    width: 300px;
}

    /* TEXT */
    .login-container h2 {
        margin-bottom: 5px;
    }

    .login-container .sub {
        font-size: 12px;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    /* INPUTS */
    .login-container input {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: none;
        border-radius: 5px;
    }

    /* BUTTON */
    .login-container button {
        width: 100%;
        padding: 10px;
        background: gold;
        border: none;
        font-weight: bold;
    }

/* ERROR */
.error {
    color: red;
    margin-top: 10px;
}

.navbar a[href="/Admin/Bookings"] {
    color: gold;
    font-weight: bold;
}

/* ROOMS GRID */
.rooms-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 boxes */
    gap: 25px;
    padding: 50px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .rooms-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rooms-page {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
}

    .room-card:hover {
        transform: translateY(-8px);
    }

    /* IMAGE FIX */
    .room-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        cursor: pointer;
    }

    /* TEXT */
    .room-card h3 {
        margin: 15px 0 5px;
    }

    .room-card p {
        font-size: 14px;
        color: gray;
        padding: 0 10px;
    }

/* BUTTON CONTAINER */
.room-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}

    /* SECONDARY BUTTON */
    .btn.secondary {
        background: transparent;
        border: 1px solid gold;
        color: gold;
    }

        /* HOVER EFFECT */
        .btn.secondary:hover {
            background: gold;
            color: black;
        }



/* PHONE BAR */
.phone-bar {
    position: absolute;
    width: 100%;
    background: rgba(0,0,0,0.85);
    color: #f5d27a;
    padding: 10px 0;
    z-index: 5;
}

    /* POSITION */
    .phone-bar.top {
        top: 0;
    }

    .phone-bar.bottom {
        bottom: 0;
    }

/* TRACK */
.phone-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite; /* 🔥 slower */
}

/* CONTENT BLOCK */
.phone-content {
    display: flex;
    align-items: center;
    gap: 25px; /* 🔥 perfect spacing */
    padding: 0 40px;
    white-space: nowrap;
}

/* LINKS */
.phone-track a {
    color: #f5d27a;
    text-decoration: none;
    font-weight: 500;
}

.phone-track span {
    opacity: 0.7;
}

/* SMOOTH LOOP ANIMATION */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.phone-bar:hover .phone-track {
    animation-play-state: paused;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

.mobile-menu-backdrop {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    .navbar {
        flex-wrap: nowrap;
        position: sticky;
    }

        .navbar ul {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 15px;
            width: min(280px, calc(100vw - 30px));
            flex-direction: column;
            gap: 0;
            background: rgba(0,0,0,0.96);
            padding: 12px 0;
            margin: 0;
            border-radius: 12px;
            box-shadow: 0 16px 40px rgba(0,0,0,0.35);
            z-index: 1002;
        }

            .navbar ul.active {
                display: flex;
            }

            .navbar ul li {
                text-align: center;
                padding: 0;
            }

            .navbar ul li a {
                display: block;
                padding: 14px 20px;
            }

    .mobile-menu-backdrop {
        display: none;
    }

        .mobile-menu-backdrop.active {
            display: block;
            position: fixed;
            inset: 0;
            background: transparent;
            z-index: 1001;
        }
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 12px 14px;
    border-radius: 50%;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
    }

/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #333;
    border-top: 5px solid gold;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
}

/* WRAPPER (CENTER EVERYTHING) */
.modal-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* IMAGE FIX */
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

/* CONTROLS FIXED */
.controls {
    position: absolute;
    bottom: 30px; /* 🔥 ALWAYS SAME POSITION */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

    /* BUTTON STYLE */
    .controls button {
        background: gold;
        border: none;
        padding: 10px 15px;
        font-size: 18px;
        border-radius: 5px;
        cursor: pointer;
    }
