/* =========================================================
   VELAN VIEW HOTEL
   PREMIUM ELEGANT HOTEL DESIGN
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #d6ad55;
    --gold-light: #e8c878;
    --gold-dark: #a77b2c;

    --dark: #15120e;
    --dark-soft: #211c15;
    --cream: #f7f3eb;
    --white: #ffffff;
    --text: #29251f;
    --muted: #777168;

    --border: rgba(214, 173, 85, 0.25);

    --container: 1240px;

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 18px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(90%, var(--container));
    margin: auto;
}


/* =========================================================
   LOADER
   ========================================================= */

#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #120f0b;
    color: white;
}

.loader-logo {
    text-align: center;
}

.loader-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.loader-logo h2 {
    color: var(--gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    letter-spacing: 4px;
}

.loader-logo h3 {
    font-size: 11px;
    letter-spacing: 2px;
    margin: 10px 0;
    color: #d8d1c5;
}

.loader-logo p {
    color: #aaa;
    font-size: 13px;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.78),
        rgba(0,0,0,.25),
        transparent
    );

    transition: .35s ease;
}

.navbar {
    width: min(92%, 1380px);
    height: 100px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo h2 {
    color: white;
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 600;
    letter-spacing: 3px;
}

.logo {
    position: relative;
}


.header-address {
    position: absolute;
    top: 76px;
    left: 84px;
    width: 430px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .35px;
}

.room-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-size: 17px;
    font-weight: 500;
}

.offer-price {
    color: var(--gold-dark);
    font-size: 21px;
    font-weight: 700;
}
.logo h4 {
    position: absolute;
    margin-top: 47px;
    margin-left: 65px;

    color: var(--gold-light);

    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.8px;
    white-space: nowrap;
}

/* Navigation */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;

    list-style: none;
}

.nav-links a {
    position: relative;

    color: rgba(255,255,255,.9);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: .7px;

    transition: .3s;
}

.nav-links a:not(.book-btn)::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transform: translateX(-50%);
    transition: .3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Book button */

.book-btn {
    display: inline-flex;

    padding: 13px 25px;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #17130d !important;

    border-radius: 5px;

    font-weight: 600 !important;

    box-shadow: 0 8px 25px rgba(214,173,85,.25);

    transition: .3s;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214,173,85,.4);
}

/* Mobile menu */

.mobile-menu {
    display: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    height: 94vh;
    min-height: 700px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 7, 5, 0.82) 0%,
            rgba(8, 7, 5, 0.58) 35%,
            rgba(8, 7, 5, 0.18) 75%,
            rgba(8, 7, 5, 0.10) 100%
        ),
        url("../images/hero.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* Dark cinematic overlay */

.hero .overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,8,5,.88) 0%,
            rgba(10,8,5,.68) 32%,
            rgba(10,8,5,.18) 70%,
            rgba(10,8,5,.20) 100%
        ),
        linear-gradient(
            to top,
            rgba(8,6,4,.7),
            transparent 35%
        );
}

/* subtle gold glow */

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    bottom: -250px;

    background: rgba(214,173,85,.13);

    filter: blur(100px);

    border-radius: 50%;
}


/* Hero content */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(90%, 1240px);

    margin: auto;

    padding-top: 80px;
}

.hero-content h4 {
    display: flex;
    align-items: center;
    gap: 15px;

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.hero-content h4::after {
    content: "";

    width: 60px;
    height: 1px;

    background: var(--gold);
}

.hero-content h1 {
    max-width: 700px;

    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(60px, 7vw, 105px);

    font-weight: 600;

    line-height: .9;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.hero-content h3 {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(27px, 3vw, 43px);

    font-weight: 600;

    line-height: 1.1;

    margin-bottom: 20px;
}

.hero-content p {
    max-width: 540px;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 30px;
}


/* Hero buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .5px;

    transition: .3s;
}

.primary-btn {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #17130d;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(214,173,85,.35);
}

.secondary-btn {
    color: white;

    border: 1px solid rgba(255,255,255,.45);

    background: rgba(0,0,0,.15);

    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--gold-light);
    color: var(--gold-light);
}


/* =========================================================
   BOOKING WIDGET
   ========================================================= */

.booking-widget {
    position: relative;
    z-index: 10;

    margin-top: -65px;
}

.booking-card {
    width: min(92%, 1150px);

    margin: auto;

    padding: 30px 34px;

    background: rgba(29,24,17,.94);

    border: 1px solid rgba(214,173,85,.25);

    border-radius: 15px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);

    backdrop-filter: blur(20px);
}

.booking-card h2 {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 31px;
    font-weight: 600;

    margin-bottom: 22px;
}

.booking-card form {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1fr
        auto;

    gap: 12px;

    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: #d8d0c3;

    font-size: 11px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;

    height: 48px;

    padding: 0 13px;

    color: white;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 5px;

    outline: none;

    font-size: 13px;

    transition: .25s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,.1);
}

.form-group select option {
    color: #222;
}

.booking-card button {
    height: 48px;

    padding: 0 24px;

    border: none;

    border-radius: 5px;

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #17130d;

    font-weight: 600;

    font-size: 12px;

    letter-spacing: .5px;

    cursor: pointer;

    white-space: nowrap;

    transition: .3s;
}

.booking-card button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section:not(.hero):not(.booking-widget) {
    padding: 100px 0;
}

.section-title {
    text-align: center;

    margin-bottom: 55px;
}

.section-title span,
.section-tag {
    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-title h2 {
    margin-top: 8px;

    color: var(--text);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1;

    font-weight: 600;
}

.section-title h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin: 18px auto 0;

    background: var(--gold);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    background: var(--cream);
}

.about .container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";

    position: absolute;

    inset: -14px 14px 14px -14px;

    border: 1px solid var(--gold);

    border-radius: 18px;

    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: var(--shadow);
}

.about-content h2 {
    margin: 13px 0 22px;

    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    line-height: 1;

    font-weight: 600;

    color: var(--text);
}

.about-content p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 16px;
}

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px;

    background: white;

    border-radius: 8px;

    border: 1px solid #eee6d8;

    font-size: 12px;
}

.feature i {
    color: var(--gold-dark);

    font-size: 18px;
}


/* =========================================================
   ROOMS
   ========================================================= */

#rooms {
    background: #fff;
}

.room-grid {
    width: min(90%, 1240px);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.room-card {
    overflow: hidden;

    background: white;

    border: 1px solid #eee7da;

    border-radius: 15px;

    box-shadow: 0 10px 35px rgba(0,0,0,.07);

    transition: .35s;
}

.room-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.13);
}

.room-card img {
    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: .5s;
}

.room-card:hover img {
    transform: scale(1.04);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    color: var(--text);

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    font-weight: 600;

    margin-bottom: 8px;
}

.room-info p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.room-info h4 {
    color: var(--gold-dark);

    font-size: 21px;

    margin-bottom: 18px;
}

.room-info .primary-btn {
    min-height: 44px;
    padding: 0 20px;
}


/* =========================================================
   AMENITIES
   ========================================================= */

.amenities {
    background: var(--dark);
    color: white;
}

.amenities .section-title span {
    color: var(--gold-light);
}

.amenities .section-title h2 {
    color: white;
}

.amenity-grid {
    width: min(90%, 1240px);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.amenity-card {
    padding: 35px 22px;

    text-align: center;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(214,173,85,.18);

    border-radius: 14px;

    transition: .3s;
}

.amenity-card:hover {
    background: rgba(214,173,85,.08);

    transform: translateY(-5px);
}

.amenity-card i {
    color: var(--gold-light);

    font-size: 30px;

    margin-bottom: 18px;
}

.amenity-card h3 {
    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    margin-bottom: 8px;
}

.amenity-card p {
    color: #aaa;

    font-size: 12px;
}


/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    background: var(--cream);
}

.why-grid {
    width: min(90%, 1100px);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    padding: 30px 20px;

    text-align: center;

    background: white;

    border-radius: 14px;

    border: 1px solid #eee7da;

    transition: .3s;
}

.why-card:hover {
    transform: translateY(-5px);

    border-color: var(--gold);
}

.why-card i {
    color: var(--gold-dark);

    font-size: 28px;

    margin-bottom: 16px;
}

.why-card h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    margin-bottom: 7px;
}

.why-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
    background: white;
}

.testimonial-container {
    width: min(90%, 1100px);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.testimonial {
    padding: 30px;

    border-radius: 14px;

    background: var(--cream);

    border: 1px solid #eee4d3;

    text-align: center;
}

.testimonial:first-letter {
    color: var(--gold);
}

.testimonial p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin: 15px 0;
}

.testimonial h4 {
    color: var(--text);

    font-size: 13px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    background: var(--cream);
}

.gallery-grid {
    width: min(92%, 1240px);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.gallery-item {
    height: 240px;

    overflow: hidden;

    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    background: white;
}

.contact-wrapper {
    width: min(90%, 1200px);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}

.contact-info h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 43px;

    margin-bottom: 18px;
}

.contact-info p {
    color: var(--muted);

    line-height: 1.9;

    margin-bottom: 15px;
}

.contact-info i {
    color: var(--gold-dark);

    margin-right: 9px;
}

.map iframe {
    width: 100%;

    height: 430px;

    border: none;

    border-radius: 16px;

    box-shadow: var(--shadow);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #12100d;

    color: white;

    padding: 70px 0 20px;
}

.footer-container {
    width: min(90%, 1200px);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 50px;
}

.footer-about h2 {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 36px;

    margin-bottom: 12px;
}

.footer-about p {
    color: #aaa;

    line-height: 1.8;

    font-size: 13px;
}

.footer-links h3,
.footer-contact h3 {
    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    margin-bottom: 20px;
}

.footer-links a {
    display: block;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 11px;

    transition: .3s;
}

.footer-links a:hover {
    color: var(--gold-light);

    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;

    font-size: 13px;

    margin-bottom: 10px;
}

footer hr {
    width: 90%;

    margin: 50px auto 25px;

    border: none;

    border-top: 1px solid rgba(255,255,255,.1);
}

footer .copyright {
    text-align: center;

    color: #777;

    font-size: 11px;
}


/* =========================================================
   WHATSAPP + CALL
   ========================================================= */

.whatsapp-float,
.call-float {
    position: fixed;

    right: 25px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    z-index: 999;

    transition: .3s;
}

.whatsapp-float {
    bottom: 95px;

    background: #25D366;
}

.call-float {
    bottom: 25px;

    background: var(--gold-dark);
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

#topBtn {
    position: fixed;

    left: 25px;
    bottom: 25px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--gold);

    color: #18130c;

    cursor: pointer;

    z-index: 998;

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}


/* =========================================================
   BOOKING PAGE
   ========================================================= */

.booking-page {
    min-height: 100vh;

    padding: 145px 0 90px;

    background:
        linear-gradient(
            rgba(247,243,235,.96),
            rgba(247,243,235,.96)
        );
}

.booking-title {
    text-align: center;

    margin-bottom: 45px;
}

.booking-title h1 {
    color: var(--text);

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;

    font-weight: 600;
}

.booking-title p {
    color: var(--muted);

    font-size: 14px;

    margin-top: 8px;
}

.booking-wrapper {
    width: min(90%, 1150px);

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr .8fr;

    gap: 30px;

    align-items: start;
}

.booking-form,
.booking-info {
    background: white;

    border-radius: 16px;

    border: 1px solid #eee5d5;

    box-shadow: var(--shadow);
}

.booking-form {
    padding: 35px;
}

.booking-form > h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    margin-bottom: 25px;
}

.input-box {
    display: flex;

    flex-direction: column;

    margin-bottom: 18px;
}

.input-box label {
    color: #4a443b;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 7px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #ded8ce;

    border-radius: 7px;

    outline: none;

    color: #333;

    background: #fff;

    font-size: 13px;

    transition: .25s;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(214,173,85,.12);
}

.booking-summary {
    padding: 23px;

    margin-top: 20px;

    background: var(--cream);

    border-radius: 12px;
}

.booking-summary h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    margin-bottom: 15px;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    padding: 9px 0;

    font-size: 13px;
}

.summary-row.total {
    font-size: 18px;

    font-weight: 700;

    border-top: 1px solid #ddd;

    margin-top: 10px;

    padding-top: 15px;
}

.summary-row.advance {
    color: var(--gold-dark);

    font-weight: 600;
}

.booking-info {
    overflow: hidden;

    position: sticky;

    top: 110px;
}

.booking-info > img {
    width: 100%;

    height: 270px;

    object-fit: cover;
}

.hotel-details {
    padding: 25px;
}

.hotel-details h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    margin-bottom: 18px;
}

.hotel-details p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 10px;
}

.hotel-details i {
    color: var(--gold-dark);

    margin-right: 8px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1100px) {

    .navbar {
        height: 85px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        min-height: 720px;
    }

    .booking-card form {
        grid-template-columns: 1fr 1fr;
    }

    .booking-card button {
        grid-column: span 2;
    }

    .room-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .amenity-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


@media(max-width:900px) {

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .logo h4 {
        display: none;
    }

    .hero {
        height: 820px;

        background-position: 62% center;
    }

    .hero .overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10,8,5,.9),
                rgba(10,8,5,.55)
            );
    }

    .hero-content {
        padding-top: 100px;
    }

    .about .container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image img {
        height: 450px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info {
        position: relative;

        top: auto;
    }
}


@media(max-width:768px) {

    section:not(.hero):not(.booking-widget) {
        padding: 75px 0;
    }

    .hero {
        min-height: 760px;
        height: 88vh;

        background-position: 60% center;
    }

    .hero-content {
        width: 88%;

        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 58px;

        letter-spacing: -1px;
    }

    .hero-content h3 {
        font-size: 30px;
    }

    .hero-content p {
        max-width: 460px;

        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: row;

        flex-wrap: wrap;
    }

    .primary-btn,
    .secondary-btn {
        min-width: 190px;
    }

    .booking-widget {
        margin-top: -45px;
    }

    .booking-card {
        padding: 25px;
    }

    .booking-card form {
        grid-template-columns: 1fr;
    }

    .booking-card button {
        grid-column: auto;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .amenity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content h2 {
        font-size: 43px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-title h1 {
        font-size: 45px;
    }
}


@media(max-width:576px) {

    .navbar {
        width: 90%;
        height: 75px;
    }

    .logo img {
        width: 43px;
        height: 43px;
    }

    .logo h2 {
        font-size: 24px;
    }

    .hero {
        min-height: 730px;

        background-position: 62% center;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-content h4 {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 48px;

        line-height: .95;
    }

    .hero-content h3 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 13px;

        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .booking-card {
        width: 92%;

        padding: 22px;
    }

    .booking-card h2 {
        font-size: 27px;
    }

    .about-image img {
        height: 330px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .amenity-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 260px;
    }

    .contact-info h3 {
        font-size: 36px;
    }

    .booking-title h1 {
        font-size: 40px;
    }

    .booking-form {
        padding: 22px;
    }

    .whatsapp-float,
    .call-float {
        width: 52px;
        height: 52px;

        right: 17px;

        font-size: 22px;
    }

    .whatsapp-float {
        bottom: 85px;
    }

    .call-float {
        bottom: 20px;
    }
}


@media(max-width:400px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h3 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero {
        min-height: 700px;
    }

    .booking-title h1 {
        font-size: 35px;
    }
}


/* =========================================================
   PREMIUM FLOATING TEMPLE DETAILS BUTTON
   ========================================================= */

.floating-temple-btn {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 235px;
    padding: 12px 15px 12px 12px;

    text-decoration: none;

    background: rgba(20, 17, 12, 0.94);
    color: #fff;

    border: 1px solid rgba(224, 190, 105, 0.65);
    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.28),
        0 0 0 1px rgba(255,255,255,.03) inset;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: transform .3s ease, box-shadow .3s ease,
                border-color .3s ease;
}

.floating-temple-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 208, 128, .95);

    box-shadow:
        0 18px 42px rgba(0,0,0,.35),
        0 0 24px rgba(205, 163, 72, .18);
}

.temple-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(135deg, #e3c36d, #ae7d29);
    color: #17130d;

    font-size: 19px;

    box-shadow: 0 5px 15px rgba(189, 143, 48, .22);
}

.temple-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.temple-btn-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1;
    color: #f3d98c;
    letter-spacing: .2px;
}

.temple-btn-text small {
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    color: rgba(255,255,255,.68);
    letter-spacing: .55px;
    text-transform: uppercase;
}

.temple-arrow {
    color: #d9b75e;
    font-size: 12px;
}


/* =========================================================
   BIGGER PREMIUM TOP-LEFT LOGO
   ========================================================= */

.logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.logo h2 {
    font-size: 36px;
    letter-spacing: 3px;
}


/* Keep the logo balanced if subtitle is positioned below it */

.logo h4 {
    margin-top: 54px;
    margin-left: 86px;
    font-size: 8px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .floating-temple-btn {
        right: 12px;
        bottom: 16px;

        min-width: 0;
        width: calc(100% - 24px);

        padding: 10px 12px;
    }

    .temple-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 17px;
    }

    .temple-btn-text strong {
        font-size: 18px;
    }

    .temple-btn-text small {
        font-size: 7px;
    }

    .logo img {
        width: 58px;
        height: 58px;
    }

    .logo h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .logo h4 {
        margin-top: 45px;
        margin-left: 70px;
        font-size: 7px;
    }
}
