@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Merienda:wght@400;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Color Variables */
:root {
    --primary-color: #2E7D32;      /* Dark Green */
    --primary-light: #4CAF50;      /* Medium Green */
    --primary-dark: #1B5E20;       /* Darker Green */
    --secondary-color: #81C784;    /* Light Green */
    --secondary-light: #A5D6A7;    /* Lighter Green */
    --secondary-dark: #66BB6A;     /* Medium Light Green */
    --accent-color: #1B5E20;       /* Deep Green */
    --accent-light: #388E3C;       /* Medium Dark Green */
    --text-dark: #3D2C29;          /* Deep Brown */
    --text-medium: #6D5047;        /* Medium Brown */
    --text-light: #9C7A6B;         /* Light Brown */
    --white: #FFFFFF;
    --off-white: #FFF8E1;          /* Cream White */
    --black: #212121;
    --shadow-sm: 0 3px 5px rgba(232, 90, 25, 0.1);
    --shadow-md: 0 5px 10px rgba(232, 90, 25, 0.15);
    --shadow-lg: 0 8px 20px rgba(232, 90, 25, 0.2);
    --glow-sm: 0 0 5px rgba(255, 183, 70, 0.5);
    --glow-md: 0 0 10px rgba(255, 183, 70, 0.5);
    --glow-lg: 0 0 20px rgba(255, 183, 70, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --card-radius: 12px;
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    background-color: var(--white);
    color: var(--text-color);
    font-size: 16px;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Berkshire Swash', cursive;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

a:hover {
    color: var(--secondary-color);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Button styles */
.btn, .cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Merienda', cursive;
    text-transform: none;
}

.btn::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        transparent 25%, 
        rgba(255, 255, 255, 0.2) 45%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 75%, 
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: -1;
}

.btn::after, .cta-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover, .cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--glow-md);
}

.btn:hover::before, .cta-button:hover::before {
    transform: translateX(100%);
}

.btn:hover::after, .cta-button:hover::after {
    opacity: 1;
}

.btn:active, .cta-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: var(--shadow-sm);
    transition: 0.1s;
}

/* Section dividers */
.section-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    height: 30px;
    background: url('images/decorative/fancy-divider.svg') no-repeat center center;
    background-size: contain;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(232, 90, 25, 0), rgba(232, 90, 25, 0.3) 50%, rgba(232, 90, 25, 0));
    width: 30%;
    z-index: 1;
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.section-divider i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--glow-sm);
    margin-top: -15px;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--glow-sm); }
    50% { box-shadow: var(--glow-md); }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Interactive Navigation and Animation Styles */

/* The animated header that appears when scrolling down */
#animated-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 248, 225, 0.96);
    box-shadow: 0 8px 25px rgba(232, 90, 25, 0.25);
    padding: 0.5rem 0;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 0;
}

#animated-header.visible {
    transform: translateY(0);
    opacity: 1;
}

#animated-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

#animated-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: url('images/decorative/fancy-border.svg') repeat-x bottom center;
    background-size: auto 100%;
    opacity: 0.7;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 1rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.mini-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#mini-logo-img {
    height: 55px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(232, 90, 25, 0.4));
    transform-origin: center;
}

/* Cool menu interaction elements */
.interactive-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 248, 225, 0.85);
    padding: 1.5rem 0.5rem;
    border-radius: 30px 0 0 30px;
    box-shadow: -5px 0 20px rgba(232, 90, 25, 0.2);
    z-index: 990;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-left: 3px solid var(--secondary-color);
    opacity: 0;
    transform: translateX(100%) translateY(-50%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.5s ease;
}

.interactive-nav.visible {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.nav-item span {
    font-family: 'Merienda', cursive;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    position: absolute;
    left: -90px;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    pointer-events: none;
}

.nav-item:hover .nav-icon {
    transform: scale(1.15);
    box-shadow: var(--glow-md);
}

.nav-item:hover span {
    opacity: 1;
    transform: translateX(0);
}

.nav-item.active .nav-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--glow-md);
}

.nav-item::after {
    content: '';
    position: absolute;
    right: -8px;
    width: 8px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s ease;
    border-radius: 4px 0 0 4px;
}

.nav-item.active::after {
    height: 30px;
}

/* Floating menu toggle button */
.menu-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 995;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.visible {
    opacity: 1;
    transform: scale(1);
}

.menu-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--glow-lg);
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover::before {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

/* Hero logo styles */
.hero-logo-container {
    margin-bottom: 0.5rem;
    position: relative;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin: 1rem 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(232, 90, 25, 0.4));
}

/* Golden petal animation for the SVG logo */
@keyframes blinkPetal {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.6; filter: brightness(1.5); }
}

@keyframes shimmerPetal {
    0% { filter: brightness(1) drop-shadow(0 0 3px rgba(224, 158, 62, 0.3)); }
    50% { filter: brightness(1.5) drop-shadow(0 0 8px rgba(224, 158, 62, 0.7)); }
    100% { filter: brightness(1) drop-shadow(0 0 3px rgba(224, 158, 62, 0.3)); }
}

/* We're targeting all the golden petals in the SVG by their fill color */
.hero-logo path[fill="#E09E3E"],
.mini-logo path[fill="#E09E3E"] {
    animation: shimmerPetal 3s infinite;
    animation-delay: var(--petal-delay, 0s);
}

/* Stagger the animations for a more natural effect */
.hero-logo path[fill="#E09E3E"]:nth-child(1),
.mini-logo path[fill="#E09E3E"]:nth-child(1) {
    --petal-delay: 0s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(2),
.mini-logo path[fill="#E09E3E"]:nth-child(2) {
    --petal-delay: 0.3s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(3),
.mini-logo path[fill="#E09E3E"]:nth-child(3) {
    --petal-delay: 0.6s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(4),
.mini-logo path[fill="#E09E3E"]:nth-child(4) {
    --petal-delay: 0.9s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(5),
.mini-logo path[fill="#E09E3E"]:nth-child(5) {
    --petal-delay: 1.2s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(6),
.mini-logo path[fill="#E09E3E"]:nth-child(6) {
    --petal-delay: 1.5s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(7),
.mini-logo path[fill="#E09E3E"]:nth-child(7) {
    --petal-delay: 1.8s;
}

.hero-logo path[fill="#E09E3E"]:nth-child(8),
.mini-logo path[fill="#E09E3E"]:nth-child(8) {
    --petal-delay: 2.1s;
}

/* Scroll indicator styles */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #4A3628; /* Warm brown text */
    opacity: 0.8;
}

.scroll-indicator span {
    font-family: 'Merienda', cursive;
    font-size: 0.95rem;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: #006D35; /* Deep green color */
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #FFE8D6; /* Warm peach background */
    background-image: linear-gradient(
        rgba(255, 232, 214, 0.92),
        rgba(255, 232, 214, 0.88)
    ),
    url('images/decorative/background-dodha.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(255, 232, 214, 0.97),
        rgba(255, 232, 214, 0.93)
    ),
    url('images/decorative/hero-bg-pattern.svg') center/cover;
    z-index: -1;
    animation: scaleBackground 30s infinite alternate ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: url('images/decorative/mandala-pattern.svg') center/contain no-repeat;
    opacity: 0.09; /* Increased from 0.06 to 0.12 */
    transform: translate(-50%, -50%);
    animation: rotateMandala 80s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: url('images/decorative/mandala-pattern.svg') center/80% no-repeat;
    opacity: 0.24; /* Increased from 0.045 to 0.09 */
    transform: translate(-50%, -50%);
    animation: rotateMandalaReverse 60s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Decorative Bottom Border */
.hero-bottom-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('images/decorative/fancy-border.svg') repeat-x bottom center;
    background-size: auto 100%;
    opacity: 0.35;
    z-index: 2;
    animation: slidePattern 20s linear infinite;
}

.hero-bottom-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('images/decorative/fancy-border.svg') repeat-x bottom center;
    background-size: auto 100%;
    opacity: 0.1;
    animation: slidePatternReverse 15s linear infinite;
}

@keyframes rotateMandala {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateMandalaReverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes slidePattern {
    0% { background-position: 0 bottom; }
    100% { background-position: 100% bottom; }
}

@keyframes slidePatternReverse {
    0% { background-position: 100% bottom; }
    100% { background-position: 0 bottom; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    animation: fadeInUp 1.2s ease forwards;
    color: #006D35; /* Deep green color */
    font-family: 'Berkshire Swash', cursive;
}

.hero h1::before, .hero h1::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 10px;
    background: url('images/decorative/fancy-divider.svg') no-repeat center center;
    background-size: contain;
    bottom: -20px;
    opacity: 0.9;
}

.hero h1::before {
    left: -110px;
    transform: scale(0.8) rotate(-10deg);
}

.hero h1::after {
    right: -110px;
    transform: scale(0.8) rotate(10deg);
}

.hero-logo {
    width: 300px;
    height: auto;
    margin: 1rem 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    animation: fadeInUp 1.2s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    color: #4A3628; /* Warm brown text */
    font-family: 'Merienda', cursive;
    font-weight: 400;
    line-height: 1.6;
}

.hero .cta-button {
    animation: fadeInUp 1.2s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    background: #FFB020; /* Golden yellow */
    color: #006D35; /* Deep green text */
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: none;
    font-family: 'Merienda', cursive;
}

.hero .cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero .cta-button:hover {
    background: #FFC251; /* Lighter golden yellow */
    color: #006D35;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero .cta-button:hover::before {
    opacity: 1;
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    from { transform: scale(0.3); opacity: 1; }
    to { transform: scale(1); opacity: 0; }
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        url('images/decorative/mandala-pattern.svg') center/40% fixed,
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
    animation: rotateMandala 60s linear infinite;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('images/decorative/fancy-border.svg') repeat-x bottom center;
    background-size: auto 100%;
    opacity: 0.1;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Featured Dhoda Item Styles */
.featured-item {
    grid-column: 1 / -1 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,215,0,0.1),
        inset 0 0 60px rgba(255,215,0,0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transform: none;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

.featured-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.08) 0%, transparent 60%);
    animation: rotateGlow 20s linear infinite;
}

.featured-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-item:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.featured-item .gallery-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: transparent;
}

.featured-item .gallery-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-family: 'Berkshire Swash', cursive;
    position: relative;
    text-align: left;
}

.featured-item .gallery-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.featured-item .gallery-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: left;
}

/* Regular gallery items styling with premium design */
.gallery-item:not(.featured-item) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,215,0,0.05),
        inset 0 0 30px rgba(255,215,0,0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:not(.featured-item)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:not(.featured-item):hover::before {
    opacity: 1;
    animation: rotateGlow 15s linear infinite;
}

.gallery-item:not(.featured-item) img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.gallery-item:not(.featured-item):hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 45px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,215,0,0.1),
        inset 0 0 30px rgba(255,215,0,0.05);
}

.gallery-item:not(.featured-item):hover img {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-item:not(.featured-item) .gallery-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-item:not(.featured-item) .gallery-content::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:not(.featured-item):hover .gallery-content::before {
    opacity: 1;
    width: 100px;
}

.gallery-item:not(.featured-item) .gallery-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Berkshire Swash', cursive;
}

.gallery-item:not(.featured-item) .gallery-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-family: 'Merienda', cursive;
    margin: 0;
}

/* Grid layout adjustments */
.gallery-item:nth-child(2) { grid-column: span 6; }
.gallery-item:nth-child(3) { grid-column: span 6; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 6; }
.gallery-item:nth-child(8) { grid-column: span 6; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-item:not(.featured-item) {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .gallery-item:not(.featured-item) {
        padding: 1.5rem;
    }
    
    .gallery-item:not(.featured-item) img {
        height: 240px;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.about-hero {
    background: var(--gradient-primary);
    padding: 3rem 0;
    margin-bottom: 4rem;
    color: var(--white);
    text-align: center;
}

.about-hero h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-hero h2::after {
    background: var(--secondary-color);
}

.about-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.history {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-medium);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-medium);
}

.feature-card:hover h3::after {
    width: 60px;
    background: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-weight: 400;
    font-size: 1rem;
}

.feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.quality-card {
    grid-column: 1 / -1;
    background: var(--gradient-primary);
    color: var(--white);
}

.quality-card h3, 
.quality-card p, 
.quality-card .feature-icon {
    color: var(--white);
}

.quality-card h3::after {
    background: var(--white);
}

/* Menu Section */
.menu {
    position: relative;
    padding: 6rem 0;
    background-color: var(--white);
    z-index: 1;
}

.menu h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Menu Section Media Queries */
@media screen and (max-width: 768px) {
    .menu {
        padding: 4rem 0;
    }
}

/* Footer Section */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('images/decorative/fancy-border.svg') repeat-x top center;
    background-size: auto 100%;
    opacity: 0.5;
}

footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: url('images/decorative/mandala-pattern.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.03;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    position: relative;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-logo::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 183, 70, 0.2) 0%, rgba(255, 183, 70, 0) 70%);
    top: 35px;
    left: 35px;
    border-radius: 50%;
    z-index: -1;
}

.footer-info p {
    opacity: 0.8;
    max-width: 300px;
    line-height: 1.7;
    font-family: 'Merienda', cursive;
    font-size: 0.95rem;
}

.footer-contact h3, 
.footer-social h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: 'Berkshire Swash', cursive;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-contact h3::after, 
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: var(--transition-medium);
}

.footer-contact p:hover {
    transform: translateX(5px);
    opacity: 1;
}

.footer-contact p i {
    margin-right: 1rem;
    color: #FFD700;
    font-size: 1.2rem;
    transition: var(--transition-medium);
}

.footer-contact p:hover i {
    transform: scale(1.2);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 2px rgba(255, 183, 70, 0.1);
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,183,70,0.3) 0%, rgba(255,183,70,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 0 0 3px rgba(255, 183, 70, 0.3), var(--glow-sm);
}

.social-icons a:hover::before {
    opacity: 1;
    animation: ripple 1s ease-out;
}

.footer-bottom {
    text-align: center;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 183, 70, 0.2) 50%, 
        transparent 100%);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.7;
    font-family: 'Merienda', cursive;
    display: inline-block;
    position: relative;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: '♦';
    color: var(--secondary-color);
    opacity: 0.5;
    margin: 0 10px;
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Hero section adjustments */
    .hero-content {
        padding: 0 15px;
    }

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

    .hero-logo {
        width: 220px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Navigation adjustments */
    .interactive-nav {
        transform: translateX(100%);
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(255, 248, 225, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        border-radius: 0;
    }

    .nav-item span {
        position: static;
        opacity: 1;
        transform: none;
        background: none;
        box-shadow: none;
        padding: 0.5rem 0;
    }

    /* Gallery adjustments */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .featured-item {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .featured-item img {
        height: 280px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
    }

    /* About section adjustments */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo img {
        margin: 0 auto 1.5rem;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact h3::after, 
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 180px;
    }

    .featured-item img {
        height: 240px;
    }

    .gallery h2,
    .about h2 {
        font-size: 2rem;
    }
}

/* Landscape mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
        height: auto;
        padding: 3rem 1rem;
    }

    .hero-logo {
        width: 160px;
        margin: 0.5rem 0;
    }

    .interactive-nav {
        flex-direction: row;
        height: auto;
        padding: 1rem;
    }
}

/* Tablet devices */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-item {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Usable Multi-line Category Filter --- */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 2px 16px rgba(44,94,36,0.07);
  border: 1.5px solid #e0e0c7;
  padding: 0.4rem 0.2rem;
  width: 100%;
  margin: 0 auto 2.5rem auto;
  gap: 0.5rem 0.7rem;
}
.menu-filters button {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: #2d4d1c;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: none;
  letter-spacing: 0.01em;
  margin: 0;
  white-space: nowrap;
}
.menu-filters button.active {
  background: linear-gradient(90deg, #e6f2c2 60%, #c8e6a0 100%);
  color: #1a2e0b;
  box-shadow: 0 2px 12px rgba(44,94,36,0.09);
  transform: scale(1.06);
  z-index: 2;
}
.menu-filters button:hover:not(.active) {
  background: rgba(230,242,194,0.45);
  color: #2d4d1c;
  box-shadow: 0 1px 6px rgba(44,94,36,0.07);
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .menu-filters {
    padding: 0.3rem 0.1rem;
    gap: 0.3rem 0.4rem;
    border-radius: 1.5rem;
  }
  .menu-filters button {
    min-width: 90px;
    padding: 0.5rem 0.7rem;
    font-size: 0.97rem;
    border-radius: 1.5rem;
  }
}

/* --- MENU SECTION STYLES (RESTORED & REFINED) --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.menu-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 240px;
  max-width: 320px;
  position: relative;
  border: 1.5px solid #e0e0c7;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.menu-card:hover {
  box-shadow: 0 8px 32px rgba(44, 94, 36, 0.13);
  border-color: #b6d47a;
}
.menu-card .veg-symbol {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 6px;
  border: 2px solid #388e3c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(56,142,60,0.08);
}
.menu-card .veg-symbol .veg-dot {
  width: 12px;
  height: 12px;
  background: #388e3c;
  border-radius: 50%;
  display: block;
}
.menu-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  background: #f7f7e7;
  box-shadow: none;
  display: block;
}
.menu-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d4d1c;
  margin: 1.1rem 1.2rem 0.5rem 1.2rem;
  text-align: left;
  letter-spacing: 0.01em;
}
.menu-card .enquire-btn {
  margin: 0 1.2rem;
  background: #e6f2c2;
  color: #2d4d1c;
  border: none;
  border-radius: 1.2rem;
  padding: 0.55rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  font-weight: 600;
  justify-content: center;
}
.menu-card .enquire-btn:hover {
  background: #b6d47a;
  color: #1a2e0b;
}
.menu-card .wa-icon {
  color: #25d366;
  font-size: 1.2em;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--off-white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content i.fa-quote-left {
    color: var(--primary-light);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-author h4 {
    font-family: 'Merienda', cursive;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #FFD700;
    font-size: 1rem;
}

.rating i {
    margin-right: 0.2rem;
}

/* Catalog Section */
.catalog {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.catalog-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.catalog-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.catalog-btn i {
    font-size: 1.2rem;
}

.catalog-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-accent);
}

.catalog-btn:active {
    transform: translateY(-1px);
}