:root {
    --gold: #D4AF37;
    --dark: #1A1A1A;
    --light: #F8F8F8;
    --accent: #8B0000;
    --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    --primary: #ff6b6b;
    --secondary: #ffa502;
    --dark: #2f3542;
    --light: #f1f2f6;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark);
    padding: 16px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: transparent;
    color: white;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn:hover:after {
    left: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-title {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-description {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

/* Navigation Links */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover:before {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);

}

.cta-button:before {
    display: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.fa-bars {
    font-size: 25px;
    color: var(--dark);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 99;
    }

    .main-nav.active2 {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0 30px;
    }

    .main-nav ul li {
        width: 100%;
        margin: 15px 0;

    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 10px 0 !important;
    }

    .nav-link:before {
        height: 100%;
        width: 0;
        background: rgba(255, 107, 107, 0.1);
        bottom: 0;
        transition: width 0.3s ease;
    }

    .nav-link:hover:before {
        width: 100%;
    }

    /* Animate hamburger to X */
    .mobile-menu-btn.active2 .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
        background: var(--primary);
    }

    .mobile-menu-btn.active2 .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active2 .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
        background: var(--primary);
    }

    /* Overlay when menu is open */
    .main-nav:after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .main-nav.active2:after {
        opacity: 1;
        pointer-events: all;
    }

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


}

@media (max-width: 576px) {
    .main-nav {
        width: 100%;
        right: -100%;
    }

    .main-nav.active2 {
        right: 0;
    }

}


/* ===== Hero Gallery ===== */
.hero-gallery {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
    z-index: 2;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 1s ease;
    transition-delay: 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: 72px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Gallery Indicators */
.gallery-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===== Premium Section ===== */
.premium-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

.premium-image {
    flex: 1;
    min-width: 400px;
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.premium-image:before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.premium-content {
    flex: 1;
}

.premium-text {
    font-size: 18px;
    margin-bottom: 45px;
    color: #555;
    line-height: 1.9;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

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

.feature-icon {
    color: var(--gold);
    font-size: 26px;
    margin-top: 5px;
    min-width: 26px;
}

.feature-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* ===== Signature Dishes ===== */
.signature-section {
    background-color: #f1f1f1;
}

.dishes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dish-card {
    width: 300px;
    background: white;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dish-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
}

.dish-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 25px;
}

.dish-name {
    font-size: 24px;
    margin-bottom: 15px;
}

.dish-desc {
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== Hygiene Section ===== */
.hygiene-section {
    background-color: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.hygiene-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://livesta.in/the-can-teen/wp-content/uploads/sites/4/2023/05/hygiene-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hygiene-container {
    position: relative;
    z-index: 2;
}

.hygiene-title {
    color: white;
}

.hygiene-subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    color: var(--gold);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hygiene-subtitle:before,
.hygiene-subtitle:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hygiene-subtitle:before {
    left: -50px;
}

.hygiene-subtitle:after {
    right: -50px;
}

.hygiene-text {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.9;
}

.hygiene-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.hygiene-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 220px;
    transition: var(--transition);
}

.hygiene-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.hygiene-feature i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hygiene-feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hygiene-feature p {
    font-size: 14px;
    color: #aaa;
}

.cuisine-types {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.cuisine-type {
    font-size: 18px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-weight: 500;
}

.cuisine-type:not(:last-child):after {
    content: '•';
    position: absolute;
    right: -25px;
    color: white;
}

.testimonials {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 400px;
    background: #f9f9f9;
    padding: 40px;
    scroll-snap-align: start;
    text-align: left;
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--gold);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #777;
}

.reservation-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://livesta.in/the-can-teen/wp-content/uploads/sites/4/2023/05/reservation-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-title {
    color: white;
}

.reservation-text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.reservation-btn {
    background: transparent;
    color: white;
    border-color: white;
}

.reservation-btn:hover {
    background: white;
    color: var(--dark);
}

/* ===== Footer ===== */
footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #aaa;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

.footer-heading {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.map-container iframe {
    border-radius: 25px;
}

.menu-section {
    width: 100%;
    position: relative;
    background-color: rgb(74, 63, 63);
    min-height: 300px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .premium-section {
        gap: 50px;
    }

    .premium-image {
        min-width: 350px;
        height: 550px;
    }

    .section-title {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .premium-section {
        flex-direction: column;
    }

    .premium-image {
        width: 100%;
        max-width: 500px;
        margin-bottom: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 18px;
    }

    nav ul {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hygiene-subtitle:before,
    .hygiene-subtitle:after {
        width: 30px;
    }

    .hygiene-subtitle:before {
        left: -40px;
    }

    .hygiene-subtitle:after {
        right: -40px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 13px;
    }

    .premium-image {
        height: 400px;
    }

    .premium-image:before {
        top: -15px;
        left: -15px;
    }

    .testimonial {
        min-width: 300px;
        padding: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }
}

/* Basic styles for the slideshow */
.hero-gallery {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    /* Semi-transparent dark background */
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}



.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f4a261;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e76f51;
}

/* Indicators (dots) */
.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #f4a261;
}

.book-slider {
    position: relative;
    display: flex;
    background-color: transparent;
    margin: 0px 1rem;
    z-index: 1;
}

