/* Resort Marigold Tajpur - Sky Blue Theme Master Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --marigold-green: #0369a1; /* Sky Blue Primary */
    --marigold-green-hover: #075985; /* Deep Ocean Sky Blue */
    --marigold-gold: #f59e0b;
    --marigold-gold-dark: #d97706;
    --marigold-text-dark: #0c4a6e;
    --marigold-text-muted: #475569;
    --marigold-bg-light: #ffffff;
    --radius-card: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--marigold-green);
    font-weight: 700;
}

/* Header Navbar */
.top-header {
    background: #ffffff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--marigold-green);
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #0369a1;
    margin-top: 2px;
}

.nav-links-custom {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-custom a {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links-custom a:hover,
.nav-links-custom a.active {
    color: var(--marigold-green);
    border-bottom-color: #38bdf8;
}

.btn-book-header {
    background-color: var(--marigold-green);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-book-header:hover {
    background-color: var(--marigold-green-hover);
}

.header-phone {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0369a1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

/* Inner Page Sky Blue Hero Banner */
.inner-page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
}

.inner-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 89, 133, 0.88) 0%, rgba(12, 74, 110, 0.92) 100%);
    z-index: 1;
}

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

.inner-page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.inner-page-breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.inner-page-breadcrumbs a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

/* Exact Hero Section Layout */
.hero-wrapper {
    position: relative;
    background: #ffffff;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ffffff 40%, rgba(255,255,255,0.95) 48%, rgba(255,255,255,0.2) 68%, transparent 100%);
    z-index: 2;
}

.hero-left-content {
    position: relative;
    z-index: 3;
    padding: 40px 0 80px 0;
    max-width: 500px;
}

.hero-main-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--marigold-green);
    line-height: 1.12;
    margin-bottom: 16px;
}

.hero-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Floating Search Widget */
.hero-widget-container {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 60px;
}

.exact-widget-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0f2fe;
    padding: 16px 24px;
}

.widget-col {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    border-right: 1px solid #e0f2fe;
}

.widget-col:last-child {
    border-right: none;
}

.widget-icon {
    font-size: 1.4rem;
    color: #0284c7;
}

.widget-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    margin: 0;
}

.widget-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--marigold-green);
    margin: 0;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
    width: 100%;
}

.btn-check-avail {
    background-color: var(--marigold-green);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 6px;
    border: none;
    width: 100%;
    transition: background 0.2s ease;
}

.btn-check-avail:hover {
    background-color: var(--marigold-green-hover);
}

/* Highlights Section */
.highlights-header-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.highlights-header-line h2 {
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
    color: #0369a1;
}

.highlights-line {
    flex-grow: 1;
    height: 1px;
    background: #bae6fd;
}

.highlight-exact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-exact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 1.4rem;
}

.highlight-exact-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--marigold-green);
    margin: 0 0 2px 0;
}

.highlight-exact-sub {
    font-size: 0.8rem;
    color: var(--marigold-text-muted);
    margin: 0;
}

/* Section Header Bar */
.section-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-dark-green {
    background-color: var(--marigold-green);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-dark-green:hover {
    background-color: var(--marigold-green-hover);
}

/* Room Cards Layout */
.exact-room-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0f2fe;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exact-room-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.exact-room-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.exact-room-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--marigold-green);
    margin-bottom: 6px;
}

.exact-room-desc {
    font-size: 0.85rem;
    color: var(--marigold-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.exact-room-specs {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: #0369a1;
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px solid #f0f9ff;
}

.btn-view-details {
    background: transparent;
    border: 1px solid #bae6fd;
    color: #0284c7;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background: var(--marigold-green);
    color: #ffffff;
    border-color: var(--marigold-green);
}

/* GALLERY PAGE STYLING (FIXED & LUXURY PILL BUTTONS + UNIFORM MASONRY GRID) */
.gallery-filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: #ffffff;
    border: 1px solid #bae6fd;
    color: #075985;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    outline: none;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #0369a1;
    color: #ffffff !important;
    border-color: #0369a1;
    box-shadow: 0 4px 15px rgba(3, 105, 161, 0.25);
}

/* Responsive Uniform Masonry Grid */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    background: #e2e8f0;
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-card-item:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 74, 110, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #ffffff;
}

.gallery-card-item:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.gallery-card-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: #f59e0b;
    color: #0c4a6e;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 4px;
}

/* Premium Facilities Banner */
.premium-facilities-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 70px 0;
    margin: 60px 0;
}

.premium-facilities-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 89, 133, 0.88) 0%, rgba(12, 74, 110, 0.92) 100%);
}

.premium-facilities-content {
    position: relative;
    z-index: 2;
}

.facility-col-exact {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.facility-col-exact:last-child {
    border-right: none;
}

.facility-icon-exact {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: 12px;
}

.facility-title-exact {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.facility-sub-exact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Special Offer Banner Card */
.special-offer-card-exact {
    background: linear-gradient(135deg, #075985 0%, #0369a1 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-tag-gold {
    color: #facc15;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.offer-title-exact {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-desc-exact {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-offer-gold {
    background-color: #f59e0b;
    color: #0c4a6e !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.btn-offer-gold:hover {
    background-color: #d97706;
    color: #ffffff !important;
}

.offer-footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
}

/* Gallery Grid 6 Thumbnails */
.gallery-grid-exact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid-exact img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid-exact img:hover {
    transform: scale(1.04);
}

/* Footer Sky Blue Theme */
.footer-exact {
    background: #0c4a6e;
    color: rgba(255, 255, 255, 0.85);
    padding: 70px 0 25px 0;
}

.footer-exact h5 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-exact-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-exact-links li {
    margin-bottom: 8px;
}

.footer-exact-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    text-decoration: none;
}

.footer-exact-links a:hover {
    color: #38bdf8;
}

.social-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
}

.social-circle-icon:hover {
    background: #f59e0b;
    color: #0c4a6e;
}

.footer-bottom-exact {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-top: 50px;
    font-size: 0.82rem;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-floating {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-floating:hover {
    transform: scale(1.12);
    color: #ffffff;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-call {
    background-color: #0284c7;
}

.btn-back-to-top {
    background-color: #f59e0b;
    opacity: 0;
    visibility: hidden;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
}
