@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* =========================================
   Variables & Typography
   ========================================= */
   :root {
    --primary-blue: #0a192f;
    --dark-blue: #051020;
    --gold: #a67c00;
    --text-muted: #6c757d;
    --bg-light-grey: #fafafa;
    --bg-light-grey-dark: #f0f0f0;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-sans);
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
}

.italic {
    font-style: italic;
}

.tracking-wide {
    letter-spacing: 2px;
}

.line-height-lg {
    line-height: 1.8;
}

.text-gold {
    color: var(--gold);
}

.bg-dark-blue {
    background-color: var(--primary-blue);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-light-grey {
    background-color: var(--bg-light-grey);
}

.bg-light-grey-darker {
    background-color: #ebebeb;
}

.bg-light-grey-dark {
    background-color: #e5e5e5;
}

.text-light-alpha {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   Navbar
   ========================================= */
.custom-navbar {
    padding: 15px 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo {
    height: 40px;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    margin: 0 15px;
}

.btn-dark-custom {
    background-color: var(--primary-blue);
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 0;
}

/* =========================================
   Hero Section & Booking Bar (Updated)
   ========================================= */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Changed from fixed to scroll for better mobile support if needed */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Added a slight warm/dark gradient to match your screenshot */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(30, 20, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    transform: translateY(-40px); /* Push text slightly up to balance the bottom bar */
}

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* Custom Buttons for Hero */
.btn-discover {
    background-color: #ffffff;
    color: #1a2a3a;
    border-radius: 0;
    padding: 16px 35px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #ffffff;
}

.btn-discover:hover {
    background-color: #f1f1f1;
    color: #000;
}

.btn-bungalows {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    padding: 16px 35px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-bungalows:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Glassmorphism Booking Bar */
.booking-glass-wrapper {
    bottom: 50px; /* Positions it inside the hero image at the bottom */
    left: 0;
    z-index: 10;
}

.glass-panel {
    background: rgba(40, 30, 20, 0.4); /* Dark brownish/black glass */
    backdrop-filter: blur(12px); /* The blur effect */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle edge */
}

.border-right-glass {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.booking-input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 0;
    padding: 0;
    height: auto;
    font-family: var(--font-serif); /* Changed to Serif as per design */
    font-size: 18px;
    box-shadow: none !important;
}

.booking-input::placeholder {
    color: #ffffff;
    opacity: 0.9;
}

.booking-input option {
    color: #333; /* Make dropdown text dark when opened */
}

.btn-check-avail {
    background-color: #ffffff;
    color: #1a2a3a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 15px;
    border-radius: 0;
    border: none;
}

.btn-check-avail:hover {
    background-color: #f1f1f1;
}

/* Responsive adjustments for the new hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .booking-glass-wrapper {
        bottom: 20px;
    }
    .border-right-glass {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 10px;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns a {
        margin-bottom: 10px;
    }
    .hero-content {
        transform: translateY(-80px); /* Make room for stacked booking bar */
    }
}

/* =========================================
   About Section
   ========================================= */
.about-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.about-overlap-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 70%;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
}

.link-custom {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.link-custom .line-arrow {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: var(--gold);
    margin-left: 15px;
}

.link-custom:hover {
    color: #8c6800;
    text-decoration: none;
}

/* =========================================
   Rooms Section
   ========================================= */
.btn-outline-dark-custom {
    border: 1px solid #333;
    color: #333;
    border-radius: 0;
    padding: 10px 30px;
    font-size: 13px;
    background: transparent;
}

.btn-outline-dark-custom:hover {
    background: #333;
    color: white;
}

.room-card {
    background: transparent;
}

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

.link-gold {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* =========================================
   Services Section
   ========================================= */
.service-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 18px;
    flex-shrink: 0;
}

.service-img-wrapper {
    position: relative;
}

.service-overlap-box {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.custom-shadow {
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

/* =========================================
   Activities Section
   ========================================= */
/* Activities Section Styling */
.activity-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* මේකෙන් හරියටම square size එක හදනවා */
    position: relative;
    overflow: hidden;
}

/* Fallback for older browsers if aspect-ratio doesn't work */
@supports not (aspect-ratio: 1 / 1) {
    .activity-box {
        height: 588px; 
    }
}

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

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay darkness */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 40px;
}

.activity-sub {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.activity-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.activity-text {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 80%;
}

.activity-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #fff; /* Button line effect */
    padding-bottom: 2px;
}

.activity-link:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #a67c00; /* Hover color change */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .activity-box {
        aspect-ratio: auto;
        height: 400px; 
    }
}

/* Button with line underneath */
.activity-btn {
    color: white;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px; 
    transition: all 0.3s ease;
}

.activity-btn:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
    text-decoration: none;
}

/* Responsive Gaps */
@media (max-width: 767px) {
    .activity-box {
        height: 400px;
        margin-bottom: 20px;
    }
}

/* "THE BEST IN TISSAMAHARAMA" Text Styling */
.section-tagline {
    color: #a67c00; 
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px; 
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* Subtitle/Label Styling */
.section-subtitle {
    color: #a67c00; 
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px; 
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* =========================================
   Footer
   ========================================= */
.footer-links a {
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--gold) !important;
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 991px) {
    .booking-bar-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        margin-top: 30px;
    }
    .border-right-custom {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        margin-bottom: 15px !important;
        padding-bottom: 10px;
    }
    .about-overlap-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 90%;
        margin: -50px auto 0;
    }
    .service-overlap-box {
        top: -20px;
        left: -10px;
        width: 150px;
        height: 150px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .activity-box {
        height: 350px;
    }
    .service-overlap-box {
        position: relative;
        top: 0; left: 0;
        width: 100%;
        height: auto;
        padding: 20px !important;
        margin-bottom: 20px;
    }
}

/* =========================================
   Safaris Page Specific Styles
   ========================================= */

/* Safari Hero Section */
.safari-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.safari-hero .z-index-2 {
    z-index: 2;
}

.text-gold {
    color: var(--gold);
}

.safari-hero-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 90%;
}

/* Places To Go Section */
.bg-light-grey-bg {
    background-color: #fcfcfc;
}

.bg-watermark {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 14vw; /* Massive text size */
    color: rgba(0, 0, 0, 0.02); /* Very light color for watermark */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.place-card {
    position: relative;
}

.place-img {
    height: 250px;
    object-fit: cover;
}

/* Overlapping Content Box */
.place-content {
    position: relative;
    z-index: 2;
    margin: -50px 20px 0 20px; /* Pulls the box up over the image */
    padding: 30px 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-outline-gold {
    display: inline-block;
    color: var(--gold);
    border: 1px solid var(--gold);
    background: transparent;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    text-decoration: none;
}

/* Village Info List */
.info-icon {
    font-size: 16px;
    min-width: 25px;
}

.info-text-icon {
    font-family: monospace; /* Gives it the distinct look from the screenshot */
    font-size: 12px;
    min-width: 130px;
}

/* Secure Expedition Section */
.bg-darkest {
    background-color: #051020; /* Very dark background */
}

.expedition-inner {
    background-color: #0a192f; /* Slightly lighter inner box */
    border-radius: 2px;
}

.text-muted-custom {
    color: #8892b0;
    letter-spacing: 4px;
    font-size: 11px;
}

.package-card {
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-black {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    padding: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: 0.3s;
}

.btn-black:hover {
    background-color: #333;
    color: #fff;
}

/* Responsive fixes for Safari page */
@media (max-width: 768px) {
    .safari-hero {
        text-align: center !important;
    }
    .safari-hero .row {
        justify-content: center;
    }
    .hero-overlay-dark {
        background: rgba(0,0,0,0.6);
    }
    .bg-watermark {
        font-size: 20vw;
        top: 15%;
    }
    .expedition-inner {
        padding: 30px 15px !important;
    }
    .info-list-item {
        flex-direction: column;
    }
    .info-icon, .info-text-icon {
        margin-bottom: 10px;
    }
}

/* =========================================
   Dining Page Specific Styles
   ========================================= */

/* Global Dining Page Background */
.bg-page-light {
    background-color: #fcfcf9; /* Very slight beige/off-white as per design */
}

/* =========================================
   Dining Page - Hero Section (High Contrast Fix)
   ========================================= */

.dining-hero {
    position: relative;
    height: 80vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    display: flex;
    align-items: center;
}

/* Updated overlay to be vibrant and keep image colors clean while popping white text */
.hero-overlay-dark-left {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Subtle overall dark vignette that keeps the vibrant blue of the plate */
    background: radial-gradient(circle at left, rgba(0, 10, 30, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.dining-hero .z-index-2 {
    position: relative;
    z-index: 2;
}

/* Bright gold for subtitle - matching Figma exactly */
.dining-hero .section-subtitle {
    color: #E2B65C !important; 
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Sharp, Crisp White Heading */
.dining-hero h1 {
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
    /* Subtle text-shadow to make text sharp against any background */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); 
}

/* Brighter paragraph text */
.dining-hero p.dining-hero-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.8;
    max-width: 90%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .dining-hero h1 {
        font-size: 3rem;
    }
}

/* Chef Section */
.chef-img-wrapper {
    position: relative;
}

.chef-img-wrapper {
    position: relative;
    padding-right: 20px; /* Make space on the right for the gold box to stick out */
    padding-bottom: 30px; /* Make space on the bottom */
}

/* Adjusted Gold Block to match Figma size exactly */
.chef-gold-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65px; /* The small width showing in your screenshot */
    height: 35%; /* The height covering the bottom right part */
    background-color: #ffda68; /* Bright yellow/gold matching the image */
    z-index: 1;
}

/* Ensure the image sits properly above the gold box */
.chef-img-wrapper img {
    position: relative;
    z-index: 2;
}

/* Removed the .highlight-box entirely as requested */

/* Menu Cards */
.menu-card {
    padding: 40px 30px;
    border-radius: 2px;
    position: relative;
}

.menu-card-light {
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.menu-card-dark {
    background-color: #051020;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.time-badge {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.item-title {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.item-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #6c757d;
}

.text-light-alpha {
    color: rgba(255, 255, 255, 0.6) !important;
}

.menu-item {
    border-bottom: 1px dashed #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.menu-card-dark .menu-item {
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.menu-footnote {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #adb5bd;
    margin: 0;
}

/* Courses & Drinks List */
.border-bottom-thin {
    border-bottom: 1px solid #eaeaea;
}

.btn-link-arrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link-arrow:hover {
    color: var(--gold) !important;
    text-decoration: none;
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .private-overlap-box {
        margin-right: 0; /* Remove overlap on smaller screens */
        margin-bottom: -50px; /* Overlap upwards instead */
        box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    }
    .col-lg-8.order-lg-2 {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .chef-gold-bg {
        bottom: -15px;
        right: -15px;
    }
    .dining-hero {
        text-align: center;
    }
    .hero-overlay-dark-left {
        background: rgba(0, 5, 20, 0.6);
    }
    .time-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
}

/* Private Dining Overlap */
.private-overlap-box {
    position: relative;
    z-index: 10;
    margin-right: -100px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .private-overlap-box {
        margin-right: 0;
        margin-bottom: -50px;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    }
    .col-lg-8.order-lg-2 {
        margin-left: 0 !important;
    }
}

/* =========================================
   Section Background Color Updates
   ========================================= */

/* Guided by Kumara Section Background */
.chef-section {
    background-color: #FCF9F1 !important;
    margin: 0 !important; /* Removes default margins to align sections perfectly */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Our Menu & Sweet Courses Section Background */
.menu-section, 
.courses-section {
    background-color: #F6F3EB !important;
    margin: 0 !important;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* =========================================
   Accommodation / Bungalows Page Styles
   ========================================= */
/* =========================================
   Resort/Bungalow Hero Section (Vibrant & Clear Fix)
   ========================================= */
.bungalow-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    display: flex;
    align-items: center;
}

/* Updated overlay: Dark only on the left (under the text) and completely clear on the right */
.hero-overlay-dark-left {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Left side has dark gradient for text legibility, right side is clear to show the bright room */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.bungalow-hero .z-index-2 {
    position: relative;
    z-index: 2;
}

/* Bright gold for subtitle */
.bungalow-hero .section-subtitle {
    color: #E2B65C !important; /* Brighter gold */
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Sharp, Crisp White Heading */
.bungalow-hero h1 {
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    /* Heavy text shadow to pop out from the bright background */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6); 
}

/* Clearer paragraph text */
.bungalow-hero-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 16px;
    opacity: 1 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .bungalow-hero h1 {
        font-size: 3rem;
    }
}

.text-shadow-sm {
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.bungalow-hero-text {
    font-size: 16px;
    opacity: 0.95;
}

.tracking-wide {
    letter-spacing: 2px;
}

/* Overlapping Rooms Layout */
.room-large-img {
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Base styles for overlapping box */
.overlap-box {
    position: relative;
    z-index: 5;
    padding: 60px 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    min-height: 420px;
}

/* Light Box Color (Matched to Figma) */
.overlap-box-right, .overlap-box-left {
    background-color: #F4F0E6; 
}

/* Pull the box to the left over the image */
.overlap-box-right {
    margin-left: -80px;
}

/* Pull the box to the right over the image */
.overlap-box-left {
    margin-right: -80px;
}

/* Dark Box for Triple Occupancy */
.overlap-box-dark {
    background-color: #051224; /* Very dark blue/navy */
}

/* Link Styling */
.link-discover {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 3px;
    transition: 0.3s;
}

.link-discover:hover {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
    text-decoration: none;
}

.link-discover-dark {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.link-discover-dark:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Responsive Overlaps */
@media (max-width: 991px) {
    .overlap-box-right, 
    .overlap-box-left {
        margin-left: 0;
        margin-right: 0;
        margin-top: -60px; /* Pull it upwards over the image on mobile */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .room-large-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .overlap-box {
        padding: 40px 30px;
        width: 95%;
    }
    .room-large-img {
        height: 300px;
    }
}

/* =========================================
   Overlapping Rooms Layout (Fixed Alignment & Colors)
   ========================================= */

.room-large-img {
    height: 520px; /* Figma එකේ අදාළ Box එකේ උසට සමාන කර ඇත */
    object-fit: cover;
    display: block;
    width: 100%;
}

/* Base styles for overlapping box */
.overlap-box {
    position: relative;
    z-index: 5;
    padding: 60px 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center; /* අකුරු කොටුව මැදට ගෙන ඒමට */
    min-height: 480px;
}

/* Light Box Color (Matched to #F6F3EB exactly) */
.overlap-box-right, 
.overlap-box-left {
    background-color: #F6F3EB !important; 
}

/* Dark Box for Triple Occupancy */
.overlap-box-dark {
    background-color: #051224 !important; /* Very dark blue/navy */
}

/* Desktop View Alignments (Overlaps) */
@media (min-width: 992px) {
    .overlap-box-right {
        margin-left: -100px; /* වම් පැත්තට පින්තූරය මතින් පැනීමට */
    }
    
    .overlap-box-left {
        margin-right: -100px; /* දකුණු පැත්තට පින්තූරය මතින් පැනීමට */
    }
}

/* Link Styling */
.link-discover {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 3px;
    transition: 0.3s;
    display: inline-block;
    width: fit-content;
}

.link-discover:hover {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
    text-decoration: none;
}

.link-discover-dark {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.link-discover-dark:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Responsive Overlaps for Mobile/Tablet */
@media (max-width: 991px) {
    .overlap-box-right, 
    .overlap-box-left {
        margin-left: 0;
        margin-right: 0;
        margin-top: -60px; /* Pull it upwards over the image on mobile */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .room-large-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .overlap-box {
        padding: 40px 30px;
        width: 95%;
        min-height: auto;
    }
    .room-large-img {
        height: 300px;
    }
}

/* =========================================
   Contact Page Specific Styles
   ========================================= */

.contact-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    margin-top: 45px;
    display: flex;
    align-items: center;
}

/* Updated overlay: Dark only on the left (under the text) and completely clear on the right */
.contact-hero .hero-overlay-dark-left {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Highly transparent warm gradient, darker only on the far left */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

.contact-hero .z-index-2 {
    position: relative;
    z-index: 2;
}

/* Bright gold for subtitle */
.contact-hero .section-subtitle {
    color: #E2B65C !important; /* Vibrant gold */
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Crisp, Solid White Heading */
.contact-hero h1 {
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    /* Heavy text shadow to pop out from the bright background */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6); 
}

/* Bright, clear paragraph text */
.contact-hero-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 16px;
    line-height: 1.8;
    max-width: 90%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 3rem;
    }
}

/* Inquiry Form Card */
.inquiry-form-card {
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Custom Flat Form Inputs */
.form-custom-group {
    margin-bottom: 35px;
    position: relative;
}

.form-custom-label {
    font-size: 10px;
    color: #E2B65C; /* Beautiful gold color */
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.form-custom-input {
    border: none !important;
    border-bottom: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    height: auto !important;
    font-size: 14px;
    color: #333;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.form-custom-input:focus {
    border-bottom-color: var(--gold) !important; /* Highlights to gold on focus */
}

.form-custom-input::placeholder {
    color: #a0a0a0;
    opacity: 0.8;
}

/* Send Inquiry Button */
.btn-send-inquiry {
    background-color: #051020; /* Dark Navy/Black */
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 15px 35px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-send-inquiry:hover {
    background-color: var(--gold);
    color: #ffffff;
}

/* Quick Action Buttons on Right */
.info-button-block {
    background-color: #E6E1D5; /* Elegant warm grey/beige from Figma */
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a2a3a;
    text-decoration: none;
    margin-bottom: 15px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.info-button-block:hover {
    background-color: #dcd7ca; /* Slight dark on hover */
    text-decoration: none;
    color: #000000;
}

.info-button-block span {
    letter-spacing: 1px;
    color: #333;
}

/* Responsive fixes for Contact page */
@media (max-width: 991px) {
    .contact-hero {
        text-align: center;
    }
    .contact-hero .row {
        justify-content: center;
    }
    .hero-overlay-dark-left {
        background: rgba(0,0,0,0.5);
    }
    .inquiry-form-card {
        padding: 35px 25px !important;
    }
}
input, textarea, select {
    border: none !important;
    border-bottom: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 10px 0 !important;
    height: auto !important;
    font-size: 14px;
    color: #9b9b9b;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
    width: 100%;
}
select option{
	color: #000;
}
.wpcf7-submit {
    background-color: #051020 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px 35px !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.3s;
	width: auto;
}
.btn:not(:disabled):not(.disabled), .wpcf7-submit:not(:disabled):not(.disabled) {
    cursor: pointer !important;
}
.btn-send-inquiry:hover, .wpcf7-submit:hover {
    background-color: var(--gold) !important;
    color: #ffffff !important;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    height: 100px !important;
}
.galley-section {
    margin-bottom: 50px;
}
.gal-inner {
    height: 250px;
	margin-bottom:30px;
}
.gal-inner img{
	height: 100%;
	object-fit: cover;
}
.slick-prev:before {
    content: '←';
}
.room-content-section .slick-next:before, .room-content-section .slick-prev:before {
    color: #7d7d7d;
}
section.room-content-section-title{
	background: #ebebeb;
	text-align: center;
	padding-bottom: 15rem !important;
}
section.room-content-section {
    margin-top: -13rem;
}
.slick-init {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.slick-init.slick-initialized {
    opacity: 1;
    visibility: visible;
}
.room-fac-main .left h4 {
    margin-bottom: 15px;
    line-height: 1.4;
}
.room-fac-main .left p{
	line-height: 1.8;
}
.room-fac-main{
	margin-top: 50px;
	margin-bottom: 50px;
}
.room-fac-main .right ul {
    list-style: none;
    padding-left: 0;
}
.room-fac-main .right ul li {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
    border-bottom: 1px solid #0000001f;
}
.room-fac-amenities ul {
    padding-left: 17px;
    margin-top: 15px;
}
.room-fac-amenities ul li{
	padding-bottom: 7px;
}
.room-fac-main .right ul li:last-child{
	border-bottom: 0;
	padding-bottom: 0px;
}
.room-fac-main .right ul li .text1 {  
    width: 32%;
    display: inline-block;
}
.room-fac-main .right ul li .text1:nth-child(2){
	text-align: center;
}
.book-now-btn{
	text-align: center;
	/*margin-top: 50px;*/
	margin-bottom: 50px;
}
.book-now-btn a {
    background-color: #a67c00;
    color: #ffffff;
    border-radius: 0;
    padding: 16px 55px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid #a67c00;
}
.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border: none;
    cursor: pointer;
}
.slick-prev svg,
.slick-next svg {
    width: 18px;
    height: 18px;
    color: #000;
}
.slick-prev, .slick-next {
    padding-top: 3px;
}
.slick-prev:before,
.slick-next:before {
    display: none !important;
}
.slick-prev {
    left: 10px;
}
.slick-next {
    right: 10px;
}
.awards-section a:hover{
	text-decoration: none;
}
.awards-section img {
    width: 88px !important;
}
.hbs-rate-book-btn, .hbs-search-btn {
    background: #a67c00;
}
.hbs-room-capacity-meta {
    color: #a67c00;
    margin-top: 14px;
}
.hbs-room-capacity-meta i, .hbs-results-header strong, .hbs-icon{
	color: #a67c00;
}
a.hbs-view-details-overlay {
    color: #fff;
    text-decoration: none;
    border: 1px solid #000 !important;
    padding: 10px 15px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
}
.book-now-btn a:hover{
	text-decoration: none;
}
.woocommerce form .form-row label {
    line-height: 2;
    width: 100%;
}
span.woocommerce-input-wrapper {
    width: 100%;
}
.woocommerce-additional-fields h3, .woocommerce-checkout table.shop_table tbody td.product-total, th.product-total, th.product-name {
    display: none !important;
}
.woocommerce-checkout .col2-set .col-1{
	margin-bottom: 10px;
}
tr.order-total {
    display: flex !important;
    flex-direction: unset !important;
    width: 100% !important;
    justify-content: space-between;
}
/* Optional: Adjust layout of the checkout table for better spacing */
.woocommerce-checkout .shop_table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
}
dt.variation-Check-in, dd.variation-Check-in {
    padding-top: 3px;
}
.woocommerce-checkout dl.variation p {
    padding-bottom: 15px;
}
input#payment_method_cod{
	width: auto;
}
ul.wc-item-meta {
    padding-left: 0;
    margin-top: 10px;
    color: #000;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 15px;
	margin-bottom: 20px;
}
ul.wc-item-meta li{
	margin-bottom: 15px;
}
.woocommerce-order-details .shop_table tr {
    display: table-row;
    flex-direction: column;
    width: 100%;
}
td.woocommerce-table__product-name.product-name a {
    color: #a67c00 !important;
    pointer-events: none !important;
}
td.woocommerce-table__product-name.product-name a:hover{
	text-decoration: none;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    text-align: center;
    color: #a67c00;
    font-size: 20px;
    margin-bottom: 30px;
}
p.woocommerce-customer-details--email{
	margin-top: 15px;
}
p.text-muted.small.text-uppercase.no-l {
    margin-bottom: 4px;
}
@media (min-width: 1200px) {
    .page-template-room_templete .container{
        max-width: 75%;
    }
}
@media(max-width:1100px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 3px;
        padding-left: 3px;
    }
	.menu-custom{
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
@media(max-width:992px){
	.btn-book-nav {
		width: 100%;
	}
	.menu-custom{
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
    .booking-glass-wrapper {
        position: relative !important;
    }
	.hbs-premium-search-wrapper {
		margin: 0;
	}
}
@media(max-width:767px){
	.room-fac-amenities .right{
		margin-top: 20px;
	}
	section.room-content-section-title {
		padding-bottom: 12rem !important;
		padding-top: 70px !important;
	}
	.room-fac-main {
		margin-top: 10px;
		margin-bottom: 20px;
	}
	.room-fac-main .right ul li {
		font-size: 15px;
	}
	.room-fac-main .left h4 {
		font-size: 20px;
		font-weight: 400;
	}
	.hero-content {
        transform: translateY(0px);
    }
	.hero-section {
		height: 70vh;
		min-height: auto;
		margin-top: 35px;
	}
	.about-section{
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		margin-bottom: 0px !important;
	}
	.py-5{
		padding-top: 0px !important;
	}
	.services-section, .activities-section, .awards-section, section.chef-section, .menu-section, .contact-content-section{
		padding-top: 30px !important;
	}
	.mb-5{
		margin-bottom: 0px !important;
	}
	.section-title, .inquiry-form-card {
        margin-bottom: 30px !important;
    }
	.room-slider{
		margin-top: 20px;
	}
	.slick-prev svg, .slick-next svg {
		width: 10px;
		height: 10px;
	}
	.slick-prev, .slick-next {
		width: 25px;
		height: 25px;
	}
	.slick-prev, .slick-next {
		padding-top: 2px;
	}
	.services-section, .rooms-section, .inner-x{
		padding-bottom: 0px !important;
	}
	.intro-section h2, .chef-section h2 {
		font-size: 30px;
	}
	.contact-hero h1 {
        font-size: 2.5rem;
    }
	.intro-section h2 br, .chef-section h2 br, .contact-hero h1 br{
		display: none;
	}
	.h2, h2 {
		font-size: 1.5rem;
	}
	ul.list-unstyled.mb-5, .inner-list {
		margin-top: 15px;
	}
	.link-discover {
		margin-top: 20px;
	}
	.title-x{
		margin-bottom: 20px !important;
	}
	.contact-hero {
		margin-top: 35px;
	}
	.hbs-room-card-right {
		padding: 5px;
	}
	.hbs-rate-row {
		padding: 15px 5px;
	}
	.room-fac-main {
		margin-top: 60px;
	}
	.hbs-standalone-calendar-wrapper {
		width: 100%;
	}
	.flatpickr-months .flatpickr-month {
		height: 70px !important;
	}
	.hbs-standalone-calendar-wrapper {
		padding: 18px;
	}
}
@media(min-width:1201px){
	.booking-glass-wrapper .container{
		max-width: 75%;
	}
}
.pxc{
	margin-top:7px;
	margin-bottom: 7px;
}
.room-card .pxc{
	margin-bottom: 14px;
}
.no-padding{
	padding:0px;
}