@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-color: #d4af37;
    --dark-text-color: #333;
    --light-text-color: #555;
    --background-light: #f8f8f8;
    --background-card: #ffffff;

    --dark-bg-color: #222;
    --text-light: #fff;
    --text-dark: #333;
}
* {
    margin: 0;.read-more
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    height: 100%;
    font-family: "poppins", sans-serif;
    /* font-family: "Great Vibes", cursive; */
    background-color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: none;
}

/* Class for scrolled state */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

header.scrolled nav ul li a {
    color: #000 !important;
}

header.scrolled .logo {
    /* color: #000; */
    display: none;
}

.header-inner {
    max-width: 1500px;
    margin: auto;
    padding: 20px 50px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.logo img {
    width: 100%;
    max-width: 85px;
    height: 85px;
}
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}
nav ul li a {
    color: #f0c040;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #f0c040;
}

.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 30px;
    top: 25px;
}

/* NAVIGATION */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li a {
    color: #f0c040;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Responsive Adjustments for Header */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: row; /* Keep row for logo and hamburger */
        justify-content: space-between; /* Space out logo and hamburger */
        align-items: center;
        padding: 10px 20px; /* Adjust padding */
        height: auto; /* Adjust height as content flows */
    }
    .logo {
        position: static;
        transform: none;
        text-align: left; /* Align logo to the left */
        margin: 0; /* Remove margin-bottom */
    }
    .hamburger {
        display: block;
        position: static; /* Position static within flex container */
        top: auto;
        right: auto;
    }

    .nav-menu {
        display: none;
        width: 100%;
        background-color: black; /* Black background for the menu */
        position: absolute;
        top: -10%; /* Position below the header */
        left: 0;
        height:60vh;
        padding: 15px 0;
        box-sizing: border-box; /* Include padding in width */
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center items horizontally */
    }

    .nav-menu ul {
        flex-direction: column; /* Stack items vertically */
        gap: 5px; /* Adjust gap for vertical spacing */
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
        width: 100%; /* Take full width of the nav-menu */
        text-align: center; /* Center text within li */
    }

    .nav-menu ul li {
        width: 100%; /* Make each list item take full width */
    }

    .nav-menu ul li a {
        color: #f0c040; /* White color for menu items */
        padding: 10px;
        display: block; /* Make links block level for full clickable area */
        font-size: 20px;
        text-align: center; /* Ensure text is centered */
    }
}

@media (max-width: 480px) {
    /* No additional changes needed here as 768px media query handles vertical stacking */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    animation: zoomInOut 25s ease-in-out infinite;
}
.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    color: #fff;
    text-align: center;
}
.hero-content h5 {
    font-family: "Cinzel", serif;
    font-size: 26px;
    font-weight: 400;
    color: #f0c040;
    text-transform: uppercase;
    margin-bottom: 6px;
    position: relative;
    padding: 0 60px;
}

.hero-content h1 {
    white-space: nowrap;
    overflow: visible;
    font-size: clamp(1.5rem, 5vw, 60px);
    font-family: "Cinzel", serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin: 20px 0;
    text-shadow: black -6.06691px -11.1902px 9.54676px;
}

.hero-content h1::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1000px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content h1::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content h1::before {
    top: -10px;
}

.hero-content h1::after {
    bottom: -10px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 20px 0;
    color: #fff;
}
.hero-content a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s;
    position: relative;
}

.hero-content a::before,
.hero-content a::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content a::before {
    top: 0px;
}

.hero-content a::after {
    bottom: 0px;
}

/* Responsive Adjustments for Hero Section */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero-content h5 {
        padding: 0 40px;
    }
    .hero-content h5::before,
    .hero-content h5::after {
        width: 30px;
    }
    .hero-content h1::before,
    .hero-content h1::after {
        width: 200px;
    }
    .hero-content a::before,
    .hero-content a::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 13px;
    }
}

/* about-section css starts --------- */

.background-image-section {
    width: 100%;
    max-width: 1500px;
    margin: 80px auto;
    overflow: hidden;
}

.kitchen-image-container {
    width: 80%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* New Spice Lab About Section */
.spice-lab-about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.spice-lab-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.spice-lab-image-container img {
    width: 100%;
    max-width: 450px;
    height: 540px;
    display: block;
    margin: 0 auto;
    transform: translateY(-150px);
}

.spice-lab-content {
    flex: 1;
    min-width: 400px;
    text-align: left;
}

.spice-lab-content h3 {
    font-family: "Cinzel", serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.spice-lab-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
}

.spice-lab-content p {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.spice-lab-content .read-more-btn {
    display: inline-block;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #d4af37;
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.spice-lab-content .read-more-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.spice-lab-content .read-more-btn:hover {
    color: #a88a2e;
}

.spice-lab-content .read-more-btn:hover::after {
    width: 110%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .kitchen-image-container {
        height: 500px;
    }
    .spice-lab-about-section {
        gap: 30px;
        padding: 15px;
    }
    .spice-lab-image-container,
    .spice-lab-content {
        min-width: unset;
        flex: 1 1 45%;
    }
    .spice-lab-image-container img {
        max-width: 100%;
        transform: translateY(-80px);
    }
}

@media (max-width: 768px) {
    .background-image-section {
        margin: 40px auto;
    }
    .kitchen-image-container {
        width: 100%;
        height: 350px;
    }
    .spice-lab-about-section {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    .spice-lab-image-container,
    .spice-lab-content {
        width: 100%;
        flex: none;
    }
    .spice-lab-image-container img {
        transform: translateY(-60px);
    }
    .spice-lab-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .spice-lab-content .read-more-btn {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .kitchen-image-container {
        height: 250px;
    }
    .spice-lab-image-container img {
        transform: translateY(-40px);
    }
    .spice-lab-content h3 {
        font-size: 24px;
    }
    .spice-lab-content p {
        font-size: 13px;
    }
    .spice-lab-content .read-more-btn {
        font-size: 13px;
    }
}

/* slider section css starts -------------   */
.slider-section {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background slides for slider section */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slider-bg.active {
    opacity: 1;
}



.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}



.slide {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.slide.active {
    display: block;
    opacity: 1;
    position: relative;
    transform: translateY(0);
}

.slider-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    max-width: 700px;
    width: 90%; /* Makes it adapt to smaller screens */
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.slider-card h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #f7941d, #a357f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.slider-card p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 25px;
}

.slider-card:hover {
    transform: translateY(-5px);
}

/* Responsive styles for mobile devices */
@media (max-width: 600px) {
    .slider-card {
        padding: 20px;
        border-radius: 16px;
    }

    .slider-card h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .slider-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}


.slider-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #f7941d, #a357f7);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
    transition: 0.3s ease;
    text-decoration: none;
}

.slider-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #a357f7, #f7941d);
}

.slider-arrow {
    background: #f7941d;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #a357f7;
}

.slider-arrow.prev {
    margin-right: 20px;
}

.slider-arrow.next {
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .slide h2 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .slider-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* promo-banner css starts ----------   */
.promo-banner {
    width: 100%;
    height: 30vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #054b5b;
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: clamp(1.5rem, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.promo-banner p {
    font-size: clamp(1.5rem, 3vw, 36px);
}

/* latest-news section css starts -------------   */

/* === Latest News Section === */

.latest-news-section {
    background: url("img/rest-6.jpg") center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

.latest-news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.latest-news-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    z-index: 1;
    padding: 20px;
}

.news-image,
.news-content {
    flex: 1 1 450px;
    max-width: 600px;
    width: 100%;
    min-width: 280px;
}

.news-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.news-content {
    color: #fff;
    padding: 0 15px;
    text-align: left;
}

.news-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: #f5c851;
    margin-bottom: 5px;
}

.news-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.news-date {
    font-size: 0.875rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 10px;
}

.news-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

.read-more-btn {
    font-size: 0.95rem;
    color: #f5c851;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f5c851;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #fff;
    border-color: #fff;
}

/* === Responsive Styling === */

@media (max-width: 768px) {
    .latest-news-container {
        flex-direction: column;
        text-align: center;
                margin-left: -12rem;
        gap: 30px;
        padding: 10px;
    }

    .news-content {
        text-align: center;
        /*padding: 0 15px;*/
        width: 100%;
        max-width: 385px;
        margin-left: 155px;
    }

    .news-title {
        font-size: 1.5rem;
    }

    .news-desc {
        font-size: 0.95rem;
    }
    
    .slider-track{
        width:100%;
        max-width: 600px !important;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .latest-news-section {
        padding: 60px 10px;
    }

    .news-title {
        font-size: 1.3rem;
    }

    .news-desc {
        font-size: 0.9rem;
    }

    .read-more-btn {
        font-size: 0.9rem;
        margin-left:100px;
    }
}


/* testimonial Reviews Area Styling */
.reviews-area {
    max-width: 1540px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.reviews-title-block {
    margin-bottom: 40px;
}

.reviews-title-block .subtitle-text {
    font-family: urbanist, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 32px);
    color: #d4af37;
    margin-bottom: 5px;
}

.reviews-title-block .primary-title {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.reviews-title-block .primary-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #d4af37;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0 50px;
}

.review-panel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    flex-wrap: nowrap;
}

.review-panel {
    flex: 0 0 calc(33.33% - 30px);
    box-sizing: border-box;
    padding: 30px;
    margin: 0 15px;
    background-color: #414040;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-panel:hover {
    flex: 0 0 calc(33.33% - 30px);
    box-sizing: border-box;
    padding: 30px;
    margin: 0 15px;
    background-color: rgba(95, 87, 87, 0.05);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviewer-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #d4af37;
}

.reviewer-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

.rating-icons {
    color: #d4af37;
    font-size: 18px;
}
.rating-icons span {
    margin-right: 2px;
}

.review-content {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}

.review-panel:hover .reviewer-title,
.review-panel:hover .review-content {
    color: #000;
}

.nav-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

/* Indicator Dots */
.indicator-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator-dot.current {
    background-color: #d4af37;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .review-panel {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .reviews-area {
        padding: 10px;
    }
    .reviews-title-block .primary-title {
        font-size: 36px;
    }
    .review-panel {
        flex: 0 0 calc(100% - 30px);
        margin: 0 15px;
        padding: 20px;
    }
    .nav-button {
        padding: 10px 8px;
        font-size: 20px;
    }
    .carousel-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .reviews-title-block .subtitle-text {
        font-size: 24px;
    }
    .reviews-title-block .primary-title {
        font-size: 30px;
    }
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    .reviewer-title {
        font-size: 16px;
    }
    .rating-icons {
        font-size: 16px;
    }
    .review-content {
        font-size: 14px;
    }
}

/* map section css starts ------------   */
.map-section {
    width: 100%;
    max-width: 1500px;
    margin: 40px auto 0 auto;
    padding: 20px;
    /* border-radius: 12px; */
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* border-radius: 8px; */
    display: block;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.zoom-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #4285f4;
    color: #4285f4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.zoom-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.zoom-in::before {
    content: "+";
}

.zoom-out::before {
    content: "−";
}

@media (max-width: 768px) {
    .map-section {
        margin: 20px auto;
        padding: 15px;
    }

    .map-container {
        height: 260px;
    }

    .zoom-controls {
        bottom: 15px;
        right: 15px;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 200px;
    }

    .zoom-controls {
        bottom: 10px;
        right: 10px;
    }

    .zoom-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* about-page css starts --------------   */

.about-hero {
    background-size: cover;
    background-position: center;
    height: 40vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 70px;
    margin-bottom: 10px;
    color: #fff;
}

.about-hero p {
    font-size: 25px;
    color: #fff;
}

/* about-us section css starts ------------   */
.container-fluid {
    width: 100%;
    padding: 40px;
    margin: 60 auto;
    margin-top: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.gx-5 > * {
    padding-left: 15px;
    padding-right: 15px;
}

.col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
    margin-bottom: 30px;
}

.col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.section-title {
    font-family: "Urbanist", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.display-3 {
    font-family: "Cinzel", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text-color);
}

p {
    font-size: 1rem;
    color: var(--light-text-color);
}

.col-lg-5 {
    min-height: 500px;
}

.position-relative {
    position: relative;
}

.h-100 {
    height: 100%;
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.start-0 {
    left: 0;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-bottom {
    border-bottom-left-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-end {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.object-fit-cover {
    object-fit: cover;
}

.animate-rotate {
    width: 160px;
    height: 160px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bg-light {
    background-color: var(--background-card) !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .col-lg-5,
    .col-lg-7 {
        width: 100%;
        margin-bottom: 30px;
    }
    .col-lg-5 {
        min-height: 400px;
    }
}

@media (max-width: 575.98px) {
    .col-sm-6 {
        width: 100%;
        margin-bottom: 20px;
    }
    .col-sm-6:last-child {
        margin-bottom: 0;
    }
    .container-fluid {
        padding: 20px;
    }

}

/* Stats Section Styling */
.stats-section {
    background-color: var(--dark-bg-color);
    padding: 80px 20px;
    color: var(--text-light);
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.stat-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.stat-title {
    font-family: "Cinzel", serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-light);
}

.stat-number {
    font-family: "Cinzel", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-container {
        gap: 30px;
    }
    .stat-item {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 20px;
    }
    .stat-item {
        flex: 1 1 100%;
    }
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    .stat-icon i {
        font-size: 30px;
    }
    .stat-title {
        font-size: 1rem;
    }
}

/* Expert Chefs Section css starts -------- */
.chef-section {
    background-color: #fff;
    padding: 60px 0;
    margin: 0 auto;
}

.section-subtitle {
    text-transform: uppercase;
    color: #f26440;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.chef-box {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    gap: 50px;
    clip-path: path(
        "M 0 80 Q 0 0 80 0 L 320 0 Q 400 0 400 80 L 400 500 L 0 500 Z"
    );
    transition: transform 0.3s ease;
}

.chef-box img {
    width: 100%;
    max-width: 400px;
    height: 380px;
    display: block;
    object-fit: cover;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.chef-info {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transition: bottom 0.4s ease;
}

.chef-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.chef-info p {
    margin: 0;
    font-size: 18px;
    opacity: 0.8;
    color: #c7c4c4;
    letter-spacing: 5px;
    word-spacing: 6px;
}

.chef-box:hover .chef-info {
    bottom: 0;
}

/* culinary-showcase css starts -------------------   */

.culinary-showcase {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

.slider-wrapper {
    max-width: 1500px;
    margin: auto;
    overflow: hidden;
}

.image-strip {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scrollSlider 30s linear infinite;
}

.image-strip img {
    width: calc(100vw / 6);
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-strip img:hover {
    transform: scale(1.05);
}

/* Sliding animation */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* gallery-section css starts --------------    */
.gallery-hero {
    background-image: url("img/gallery-banner-3.jpg");
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
    /*background-color: black;*/
    padding: 12px 15px;
}

.gallery-hero p {
    font-size: 25px;
    color: #fff;
}

.image-carousel-container {
    width: 1500px;
    overflow: hidden;
    margin: 50px auto;
}

.image-carousel-track {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 400px;
    height: 250px;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* gallery section starts here -----------   */

.gallery-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.gallery-container {
    position: relative;
    max-width: 1500px;
    margin: auto;
    overflow: hidden;
}

.gallery-slider-wrapper {
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.gallery-card {
    min-width: calc(100% / 3 - 13.3px);
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-info {
    padding: 15px;
}

.card-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.card-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #777;
}

/* Buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.gallery-btn.prev {
    left: 10px;
}

.gallery-btn.next {
    right: 10px;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-card {
        min-width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 600px) {
    .gallery-card {
        min-width: 100%;
    }
}

/* food-gallery section starts here -------------   */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.food-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.food-gallery .gallery-item img:hover {
    transform: scale(1.03);
}

/* contact-us page css starts ------------ */

.contact-hero {
    background-size: cover;
    background-position: center;
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #fff;
    margin-top: 30px;
}

.contact-hero p {
    font-size: 25px;
    color: #000;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 80px;
}

.section-heading .sub-title {
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.5rem, 2.5vw, 32px);
    color: var(--primary-color);
    margin-bottom: 5px;
}

.section-heading .main-title {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-heading .main-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Location Cards Styling */
.location-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.location-card .icon-wrapper i {
    color: #fff;
    font-size: 30px;
}

.location-card h4 {
    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 15px;
    color: var(--text-light-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Form Styling */
.reservation-hero {
    background-image: url("img/reservation-2.webp");
    background-size: cover;
    background-position: center;
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reservation-hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #fff;
    margin-top: 30px;
}

.contact-form-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 20px;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading .sub-title {
    font-family: "Cinzel", serif;
    color: #b3804d;
    font-size: 18px;
    margin-bottom: 5px;
}

.section-heading .main-title {
    font-family: "Cinzel", serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    position: relative;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form .form-group label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
    box-shadow: none !important;
    padding: 5px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    background-color: transparent;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #aaa;
    font-family: "Urbanist", sans-serif;
}

select.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    font-size: 16px;
    color: var(--text-dark);
    font-family: "Urbanist", sans-serif;
}

select.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

.book-table-btn {
    display: block;
    margin: 40px auto 0;
    padding: 15px 40px;
    font-size: 18px;
    font-family: "Cinzel", serif;
    background-color: var(--dark-bg-color);
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

#guestNumber option {
    text-align: center;
}

.book-table-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

@media (max-width: 767.98px) {
    .section-heading .main-title {
        font-size: 36px;
    }
    .section-heading .sub-title {
        font-size: 24px;
    }
    .location-card {
        padding: 20px;
    }
    .location-card h4 {
        font-size: 18px;
    }
    .location-card p {
        font-size: 14px;
    }
    .contact-form-section {
        margin-bottom: 50px;
    }
    .book-table-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 575.98px) {
    .location-card {
        margin-bottom: 20px;
    }
    .container-fluid {
        padding: 15px;
    }
    .form-group {
        margin-bottom: 30px;
    }
}

/* blog page css starts --------------------   */
.blog-hero {
    background-image: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092");
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

header h1 {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 2.5rem;
}

.blog-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

p{
        font-family: "Urbanist", sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    background: #d4af37;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #b03e00;
}

section.blog-posts {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.blog-posts h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.post-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card .content {
    padding: 20px;
}

.post-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-card p {
    font-size: 0.95rem;
    color: #555;
}

section.chef-picks {
    padding: 60px 20px;
    background: var(--accent-color);
}

.chef-picks h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.pick-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.pick-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pick-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.pick-card .text {
    padding: 15px;
}

.pick-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pick-card p {
    font-size: 0.9rem;
    color: #666;
}
@media (max-width: 500px) {
    header h1 {
        font-size: 1.8rem;
        padding: 15px 20px;
    }
}

/* single-blog-page css starts -----------   */
/* Main Blog Content Styling */
.single-blog-section {
    margin: 60px auto;
    padding: 100px 0;
}

.main-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.8;
}

/* Blog Image */
.main-content .post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Main Heading */
.main-content h3 {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Post Metadata */
.main-content .text-muted {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Paragraphs */
.main-content p {
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Section Headings */
.main-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111;
}

/* Lists */
.main-content ul {
    padding-left: 18px;
    margin-bottom: 16px;
}

.main-content ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Blockquote Styling */
.main-content blockquote {
    font-style: italic;
    border-left: 4px solid #ccc;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-family: "Georgia", serif;
    font-size: 1.05rem;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }

    .main-content h3 {
        font-size: 1.6rem;
    }

    .main-content h5 {
        font-size: 1.1rem;
    }

    .main-content blockquote {
        font-size: 1rem;
    }
}

.sidebar {
    background: #fff;
    padding: 25px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 3px solid transparent;
    position: relative;
}

/* Decorative left border using pseudo-element */
.sidebar::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    height: 22px;
    width: 3px;
    background: linear-gradient(
        to bottom,
        #d4af37,
        #8b6f2f
    ); /* Golden gradient */
    border-radius: 3px;
}

/* Sidebar Titles */
.sidebar-title {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-left: 5px;
    color: #222;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

/* Sidebar List */
.sidebar-list li {
    margin-bottom: 8px;
}

.sidebar-list li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    line-height: 1.4;
}

.sidebar-list li a:hover {
    color: #d4af37; /* Gold hover */
    text-decoration: underline;
}

/* Optional: tighter spacing on smaller devices */
@media (max-width: 576px) {
    .main-content,
    .sidebar {
        padding: 20px;
    }

    .main-content h3,
    .main-content h5 {
        font-size: 1.2rem;
    }

    .main-content p,
    .main-content li {
        font-size: 0.95rem;
    }
    .sidebar {
        padding: 20px 15px;
    }

    .sidebar-title {
        font-size: 1rem;
    }

    .sidebar-list li a {
        font-size: 0.9rem;
    }
}

/* footer section css starts -------------------   */
.footer {
    background-color: #222;
    background-image: url("img/rest-5.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-main-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.footer-col {
    flex: 1 1 22%;
    min-width: 220px;
    text-align: left;
}

.footer-brand-intro h4 {
    font-family: "Cinzel", serif;
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-brand-intro p {
    font-size: 15px;
    color: #ddd;
}

.footer-col h5 {
    font-family: "Cinzel", serif;
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p,
.footer-col ul {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

/* Social Icons */
.footer-social-icons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-social-icons-wrapper a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social-icons-wrapper a:hover {
    color: #d4af37;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    width: 100%;
}

.footer-bottom p {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        align-items: center;
        text-align: center;
    }

    .footer-main-columns {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    .footer-social-icons-wrapper {
        align-items: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-brand-intro h4 {
        font-size: 20px;
    }

    .footer-brand-intro p,
    .footer-col p,
    .footer-col ul li {
        font-size: 14px;
    }

    .footer-col h5 {
        font-size: 16px;
    }

    .footer-social-icons-wrapper a {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
