/* =====================
   Google Font
===================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --accent: #f59e0b;
    --bg-soft: #f4f5fb;
    --text-main: #111827;
}

/* GLOBAL RESET */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    padding-top: 105px; /* space for fixed navbar */
    line-height: 1.7;
}

/* =====================
   NAVBAR
===================== */
.custom-navbar {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: all 0.3s ease;
    min-height: 95px;
}

.navbar-brand {
    align-items: center !important;
    display: flex !important;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0;
}

.brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
    gap: 2px;
    margin-left: 0;
}

.custom-navbar.scrolled {
    background: #020617;
    padding: 8px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    min-height: 85px;
}

.hotel-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

.hindi-tagline {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #fbbf24 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    margin-top: 3px;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.custom-navbar .nav-link {
    color: #e5e7eb !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    padding: 0.4rem 0.8rem !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--accent) !important;
}

.nav-contact, .nav-contact-btn {
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 999px;
}

.nav-contact-btn:hover {
    background: #facc15 !important;
    color: #111827 !important;
}

@media (max-width: 991px) {
    body {
        padding-top: 85px;
    }

    .custom-navbar {
        background: #020617 !important;
        min-height: 80px;
        padding: 8px 0;
    }

    .navbar-nav {
        padding: 10px 0;
        gap: 4px;
    }

    .brand-text {
        font-size: 1.15rem;
    }

    .hindi-tagline {
        font-size: 0.75rem !important;
    }

    .hotel-logo {
        height: 70px;
    }

    .navbar-brand {
        gap: 10px;
    }

    .nav-contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================
   HERO (HOME)
===================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(
            rgba(15, 23, 42, 0.70),
            rgba(15, 23, 42, 0.88)
        ),
        url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1600")
        center/cover no-repeat;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    padding: 2.2rem;
    backdrop-filter: blur(6px);
}

.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.hero-heading {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.hero-subtitle {
    max-width: 540px;
}

/* floating price card */
.hero-floating-card {
    position: absolute;
    right: 6%;
    bottom: 8%;
    background: #ffffff;
    color: var(--text-main);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    display: none;
}

@media (min-width: 992px) {
    .hero-floating-card {
        display: inline-block;
    }
}

/* =====================
   PAGE HEADER (INNER PAGES)
===================== */
.page-header {
    min-height: 280px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.84), rgba(15,118,110,0.85));
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* =====================
   SECTIONS
===================== */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-main);
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =====================
   CARDS + ELEMENTS
===================== */
.info-card,
.room-card,
.amenity-card,
.testimonial-card,
.contact-card,
.booking-form-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.info-card:hover,
.room-card:hover,
.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.15);
}

.room-card img {
    height: 230px;
    object-fit: cover;
}

.price-tag {
    color: var(--primary-dark);
    font-weight: 600;
}

.amenity-icon {
    font-size: 2.4rem;
    margin-bottom: 0.7rem;
    color: var(--primary);
}

/* testimonial */
.testimonial-card {
    border-left: 4px solid var(--accent);
    background: #ffffff;
}

/* Testimonials Carousel */
.testimonials-wrapper {
    position: relative;
    padding: 0 70px;
    margin: 20px 0;
}

.testimonials-container {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
}

.testimonials-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 10px 0;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
    min-width: 320px;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-nav-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.6);
    opacity: 1 !important;
    border-color: #ffffff !important;
}

.testimonial-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-prev {
    left: 5px;
}

.testimonial-next {
    right: 5px;
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-item {
        max-width: 100% !important;
    }
}

/* Culinary Images Carousel */
.culinary-images-wrapper {
    position: relative;
    padding: 0 50px;
}

.culinary-images-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.culinary-images-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.culinary-images-scroll {
    display: flex;
    gap: 1rem;
    padding: 10px 0;
}

.culinary-image-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
}

.culinary-image-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.culinary-image-item:hover img {
    transform: scale(1.02);
}

.culinary-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.culinary-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.4);
}

.culinary-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.culinary-prev {
    left: 0;
}

.culinary-next {
    right: 0;
}

@media (max-width: 768px) {
    .culinary-images-wrapper {
        padding: 0 40px;
    }
    
    .culinary-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .culinary-image-item {
        max-width: 100%;
    }
    
    .culinary-image-item img {
        height: 280px;
    }
}

.hindi-tagline {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hindi-tagline {
        font-size: 0.65rem !important;
    }
}

/* gallery */
.gallery-img {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15) !important;
}

/* booking & contact */
.booking-section {
    background: var(--bg-soft);
}

.booking-form-card,
.contact-card {
    padding: 1.8rem;
}

/* BUTTONS */
.btn-primary-custom {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-custom {
    border-radius: 999px;
    border-color: #e5e7eb;
    color: #e5e7eb;
    padding: 0.6rem 1.7rem;
}

.btn-outline-custom:hover {
    background: #f9fafb;
    border-color: #f9fafb;
    color: #111827;
}

.btn-outline-primary-custom {
    border-radius: 999px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.7rem;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

/* =====================
   FOOTER
===================== */
.footer-main {
    background: #020617;
    color: #9ca3af;
    margin-top: 40px;
}

.footer-title {
    color: #e5e7eb;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1rem;
}

.footer-social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111827;
}

.footer-newsletter input::placeholder {
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 10px 0;
    background: #020617;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* =====================
   ANIMATIONS
===================== */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-out;
}

.fade-section.show {
    opacity: 1;
    transform: translateY(0);
}
.hotel-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .hotel-logo {
        height: 65px;
    }
}





