/* ===== Optional: import fonts (uncomment if needed) =====
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&family=Pacifico&display=swap');
======================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: #333;
    background: #fff;
}
body,html{
    overflow-x: hidden;
}
/* container width */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 18px;
}

/* ---------------- HERO BANNER ---------------- */
.hero-wrap.hero-wrap-2 {
    position: relative;
    width: 100%;
    height: 550px;
    /* adjust if you want taller/shorter */
    display: flex;
    align-items: flex-end;
    /* matches your HTML align-items-end */
    justify-content: center;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.hero-wrap .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* dark overlay to match screenshot */
    z-index: 1;
}

/* ensure content sits above overlay */
.hero-wrap .container {
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
}

.hero-wrap .col-md-9 {
    text-align: center;
    padding: 0 12px;
}

/* heading / breadcrumb */
.bread {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: .3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.breadcrumbs {
    margin-top: 12px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ---------------- INGREDIENTS / IMAGE + TEXT ---------------- */
/* section spacing */
.ftco-section {
    padding: 72px 0;
    background: #fff;
}

/* make main row use flex (override potential bootstrap conflicting rules) */
.row.d-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* LEFT: container that holds the two vertical images */
.col-md-6.d-flex {
    display: flex;
    gap: 16px;
    /* gap between the two image strips */
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
}

/* Force each .img inside that left column to be a vertical strip.
   We must override .w-100 (Bootstrap) which uses !important — so we use !important too. */
.col-md-6.d-flex>.img {
    flex: 0 0 50% !important;
    /* each img fills half of the left column */
    max-width: 50% !important;
    width: auto !important;
    /* override .w-100 */
    min-height: 520px;
    /* tall, matches screenshots; change if desired */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    border-radius: 0;
}

/* If you want the first image a tiny bit narrower: 
   .col-md-6.d-flex > .img:first-child { flex-basis: 48% !important; max-width: 48% !important; } */

/* RIGHT: white card with text */
.col-md-6.ftco-animate.makereservation {
    display: flex;
    align-items: center;
    /* vertically center text beside images */
    background: #ffffff;
    padding: 48px 48px;
    /* spacing like screenshot */
}

/* heading/text inside the white card */
.heading-section .subheading {
    font-family: "Pacifico", cursive;
    color: #e79d3c;
    font-size: 20px;
    margin-bottom: 8px;
    display: inline-block;
}

.heading-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #222;
}

.heading-section p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 18px;
}

/* primary button */
.makereservation .btn.btn-primary {
    background: #e59f35;
    color: #050505;
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform .14s ease, box-shadow .14s ease;
}

.makereservation .btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
}

/* ---------------- COUNTER STRIP ---------------- */
.ftco-counter.img {
    position: relative;
    background-size: cover;
    background-position: center center;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
}

/* dark overlay for readability */
.ftco-counter.img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 0;
}

/* ensure content sits above overlay */
.ftco-counter .container {
    position: relative;
    z-index: 1;
}

/* Distribute 4 counters evenly */
.ftco-counter .row.d-md-flex.align-items-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ftco-counter .col-md {
    flex: 1 1 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
}

/* visual style for each counter */
.block-18 {
    text-align: center;
    padding: 8px 12px;
}

.block-18 .number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.block-18 span {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
}

/* ---------------- Responsive (tablet / mobile) ---------------- */
@media (max-width: 992px) {
    .hero-wrap.hero-wrap-2 {
        height: 280px;
    }

    .bread {
        font-size: 36px;
    }

    .col-md-6.d-flex>.img {
        min-height: 420px;
    }

    .heading-section h2 {
        font-size: 34px;
    }

    .block-18 .number {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .hero-wrap.hero-wrap-2 {
        height: 220px;
        align-items: center;
        padding: 10px 0;
    }

    .bread {
        font-size: 28px;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    /* stack left images vertically on small screens */
    .col-md-6.d-flex {
        flex-direction: column;
        gap: 12px;
        padding: 0 12px;
        width: 100%;
    }

    .col-md-6.d-flex.img {
        width: 100% !important;
        height: auto !important;
        flex: 0 0 auto !important;
    }

    /* make right card full width and follow images */
    .col-md-6.ftco-animate.makereservation {
        width: 100%;
        padding: 28px 16px;
        margin-top: 12px;
    }

    /* counters -> two per row */
    .ftco-counter .col-md {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .block-18 .number {
        font-size: 36px;
    }

   
}

/* small helper for any <img> inside .img (if used) */
.img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* Section Background & Overlay */
.testimony-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #fff;
    padding: 80px 0;
}

.testimony-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Heading */
.heading-section .subheading {
    font-size: 2rem;
    color: #ffac4d;
    font-weight: 600;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #161616;
}

/* Testimony Box */
.testimony-wrap {
    background: transparent;
    padding: 20px;
    border-radius: 10px;
}

.testimony-wrap .text {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.testimony-wrap .name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.testimony-wrap .position {
    font-size: 16px;
    color: #ddd;
}

/* User Image */
.user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    position: relative;
}

.user-img .quote {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ff4d4d;
    color: #fff;
    position: absolute;
    bottom: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: #ff4d4d;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .heading-section h2 {
        font-size: 32px;
    }

    .testimony-wrap .text {
        font-size: 16px;
    }

    .user-img {
        width: 80px;
        height: 80px;
    }
}

/* Intro Section */
.ftco-intro {
    background: #e79529;
    /* red background */
    text-align: center;
    padding: 60px 20px;
}

.ftco-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

/* Button Styling */
.ftco-intro .btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-white {
    background: #fff;
    color: #e77e29;
    border: 2px solid #0e0d0d;
}

.btn-white:hover {
    background: transparent;
    color: #030303;
    border: 2px solid #f18547;
}

/* Responsive */
@media (max-width: 992px) {
    .ftco-intro h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .ftco-intro {
        padding: 40px 15px;
    }

    .ftco-intro h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .ftco-intro .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* General Section Styling */
.section-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

h1 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 16px;
    color: #555;
}

/* About Section */
.container-xxl {
    max-width: 1400px;
    margin: auto;
}

#about {
    padding: 80px 0;
}

/* Image Grid Styling */
#about .row.g-3 img {
    border-radius: 10px;
    object-fit: cover;
}

/* Left Side (Images) */
#about .col-lg-6 .row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#about .col-lg-6 .row .col-6 {
    padding: 5px;
}

/* Right Side (Content) */
#about h5.section-title {
    font-size: 20px;
    color: #ff7b00;
    font-weight: 600;
}

#about h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

#about p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Stats Boxes */
#about .d-flex {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

#about h1.display-5 {
    font-size: 40px;
    font-weight: 700;
    margin-right: 15px;
    color: #ff7b00;
}

#about h6 {
    font-size: 16px;
    font-weight: 600;
}

/* Button */
#about .btn {
    background: #ff7b00;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

#about .btn:hover {
    background: #e06800;
}

/* Responsive */
@media (max-width: 992px) {
    #about .col-lg-6 {
        text-align: center;
    }

    #about .col-lg-6 .row {
        justify-content: center;
    }

    #about h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 50px 0;
    }

    #about .d-flex {
        justify-content: center;
    }

    #about h1.display-5 {
        font-size: 32px;
    }

    #about h5.section-title {
        font-size: 18px;
    }

    #about p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    #about h1 {
        font-size: 24px;
    }

    #about h1.display-5 {
        font-size: 28px;
    }

    #about .btn {
        width: 100%;
        padding: 12px;
    }
}

/* --- Global Styles & Variables (Required for both Navbar and Footer) --- */
:root {
    --primary-color: #E67E22;
    --dark-color: #2C3E50;
    --light-color: #FDFEFE;
    --text-color: #34495E;
    --rustic-bg: #F5EFE6;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 70px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--rustic-bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1.5rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-color);
}


/* --- Navbar Specific Styles --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
    /* Set a default background color for other pages */
    background-color: #1d1d1d; 
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

/* This class is for the transparent-to-solid effect on the homepage.
   You can keep it for consistency or remove if not needed on other pages. */
.navbar.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px #ffffff1a;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.nav-logo img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active-link {
    color: var(--primary-color);
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-color);
    transition: all 0.3s ease-in-out;
}

/* --- Responsive Styles for Navbar --- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Adjust based on navbar height */
        flex-direction: column;
        background-color: #1d1d1d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #4d5b69;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* --- Footer Styles --- */
.site-footer {
    background-color: #1d1d1d;
    color: #edf3f7;
    padding-top: 3rem;
    font-size: 0.9rem;
    /* This element should NOT have a border-top */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    width: 100px;
    background: var(--light-color);
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 1rem;
}

.site-footer h4 {
    font-family: var(--font-heading);
    color: orange;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: #fcfeff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
    color:#FDFEFE
}

.footer-contact p i {
    margin-right: 10px;
}

.footer-social a {
    color: #ecf1f5;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* This rule creates the correct thin line ONLY above the copyright text */
.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #34495E;
} 