/*
    Aashiyana Restaurant - Premium Green & Gold Redesign Stylesheet
    Fine Dining Experience - Green Garden Aesthetic
*/

/* ==========================================================================
   Design Tokens & CSS Variables
   ========================================================================== */
:root {
    /* Green Gradients & Accents */
    --green-darkest: #0a1f0a;
    --green-darker: #1a3c1a;
    --green-dark: #2d5a2d;
    --green-primary: #2e7d32;
    --green-medium: #388e3c;
    --green-light: #4caf50;
    --green-lighter: #66bb6a;
    --green-lightest: #a5d6a7;
    --green-pale: #c8e6c9;
    --green-bg: #e8f5e9;
    --green-tint: #f1f8e9;
    
    /* Luxury Gold Palette */
    --gold-primary: #d4a843;
    --gold-light: #f0d68a;
    --gold-dark: #b8860b;
    
    /* Neutrals */
    --text-dark: #1b1b1b;
    --text-medium: #444444;
    --text-light: #777777;
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #f5f5dc;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
    --shadow-green: 0 4px 20px rgba(46, 125, 50, 0.25);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
    
    /* Glassmorphism */
    --glass-bg: rgba(10, 31, 10, 0.9);
    --glass-border: rgba(212, 168, 67, 0.15);
    --glass-blur: blur(16px);

    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* ==========================================================================
   Base Elements & Global Resets
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

section {
    background-color: var(--white);
    position: relative;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--green-darkest);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    letter-spacing: -0.01em;
    color: var(--white);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--green-darkest);
    position: relative;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover, a:focus {
    color: var(--green-light);
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Helper Utilities */
.padding {
    padding: 100px 0;
}

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

.text-white {
    color: var(--white) !important;
}

.align-center {
    text-align: center;
}

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

/* Custom Green & Gold Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--green-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ==========================================================================
   Header & Navigation (Sticky Glassmorphic Green)
   ========================================================================== */
.header_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    transition: var(--transition-fast);
}

/* Sticky Header on scroll */
.header_section.navbar-fixed-top {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header_section .navbar {
    background: transparent;
    border: none;
    margin: 0;
}

.header_section .navbar-header .brand img {
    max-height: 60px;
    width: auto;
    transition: var(--transition-fast);
}

.header_section.navbar-fixed-top .navbar-header .brand img {
    max-height: 48px;
}

/* Menu Items */
.header_section ul.nav > li > a {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 18px;
    line-height: 60px;
    position: relative;
    opacity: 0.85;
    background: transparent !important;
}

.header_section.navbar-fixed-top ul.nav > li > a {
    line-height: 48px;
}

.header_section ul.nav > li > a:hover,
.header_section ul.nav > li.active > a {
    color: var(--gold-primary) !important;
    opacity: 1;
}

/* Gold Bottom Underline Link Effect */
.header_section ul.nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
    transform-origin: right;
}

.header_section.navbar-fixed-top ul.nav > li > a::after {
    bottom: 6px;
}

.header_section ul.nav > li > a:hover::after,
.header_section ul.nav > li.active > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Hamburger Menu */
.navbar-toggle {
    border: none;
    background: transparent;
    padding: 10px;
    margin-top: 15px;
}

.navbar-toggle:focus {
    background: transparent;
}

.navbar-toggle .icon-bar {
    background-color: var(--gold-primary) !important;
    height: 2px;
    width: 24px;
    display: block;
    margin-bottom: 5px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero_section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero_section .owl-carousel,
.hero_section .owl-wrapper-outer,
.hero_section .owl-wrapper,
.hero_section .owl-item,
.hero_section .owl-stage-outer,
.hero_section .owl-stage,
.hero_section .item {
    height: 100%;
}

.hero_section .owl-carousel .item {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rich Dark Green Gradient Overlay */
.hero_section .owl-carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 31, 10, 0.92) 0%, 
        rgba(26, 60, 26, 0.88) 50%, 
        rgba(45, 90, 45, 0.8) 100%);
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
}

.hero_content h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    animation: fadeInUp 1s ease forwards;
}

.hero_content p {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--gold-primary);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease forwards;
}

/* Premium Gold Action Button */
.fs_btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    color: var(--green-darkest);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.fs_btn:hover {
    color: var(--green-darkest);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.5);
}

/* Slider Owl Navigation Dot Customizations */
.home_banner.owl-theme .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home_banner.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 12px;
    height: 4px;
    margin: 0;
    border-radius: 0;
    transition: var(--transition-fast);
}

.home_banner.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold-primary) !important;
    width: 32px;
}

/* ==========================================================================
   About Section (Cursive styling and hover boxes)
   ========================================================================== */
.about_section {
    background-color: var(--white);
    overflow: hidden;
}

.about_section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about_section .about_content {
    padding-right: 40px;
}

.about_section h2 {
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: var(--green-darkest);
}

.about_section h2 span {
    font-family: var(--font-script);
    color: var(--gold-primary);
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 1px;
}

.about_section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.about_section p a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-top: 15px;
    color: var(--green-primary);
}

.about_section p a:hover {
    color: var(--gold-primary);
}

.about_section .about_img {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    border: 4px solid var(--cream);
}

.about_section .about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about_section .about_img:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.about_section .about_img:hover img {
    transform: scale(1.05);
}

.fb-page {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    border: 4px solid var(--cream);
}

/* ==========================================================================
   Food Section (Delicious Foods Card Grid)
   ========================================================================== */
.food_section {
    background-color: var(--green-tint);
}

.section_heading {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.section_heading h2.style_one {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--green-darkest);
    font-family: var(--font-heading);
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
}

.section_heading h2.style_one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.food_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
    margin-bottom: 40px;
}

.food_list li {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.food_list li:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lightest);
}

.food_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.food_content img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.food_list li:hover .food_content img {
    transform: scale(1.05);
}

.food_content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--green-darkest);
    margin: 20px 20px 10px;
}

.food_content h3 a {
    color: var(--green-darkest);
}

.food_content h3 a:hover {
    color: var(--green-primary);
}

.food_content p {
    padding: 0 20px 24px;
    margin: 0;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
}

.all_read_more {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white) !important;
    background-color: var(--green-primary);
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    border: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-green);
}

.all_read_more:hover {
    background-color: var(--green-medium);
    transform: translateY(-2px);
}

/* ==========================================================================
   Food Menus Section
   ========================================================================== */
.menu_section {
    background-image: linear-gradient(rgba(10, 31, 10, 0.95), rgba(10, 31, 10, 0.9)), url('../images/menu-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--white);
}

.menu_section .section_heading h2.text-white {
    color: var(--white) !important;
}

.fm_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0;
}

.fm_list li {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.fm_content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    transition: var(--transition-fast);
}

.fm_content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
    transform: translateY(-5px);
}

.fm_content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    flex-shrink: 0;
}

.fm_content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
}

.fm_content h4 a {
    color: var(--white);
}

.fm_content h4 a:hover {
    color: var(--gold-primary);
}

.fm_content p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--green-bg);
    opacity: 0.8;
    margin-bottom: 0;
}

.fm_content span.price {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--gold-primary);
    color: var(--green-darkest);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ==========================================================================
   Featured Food Section (Burger Split View)
   ========================================================================== */
.featured_food_section {
    background-color: var(--white);
}

.featured_food_section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.featured_food_section .img_box {
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
    border: 4px solid var(--cream);
}

.featured_food_section .img_box:hover {
    transform: scale(1.02);
}

.featured_food_section .featured_food_content {
    padding-left: 50px;
}

.featured_food_section .featured_food_content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--green-darkest);
    margin-bottom: 25px;
    font-weight: 700;
}

.featured_food_section .featured_food_content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.featured_food_section .featured_food_content a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-top: 15px;
    color: var(--green-primary);
}

.featured_food_section .featured_food_content a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   Testimonial Section (Cursive & Quote highlights)
   ========================================================================== */
.testimonial {
    background-image: linear-gradient(rgba(10, 31, 10, 0.85), rgba(10, 31, 10, 0.85)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial .section_heading h2 {
    color: var(--white) !important;
}

.say_container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    gap: 30px;
    align-items: center;
}

.say_container .say_img {
    flex-shrink: 0;
}

.say_container .say_img img {
    width: 120px !important;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.say_content {
    flex-grow: 1;
    color: var(--white);
}

.say_content .say_name h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.say_content .say_name p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--green-bg);
    opacity: 0.8;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.say_content .says p {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: var(--white);
    position: relative;
    padding: 0 10px;
}

.say_slide.owl-theme .owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.say_slide.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 12px;
    height: 4px;
    border-radius: 0;
    transition: var(--transition-fast);
}

.say_slide.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold-primary) !important;
    width: 24px;
}

/* ==========================================================================
   Food Gallery Section
   ========================================================================== */
.gallery_section {
    background-color: var(--white);
}

.gallery_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding: 0;
}

.gallery_items li {
    list-style: none;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.gallery_item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 31, 10, 0.7);
    opacity: 0;
    z-index: 1;
    transition: var(--transition-fast);
}

.gallery_item::after {
    font-family: 'elegant-line';
    content: '\e028';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    color: var(--gold-primary);
    font-size: 24px;
    z-index: 2;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery_item:hover img {
    transform: scale(1.1);
}

.gallery_item:hover::before {
    opacity: 1;
}

.gallery_item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   Events & News Cards (Upcoming & Recent News)
   ========================================================================== */
.event_section {
    background-image: linear-gradient(rgba(10, 31, 10, 0.92), rgba(10, 31, 10, 0.92)), url('../images/event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.event_slider .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.event_slider .event_banner {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    object-fit: cover;
}

.event_content {
    padding: 30px;
}

.event_content h2 {
    color: var(--gold-primary) !important;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.event_content p {
    color: var(--green-bg);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.event_content .fs_btn {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: none;
}

.event_content .fs_btn:hover {
    background: var(--gold-primary);
    color: var(--green-darkest);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

/* Event Dots */
.event_slider.owl-theme .owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.event_slider.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 12px;
    height: 4px;
    border-radius: 0;
    transition: var(--transition-fast);
}

.event_slider.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold-primary) !important;
    width: 24px;
}

/* Blog Cards */
.blog_section {
    background-color: var(--green-tint);
}

.blog_posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
}

.blog_posts li {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.blog_posts li:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lightest);
}

.blog_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.blog_posts li:hover .blog_content img {
    transform: scale(1.03);
}

.blog_content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.blog_content h4 a {
    color: var(--green-darkest);
}

.blog_content h4 a:hover {
    color: var(--green-primary);
}

.blog_content p {
    padding: 0 20px 15px;
    margin: 0;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.6;
}

.blog_content .read_more {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-primary) !important;
    padding: 0 20px 24px;
    display: inline-block;
}

.blog_content .read_more:hover {
    color: var(--gold-primary) !important;
}

/* ============================================
   Contact Section (Split Map & overlay glass)
   ============================================ */
.contact_section {
    position: relative;
    height: 500px;
    background-color: var(--green-tint);
}

.contact_section iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.contact_info {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact_info h2 {
    color: var(--gold-primary) !important;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.contact_info p {
    color: var(--green-bg);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================
   Footer Section & Social Links
   ============================================ */
.footer_widget_section {
    background-color: var(--green-darkest);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.footer_widget_section h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer_widget_section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer_widget_section p {
    color: var(--green-bg);
    opacity: 0.8;
}

/* Social Links */
.footer_socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer_socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer_socials li a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--green-darkest) !important;
    transform: translateY(-3px);
}

/* Contact Info list */
.foot_contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.foot_contact li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.foot_contact li i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.foot_contact li span {
    color: var(--green-bg);
    opacity: 0.9;
    font-size: 14px;
}

/* Quick Links list */
.quick_links li {
    margin-bottom: 10px;
}

.quick_links li a {
    color: var(--green-bg);
    opacity: 0.8;
    font-size: 14px;
    display: inline-block;
}

.quick_links li a:hover {
    color: var(--gold-primary);
    opacity: 1;
    transform: translateX(5px);
}

/* Opening hours */
.footer_widget_section h4 {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    margin-top: 20px;
    margin-bottom: 5px;
}

/* Footer Section Copyright */
.footer_section {
    background-color: var(--green-darkest);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer_section p {
    color: var(--green-lightest);
    opacity: 0.6;
    font-size: 13px;
    margin: 0;
}

/* Scroll To Top */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
    color: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    box-shadow: var(--shadow-green);
    transition: var(--transition-fast);
}

#scroll-to-top:hover {
    background: var(--gold-primary);
    color: var(--green-darkest) !important;
    transform: translateY(-5px);
}

/* ==========================================================================
   Modals & Popups (Green & Gold themes)
   ========================================================================== */
.modal-content {
    background-color: var(--green-darker);
    color: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
}

.modal-header .close {
    color: var(--white);
    opacity: 0.8;
}

.modal-header .close:hover {
    color: var(--gold-primary);
    opacity: 1;
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

/* Form inputs */
.form-group label {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    height: 48px;
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-primary);
    box-shadow: none;
}

textarea.form-control {
    height: auto !important;
    min-height: 120px;
}

#btnSubmit {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--green-darkest);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    padding: 14px 28px;
    transition: var(--transition-fast);
    border-radius: 50px;
}

#btnSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

/* Custom Onsite Loader Modal */
.site_modal .body_content {
    line-height: 1.8;
    color: var(--green-bg);
}

.site_modal .footer_content {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.site_modal .left_foot img {
    max-height: 50px;
}

.site_modal .right_foot ul.contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site_modal .right_foot ul.contact li {
    font-size: 13px;
    color: var(--green-bg);
    opacity: 0.8;
}

.site_modal .right_foot ul.contact li i {
    color: var(--gold-primary);
    margin-right: 8px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   Continuation styles from Green Garden Template
   ========================================================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu-tab-btn {
    background: var(--white);
    color: var(--text-medium);
    border: 1px solid var(--green-pale);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-tab-btn i {
    font-size: 1.1rem;
    color: var(--green-light);
    transition: var(--transition-fast);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-green);
}

.menu-tab-btn:hover i,
.menu-tab-btn.active i {
    color: var(--gold-light);
    transform: scale(1.1);
}

.menu-item-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--green-pale);
    transition: var(--transition-fast);
    margin-bottom: 24px;
}

.menu-item-wrapper:hover {
    border-style: solid;
    border-color: var(--green-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.menu-item-thumb {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.menu-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    flex-grow: 1;
}

.menu-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 5px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    padding-right: 15px;
    background: var(--white);
}

.menu-item-title a {
    color: var(--text-dark);
}

.menu-item-title a:hover {
    color: var(--green-primary);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-primary);
    background: var(--white);
    padding-left: 15px;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESERVATION SECTION
   ============================================ */
.booking-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.booking-info-pane {
    background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-darker) 100%);
    padding: 50px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-pane-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 25px;
}

.info-pane-title span {
    color: var(--gold-primary);
}

.contact-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-meta-item i {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-top: 3px;
}

.contact-meta-item div h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--green-lightest);
    margin-bottom: 2px;
}

.contact-meta-item div p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.booking-form-pane {
    padding: 50px;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1px solid var(--green-pale);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
}

/* ============================================
   FOOTER WIDGET CUSTOM STYLES
   ============================================ */
.footer-widget h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: var(--gold-primary);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #030a03;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
    .hero_section {
        height: 520px;
        min-height: auto;
    }

    .padding {
        padding: 80px 0;
    }
    
    .about_section .about_content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .featured_food_section .featured_food_content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .say_container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .hero_section {
        height: 450px;
        min-height: auto;
    }

    /* Mobile Navigation Drawer styles */
    .navbar-collapse {
        background: var(--green-darker) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 15px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: var(--shadow-lg);
    }
    
    .header_section ul.nav > li > a {
        line-height: 44px;
        display: block;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .header_section ul.nav > li:last-child > a {
        border-bottom: none;
    }
    
    .header_section ul.nav > li > a::after {
        display: none;
    }
    
    .contact_section {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .contact_section iframe {
        position: relative;
        height: 350px;
    }
    
    .contact_wrap {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        margin: 40px auto;
        max-width: 100%;
    }
}

@media (max-width: 667px) {
    .hero_section {
        height: 370px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .fm_content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .fm_content span.price {
        position: relative;
        top: 0;
        right: 0;
        align-self: center;
        margin-top: 10px;
    }
}

/* ==========================================================================
   BREADCRUMB / INNER PAGE HEADER
   ========================================================================== */
.bread-crumb {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    background-color: var(--green-darkest);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.bread-crumb::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,31,10,0.92) 0%, rgba(26,60,26,0.85) 100%);
    z-index: 1;
}

.bread-crumb .bc_block {
    position: relative;
    z-index: 2;
}

.current_pg h2 {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

ul.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

ul.breadcrumb li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
}

ul.breadcrumb li a {
    color: rgba(255,255,255,0.7);
}

ul.breadcrumb li a:hover {
    color: var(--gold-primary);
}

ul.breadcrumb li + li::before {
    content: '/';
    color: rgba(255,255,255,0.4);
    padding: 0;
}

/* ==========================================================================
   HOME PAGE - Hero Section (Green Garden Template Classes)
   ========================================================================== */

/* Allow #hero to use the same rules as .hero_section */
#hero,
.hero_section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 640px;
}

#hero .owl-carousel,
#hero .owl-wrapper-outer,
#hero .owl-wrapper,
#hero .owl-item,
#hero .owl-stage-outer,
#hero .owl-stage,
#hero .item {
    height: 100%;
}

#hero .item {
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark green gradient overlay on each slide */
#hero .item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 31, 10, 0.88) 0%,
        rgba(26, 60, 26, 0.82) 55%,
        rgba(45, 90, 45, 0.72) 100%
    );
    z-index: 1;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-primary);
    opacity: 0.6;
    animation: particleFloat 8s infinite ease-in-out;
}

.hero-particle:nth-child(1)  { top: 20%; left: 15%;  animation-delay: 0s;    animation-duration: 7s; }
.hero-particle:nth-child(2)  { top: 60%; left: 25%;  animation-delay: 1s;    animation-duration: 9s; }
.hero-particle:nth-child(3)  { top: 30%; left: 70%;  animation-delay: 2s;    animation-duration: 6s; }
.hero-particle:nth-child(4)  { top: 75%; left: 80%;  animation-delay: 3s;    animation-duration: 8s; }
.hero-particle:nth-child(5)  { top: 50%; left: 50%;  animation-delay: 0.5s;  animation-duration: 10s; }
.hero-particle:nth-child(6)  { top: 10%; left: 85%;  animation-delay: 1.5s;  animation-duration: 7.5s; }
.hero-particle:nth-child(7)  { top: 85%; left: 10%;  animation-delay: 2.5s;  animation-duration: 9.5s; }
.hero-particle:nth-child(8)  { top: 40%; left: 40%;  animation-delay: 4s;    animation-duration: 8s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0)   translateX(0) scale(1); opacity: 0.6; }
    33%       { transform: translateY(-20px) translateX(10px) scale(1.2); opacity: 1; }
    66%       { transform: translateY(10px)  translateX(-8px) scale(0.8); opacity: 0.4; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white) !important;
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--gold-primary);
}

.hero-title .script-text {
    font-family: var(--font-script);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 8px;
    letter-spacing: 1px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 38px;
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons a {
        margin-right: 0 !important;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title .script-text {
        font-size: 1.3rem;
        margin-top: 15px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Gold CTA Button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    color: var(--green-darkest) !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.55);
    color: var(--green-darkest) !important;
}

/* White Outline Button */
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 34px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-white-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Green Solid Button */
.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 15px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-green);
    text-decoration: none;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.45);
    color: var(--white) !important;
}

/* ==========================================================================
   SECTION LAYOUT UTILITIES (Green Garden Template)
   ========================================================================== */

.section-padding {
    padding: 100px 0;
}

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

.section-bg-light {
    background-color: var(--green-tint);
}

/* Section Header (title block) */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: block;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--green-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    color: var(--green-darkest);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--green-primary);
}

.section-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

/* Title Decorator (line-icon-line) */
.title-decorator {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin: 16px auto 20px;
    max-width: 220px;
}

.title-decorator .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
}

.title-decorator .icon {
    color: var(--green-primary);
    font-size: 1.1rem;
}

/* ==========================================================================
   ABOUT SECTION — New Hyphenated Classes
   ========================================================================== */

.about-image-col {
    position: relative;
}

.about-main-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-main-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-main-img:hover img {
    transform: scale(1.04);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    z-index: 2;
}

.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-darkest);
    line-height: 1;
}

.about-experience-badge .years-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--green-darkest);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.2;
}

.about-subtitle {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    color: var(--green-darkest);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-title span {
    color: var(--green-primary);
}

.about-text {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-text h6 {
    font-weight: 600;
    margin: 0 0 3px;
    color: var(--green-darkest);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.about-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--green-pale);
    padding-top: 25px;
    margin-top: 30px;
}

.sig-sign {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--green-primary);
}

/* ==========================================================================
   FEATURED CARDS (Signature Creations)
   ========================================================================== */

.featured-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46,125,50,0.08);
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-lightest);
}

.featured-card .card-image {
    position: relative;
    overflow: hidden;
    height: 240px !important;
    width: 100%;
    min-height: 240px;
    max-height: 240px;
}

.featured-card .card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: var(--transition-medium);
    display: block;
}

.featured-card:hover .card-image img {
    transform: scale(1.08);
}

.featured-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: var(--gold-primary);
    color: var(--green-darkest);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 50px;
}

.featured-card .card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 31, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 2;
}

.featured-card:hover .card-overlay {
    opacity: 1;
}

.featured-card .quick-view {
    background: var(--gold-primary);
    color: var(--green-darkest);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.featured-card .quick-view:hover {
    background: var(--gold-light);
    color: var(--green-darkest);
}

.featured-card .card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-card .card-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-primary);
    margin-bottom: 10px;
}

.featured-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--green-darkest);
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-card .card-title a {
    color: var(--green-darkest);
}

.featured-card .card-title a:hover {
    color: var(--green-primary);
}

.featured-card .card-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 16px;
}

.featured-card .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--green-pale);
    padding-top: 14px;
    margin-top: auto;
}

.featured-card .card-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
}

.featured-card .card-price sub {
    font-size: 0.7rem;
    font-weight: 600;
    vertical-align: baseline;
}

.featured-card .card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.featured-card .card-rating i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.featured-card .card-rating span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 3px;
}

/* ==========================================================================
   MENU ITEMS SECTION (La Carte Grid)
   ========================================================================== */

.menu-item-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(46,125,50,0.08);
    border-radius: var(--border-radius-md);
    padding: 18px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.menu-item-wrapper:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lightest);
}

.menu-item-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
}

.menu-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.menu-item-wrapper:hover .menu-item-thumb img {
    transform: scale(1.1);
}

.menu-item-info {
    flex-grow: 1;
}

.menu-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--green-darkest);
    margin: 0;
}

.menu-item-title a {
    color: var(--green-darkest);
}

.menu-item-title a:hover {
    color: var(--green-primary);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-price sub {
    font-size: 0.65rem;
    font-weight: 600;
}

.menu-item-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   BOOKING / RESERVATION FORM SECTION
   ========================================================================== */

.booking-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-wrap: wrap;
}

.booking-info-pane {
    background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-darker) 100%);
    padding: 50px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 400px;
}

.info-pane-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-pane-title span {
    color: var(--gold-primary);
}

.contact-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-meta-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}

.contact-meta-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-meta-item h6 {
    color: var(--green-lightest);
    margin: 0 0 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-meta-item p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.booking-form-pane {
    padding: 50px;
    background: var(--white);
}

/* Form Controls override for booking section */
#reservations .form-control {
    border: 1px solid rgba(46,125,50,0.25);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--white);
    width: 100%;
}

#reservations .form-control:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

#reservations .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

/* ==========================================================================
   RESPONSIVE — Green Garden Template Classes
   ========================================================================== */

@media (max-width: 991px) {
    #hero,
    .hero_section {
        height: 520px;
        min-height: auto;
    }

    .section-padding {
        padding: 80px 0;
    }

    .about-main-img img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-info-pane,
    .booking-form-pane {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    #hero,
    .hero_section {
        height: auto;
        min-height: 500px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-gold,
    .btn-white-outline,
    .btn-green {
        padding: 13px 26px;
        font-size: 12px;
    }

    .about-experience-badge {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .menu-item-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-head {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .booking-info-pane,
    .booking-form-pane {
        padding: 28px 20px;
    }

    .section-padding {
        padding: 64px 0;
    }
}