/**
* Template Name: NiceRestaurant
* Template URL: https://bootstrapmade.com/nice-restaurant-bootstrap-template/
* Updated: Jun 06 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/


/* Fonts */

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Libre Baskerville", sans-serif;
    --nav-font: "Poppins", sans-serif;
}


/* Global Colors */

:root {
    --background-color: #e6f0fa;
    /* Soft light blue background */
    --default-color: #1e293b;
    /* Deep navy for body text */
    --heading-color: #0f172a;
    /* Strong navy for headings */
    --accent-color: #4f46e5;
    /* Warm gold for highlights */
    --surface-color: #ffffff;
    /* White for cards/surfaces */
    --contrast-color: #ffffff;
    /* White for contrast text */
}


/* Nav Menu Colors */

:root {
    --nav-color: #1e293b;
    /* Navy text in navbar */
    --nav-hover-color: #4f46e5;
    /* Gold hover effect */
    --nav-mobile-background-color: #bfdbfe;
    /* Light blue for mobile menu */
    --nav-dropdown-background-color: #bfdbfe;
    /* Dropdown background */
    --nav-dropdown-color: #1e293b;
    /* Dropdown text */
    --nav-dropdown-hover-color: #4f46e5;
    /* Gold hover */
}


/* Color Presets */

.light-background {
    --background-color: #dbeafe;
    /* Very light blue */
    --surface-color: #ffffff;
    /* White card background */
}

.dark-background {
    --background-color: #1e3a8a;
    /* Deep royal blue */
    --default-color: #ffffff;
    /* White text */
    --heading-color: #4f46e5;
    /* Gold headings */
    --surface-color: #1e293b;
    /* Dark navy card surface */
    --contrast-color: #ffffff;
    /* White contrast text */
}


/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body::before {
    background: linear-gradient(color-mix(in srgb, #000000, transparent 30%), color-mix(in srgb, #000000, transparent 30%)), url("../img/bg/abstract-bg-4.webp") no-repeat center center/cover;
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}


/* Responsive container improvements */

.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 576px) {
    .container,
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.2;
}


/* Responsive typography */

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1.1rem;
    }
    h6 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    h4 {
        font-size: 1.1rem;
    }
    h5 {
        font-size: 1rem;
    }
    h6 {
        font-size: 0.9rem;
    }
}


/*--------------------------------------------------------------
# Global Header - Enhanced Responsive
--------------------------------------------------------------*/

.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    position: relative;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 32px;
    margin-right: 6px;
}

.header .logo i {
    font-size: 20px;
    margin-right: 5px;
    color: var(--accent-color);
}

.header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--heading-color);
}

.header .btn-getstarted {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 13px;
    padding: 6px 20px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;
}

.header .btn-getstarted:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}


/* Mobile Header Improvements */

@media (max-width: 1200px) {
    .header {
        padding: 8px 0;
    }
    .header .logo h1 {
        font-size: 18px;
    }
    .header .btn-getstarted {
        font-size: 12px;
        padding: 5px 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 5px 0;
    }
    .header .logo h1 {
        font-size: 16px;
    }
    .header .logo i {
        font-size: 18px;
    }
    .header .btn-getstarted {
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .header .logo h1 {
        font-size: 14px;
    }
    .header .logo i {
        font-size: 16px;
        margin-right: 3px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu - Enhanced Mobile Experience
--------------------------------------------------------------*/


/* Desktop Navigation */

@media (min-width: 1200px) {
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu a {
        color: var(--nav-color);
        padding: 15px 12px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu li:hover>a,
    .navmenu .active {
        color: var(--nav-hover-color);
    }
}


/* Mobile Navigation Improvements */

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 24px;
        line-height: 0;
        margin-right: 8px;
        cursor: pointer;
        transition: color 0.3s;
        z-index: 9999;
        position: relative;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 50px 15px 15px 15px;
        padding: 8px 0;
        margin: 0;
        border-radius: 8px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 80px);
    }
    .navmenu a {
        color: var(--nav-dropdown-color);
        padding: 12px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 4px;
        margin: 2px 8px;
    }
    .navmenu a:hover,
    .navmenu .active {
        color: var(--nav-dropdown-hover-color);
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 28px;
        top: 12px;
        right: 12px;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.9);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

@media (max-width: 480px) {
    .navmenu ul {
        inset: 45px 10px 10px 10px;
    }
    .navmenu a {
        font-size: 15px;
        padding: 10px 15px;
    }
}


/*--------------------------------------------------------------
# Hero Section - Complete Mobile Overhaul
--------------------------------------------------------------*/

.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .hero-container {
    position: relative;
    padding: 0;
    z-index: 3;
    width: 100%;
}

.hero .hero-container .content-col {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero .hero-container .content-col .content-wrapper {
    max-width: 570px;
    width: 100%;
}

.hero .hero-container .content-col .status-badge {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
    color: var(--accent-color);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero .hero-container .content-col h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero .hero-container .content-col p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero .hero-container .content-col .opening-hours {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--heading-color);
    font-weight: 500;
    flex-wrap: wrap;
}

.hero .hero-container .content-col .opening-hours i {
    font-size: 1.1rem;
    margin-right: 0.6rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.hero .hero-container .content-col .btn-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero .hero-container .content-col .btn-group .btn {
    padding: 0.9rem 1.8rem;
    margin: 0;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    font-size: 0.9rem;
}

.hero .hero-container .content-col .btn-group .btn.btn-book {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid transparent;
}

.hero .hero-container .content-col .btn-group .btn.btn-book:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    transform: translateY(-2px);
}

.hero .hero-container .content-col .social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero .hero-container .content-col .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.hero .hero-container .content-col .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}


/* Hero Swiper */

.hero .hero-container .hero-swiper .swiper-slide .img-container {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 80px);
}

.hero .hero-container .hero-swiper .swiper-slide .img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}

.hero .hero-container .hero-swiper .swiper-button-next,
.hero .hero-container .hero-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: color-mix(in srgb, #000, transparent 70%);
    border-radius: 50%;
    color: var(--contrast-color);
    transition: all 0.3s ease;
}

.hero .hero-container .hero-swiper .swiper-button-next:after,
.hero .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1.1rem;
    font-weight: bold;
}


/* Enhanced Mobile Responsiveness for Hero */

@media (max-width: 1200px) {
    .hero .hero-container .content-col {
        padding: 3rem 2rem;
    }
    .hero .hero-container .content-col h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
    }
    .hero .hero-container .content-col {
        order: 2;
        padding: 2.5rem 1.5rem;
    }
    .hero .hero-container .swiper-col {
        order: 1;
    }
    .hero .hero-container .content-col h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    .hero .hero-container .content-col p {
        text-align: center;
        font-size: 1rem;
    }
    .hero .hero-container .content-col .opening-hours {
        justify-content: center;
    }
    .hero .hero-container .content-col .btn-group {
        justify-content: center;
    }
    .hero .hero-container .content-col .social-links {
        justify-content: center;
    }
    .hero .hero-container .hero-swiper .swiper-slide .img-container {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .hero .hero-container .content-col {
        padding: 2rem 1rem;
    }
    .hero .hero-container .content-col h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .hero .hero-container .content-col p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .hero .hero-container .content-col .status-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    .hero .hero-container .content-col .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .hero .hero-container .content-col .btn-group .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    .hero .hero-container .content-col .opening-hours {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .hero .hero-container .hero-swiper .swiper-slide .img-container {
        height: 40vh;
    }
    .hero .hero-container .hero-swiper .swiper-button-next,
    .hero .hero-container .hero-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    .hero .hero-container .hero-swiper .swiper-button-next:after,
    .hero .hero-container .hero-swiper .swiper-button-prev:after {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero .hero-container .content-col {
        padding: 1.5rem 0.8rem;
    }
    .hero .hero-container .content-col h2 {
        font-size: 1.6rem;
    }
    .hero .hero-container .content-col .social-links a {
        width: 32px;
        height: 32px;
    }
    .hero .hero-container .hero-swiper .swiper-slide .img-container {
        height: 35vh;
    }
    .hero .hero-container .hero-swiper .swiper-button-next,
    .hero .hero-container .hero-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    .hero .hero-container .hero-swiper .swiper-button-next {
        right: 10px;
    }
    .hero .hero-container .hero-swiper .swiper-button-prev {
        left: 10px;
    }
}


/*--------------------------------------------------------------
# Global Sections - Enhanced Responsive
--------------------------------------------------------------*/

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0;
    scroll-margin-top: 70px;
    overflow: clip;
    position: relative;
}

@media (max-width: 768px) {
    section,
    .section {
        padding: 40px 0;
        scroll-margin-top: 60px;
    }
}

@media (max-width: 480px) {
    section,
    .section {
        padding: 30px 0;
    }
}


/*--------------------------------------------------------------
# Section Titles - Mobile Optimized
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 12px 8px 0;
}

.section-title h2:after {
    margin: 0 0 8px 12px;
}

.section-title p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        padding-bottom: 30px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .section-title h2:before,
    .section-title h2:after {
        width: 30px;
    }
    .section-title p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    .section-title h2:before,
    .section-title h2:after {
        width: 25px;
        margin: 0 8px 6px 8px;
    }
    .section-title p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
}


/*--------------------------------------------------------------
# Services Section - Mobile Enhanced
--------------------------------------------------------------*/

.services {
    background-color: var(--background-color);
    padding: 80px 0;
}

.services .service-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    overflow: hidden;
}

.services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.services .service-card:hover::before {
    transform: translateX(0);
}

.services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.services .service-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
}

.services .service-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), #ff6b6b, var(--accent-color));
}

.services .service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.services .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 70%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.services .service-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: conic-gradient(var(--accent-color), transparent, var(--accent-color));
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services .service-card:hover .service-icon::before {
    opacity: 0.3;
}

.services .service-icon i {
    font-size: 2.2rem;
    color: var(--accent-color);
    z-index: 2;
    position: relative;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services .service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-align: center;
}

.services .service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.services .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.services .service-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--default-color);
}

.services .service-features li i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.services .service-action {
    text-align: center;
    margin-top: auto;
}

.services .btn-register {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
    color: var(--contrast-color);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
    position: relative;
    overflow: hidden;
}

.services .btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.services .btn-register:hover::before {
    left: 100%;
}

.services .btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 40%);
    color: var(--contrast-color);
}

.services .btn-register i {
    font-size: 1.1rem;
}


/* Services CTA Section */

.services .services-cta {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 8%));
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.services .services-cta p {
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.services .btn-cta {
    background: transparent;
    color: var(--accent-color);
    padding: 0.9rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services .btn-cta:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}


/* Enhanced Mobile Responsiveness */

@media (max-width: 1200px) {
    .services {
        padding: 60px 0;
    }
    .services .service-card {
        padding: 2rem 1.5rem;
    }
    .services .service-icon {
        width: 70px;
        height: 70px;
    }
    .services .service-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 50px 0;
    }
    .services .service-card {
        margin-bottom: 2rem;
    }
    .services .services-cta {
        text-align: center;
        padding: 2rem;
    }
    .services .services-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
    .services .service-card {
        padding: 1.8rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    .services .service-content h3 {
        font-size: 1.3rem;
    }
    .services .service-content p {
        font-size: 0.95rem;
    }
    .services .service-features li {
        font-size: 0.9rem;
    }
    .services .btn-register {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .services .service-icon {
        width: 60px;
        height: 60px;
    }
    .services .service-icon i {
        font-size: 1.7rem;
    }
    .services .services-cta {
        padding: 1.5rem;
    }
    .services .services-cta h3 {
        font-size: 1.4rem;
    }
    .services .services-cta p {
        font-size: 0.95rem;
    }
    .services .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .services .service-card {
        padding: 1.5rem 1rem;
    }
    .services .service-content h3 {
        font-size: 1.2rem;
    }
    .services .service-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .services .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    .services .btn-register {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
        width: 100%;
    }
    .services .service-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    .services .services-cta {
        padding: 1.2rem;
    }
    .services .services-cta h3 {
        font-size: 1.2rem;
    }
    .services .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services .service-card {
        padding: 1.2rem 0.8rem;
    }
    .services .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    .services .service-icon i {
        font-size: 1.5rem;
    }
    .services .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .services .service-content p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    .services .service-features li {
        font-size: 0.8rem;
    }
    .services .service-features li i {
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    .services .btn-register {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    .services .services-cta {
        padding: 1rem;
    }
}


/* Animation enhancements for mobile */

@media (max-width: 768px) {
    .services .service-card:hover {
        transform: translateY(-5px);
    }
    .services .service-card .service-icon::before {
        animation: none;
        /* Disable rotation animation on mobile for performance */
    }
}


/*--------------------------------------------------------------
# Chefs/Staff Section - Complete Mobile Redesign
--------------------------------------------------------------*/

.chefs .chef-highlight {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chefs .chef-highlight .chef-image img {
    transition: transform 0.6s;
    width: 100%;
    object-fit: cover;
}

.chefs .chef-highlight .chef-details {
    padding: 2rem;
    flex-grow: 1;
}

.chefs .chef-highlight .chef-details h3 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.chefs .chef-highlight .chef-details h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chefs .chef-highlight .chef-details p {
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.chefs .chef-card {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    margin-bottom: 1.5rem;
}

.chefs .chef-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.chefs .chef-card .chef-info {
    padding: 1.25rem;
}

.chefs .chef-card .chef-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.chefs .chef-card .chef-info .role {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.8rem;
    display: block;
}

.chefs .chef-card .chef-info .details {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .chefs .row {
        align-items: stretch;
    }
    .chefs .chef-highlight,
    .chefs .team-container {
        height: 100%;
    }
}


/*--------------------------------------------------------------
# Events Section - Complete Mobile Overhaul
--------------------------------------------------------------*/

.events .gallery-showcase {
    margin-bottom: 3rem;
}

.events .gallery-showcase .main-image,
.events .gallery-showcase .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.events .gallery-showcase .main-image img,
.events .gallery-showcase .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.events .gallery-showcase .main-image img:hover,
.events .gallery-showcase .gallery-item img:hover {
    transform: scale(1.05);
}

.events .gallery-showcase .main-image {
    height: 400px;
}

.events .gallery-showcase .gallery-item {
    height: 192px;
}


/* Enhanced Mobile Responsiveness for Events */

@media (max-width: 1200px) {
    .events .gallery-showcase .main-image {
        height: 350px;
    }
    .events .gallery-showcase .gallery-item {
        height: 170px;
    }
}

@media (max-width: 992px) {
    .events .gallery-showcase .main-image {
        height: 300px;
        margin-bottom: 1rem;
    }
    .events .gallery-showcase .gallery-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .events .gallery-showcase .main-image {
        height: 250px;
    }
    .events .gallery-showcase .gallery-item {
        height: 180px;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .events .gallery-showcase .main-image {
        height: 220px;
    }
    .events .gallery-showcase .gallery-item {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .events .gallery-showcase .main-image {
        height: 200px;
    }
    .events .gallery-showcase .gallery-item {
        height: 140px;
    }
}


/*--------------------------------------------------------------
# Additional Mobile Utilities and Fixes
--------------------------------------------------------------*/


/* Prevent horizontal scroll */

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}


/* Improved button responsiveness */

.btn,
.btn-group .btn {
    min-height: 44px;
    /* Touch-friendly minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .btn,
    .btn-group .btn {
        min-height: 40px;
        font-size: 0.9rem;
    }
}


/* Enhanced spacing for mobile */

@media (max-width: 768px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .row>* {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    .row>* {
        padding-left: 8px;
        padding-right: 8px;
    }
}


/* Improved text readability on mobile */

@media (max-width: 768px) {
    p,
    .testimonial-item p,
    .chef-info .details {
        line-height: 1.6;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    p,
    .testimonial-item p,
    .chef-info .details {
        font-size: 0.9rem;
    }
}


/* Enhanced touch targets for mobile */

@media (max-width: 768px) {
    .social-links a,
    .mobile-nav-toggle,
    .scroll-top {
        min-width: 44px;
        min-height: 44px;
    }
}


/* Swiper mobile improvements */

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        /* Hide on small screens for better UX */
    }
    .swiper-pagination {
        bottom: 10px !important;
    }
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }
}


/* Improved loading states */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    border: 4px solid transparent;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: animate-preloader 1.5s linear infinite;
}

@media (max-width: 480px) {
    #preloader:before {
        width: 40px;
        height: 40px;
        top: calc(50% - 20px);
        left: calc(50% - 20px);
        border-width: 3px;
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top::before {
    content: "";
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-135deg);
}


/* Tablet size */

@media (max-width: 768px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        right: 10px;
    }
    .scroll-top::before {
        padding: 5px;
    }
}


/* Mobile size */

@media (max-width: 480px) {
    .scroll-top {
        width: 36px;
        height: 36px;
        right: 8px;
    }
    .scroll-top::before {
        padding: 4px;
    }
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

@media (max-width: 480px) {
    .scroll-top.active {
        bottom: 10px;
    }
}


/* Additional Animation Optimizations for Mobile */

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
    [data-aos] {
        transition-duration: 0.4s !important;
    }
}


/* Performance optimizations for mobile */

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    input,
    textarea {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}


/* High DPI Display Support */

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero .hero-container .hero-swiper .swiper-slide .img-container img,
    .chefs .chef-highlight .chef-image img,
    .chefs .chef-card .chef-img img,
    .events .gallery-showcase img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}


/* Dark mode improvements for mobile */

@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .header {
        background-color: rgba(0, 0, 0, 0.95);
    }
    .navmenu ul {
        background-color: rgba(0, 0, 0, 0.98);
    }
}


/* Landscape mobile orientation */

@media (max-width: 896px) and (orientation: landscape) {
    .hero .hero-container .content-col {
        padding: 1.5rem 1rem;
    }
    .hero .hero-container .content-col h2 {
        font-size: 1.8rem;
    }
    .hero .hero-container .hero-swiper .swiper-slide .img-container {
        height: 60vh;
    }
    .section,
    section {
        padding: 30px 0;
    }
}


/* Very small screens (iPhone SE, etc.) */

@media (max-width: 375px) {
    .container,
    .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }
    .hero .hero-container .content-col {
        padding: 1.2rem 0.6rem;
    }
    .hero .hero-container .content-col h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .hero .hero-container .content-col .status-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.8rem;
    }
    .section-title h2 {
        font-size: 1.3rem;
    }
    .chefs .chef-card .chef-info {
        padding: 0.6rem;
    }
    .testimonials .testimonial-item {
        padding: 12px;
        margin: 10px 5px;
    }
}