:root {
    --primary: #fbb034;
    /* Warm Saffron/Gold */
    --primary-dark: #e59a1f;
    --secondary: #2d6a4f;
    /* Deep Green */
    --accent: #e9edc9;
    --text: #333;
    --text-light: #777;
    --white: #ffffff;
    --dark: #1a1a1a;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 1s ease-out forwards;
}

.loader-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(251, 176, 52, 0.3));
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: loading 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background-color: #fefae0;
    /* Creamy background */
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.header.scrolled .brand-name,
.header.scrolled .nav-links a {
    color: var(--dark);
}

.header.scrolled .nav-links a.active {
    color: var(--primary);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
}

.brand-name {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background-color: var(--dark);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    height: 100%;
}

.carousel-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    transition: opacity 1s ease-in-out;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary);
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Hero Nav Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.nav-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* About */
.about {
    background-color: var(--white);
    background-image: radial-gradient(circle at 2px 2px, var(--bg-light) 1px, transparent 0);
    background-size: 40px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle-orange {
    color: #e67e22;
    /* Specific orange from reference */
    font-weight: 700;
    text-transform: capitalize;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.about-content {
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-img-wrapper {
    overflow: hidden;
    border-radius: 0;
    height: 450px;
    /* Tall vertical images */
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(100px);
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), opacity 1.2s ease;
    will-change: transform, opacity;
}

.reveal-down {
    opacity: 0;
    transform: translateY(-100px);
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), opacity 1.2s ease;
    will-change: transform, opacity;
}

.fade-in.active,
.reveal-up.active,
.reveal-down.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        text-align: center !important;
    }

    .about-img-wrapper {
        height: 350px;
    }
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

/* Catering Section */
.bg-light {
    background-color: #f8f9fa;
}

.catering-list {
    margin-bottom: 2rem;
}

.catering-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.catering-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.text-left {
    text-align: left;
}

/* Booking */
.booking {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/parallax_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stylish-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.booking-content {
    max-width: 100%;
}

.text-white {
    color: var(--white);
}

/* Gallery */
.gallery {
    padding: 0;
    overflow: hidden;
    background: var(--dark);
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    width: calc(200%);
    /* Double width for the duplicate items */
    animation: scroll 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex: 0 0 calc(100% / 10);
    /* 10 items total (5 original + 5 duplicates) */
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer .grid-4 {
    gap: 4rem;
    grid-template-columns: 1.8fr 0.8fr 1.2fr 1.2fr;
}


.footer-desc {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}



.footer h4 {
    margin-bottom: 2rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: var(--transition);
    color: var(--white);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .grid-2,
    .grid-4,
    .footer .grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }


    .header .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--white) !important; /* Force white text on dark background */
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--white) !important;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--white) !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Catering Page Styles */
.catering-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/catering_hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.catering-hero .section-title {
    color: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(251, 176, 52, 0.1);
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.max-600 {
    max-width: 600px;
}

.mx-auto {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* Locations Page Styles */
.locations-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/locations_hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 5rem 0;
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.location-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .card-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 2.5rem;
    flex-grow: 1;
}

.location-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.location-info p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.4;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
}
.icon-location { background: #e53935; }
.icon-time { background: #9e9e9e; }
.icon-phone { background: var(--primary); }

.card-footer {
    padding: 0 2.5rem 2.5rem;
}

.book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(251, 176, 52, 0.3);
}

.book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 176, 52, 0.4);
}

/* App Badges Styling */
.app-badges-wrapper {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.app-badge-img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.5px solid var(--primary);
    background: #000;
}

.app-badge-img:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(251, 176, 52, 0.1);
}

@media (max-width: 768px) {
    .app-badges-wrapper {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

