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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f3f3f3;
    color: #333;
    scroll-behavior: smooth;
    padding-top: 80px;
}
/* Floating WhatsApp Button Styling */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    transition: transform 0.3s ease-in-out, width 0.3s, height 0.3s;
}

/* Widget container styling */
.elfsight-app-30bcb2ad-58d7-40e4-86d9-89cb045767ab {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

/* Hover effect */
.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 25px;
        height: 25px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}
/* Hover effect */
.floating-whatsapp:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}





/* Header */
header {
    background-color: #4a154b;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

header .logo h1 {
    font-size: 26px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f9a825;
}


/* CSS Variables for Themes */
:root {
    --button-bg-color: #444;
    --button-hover-bg-color: #666;
    --button-text-color: #f0f0f0;
    --button-shadow: rgba(255, 255, 255, 0.2);
    --button-hover-shadow: rgba(255, 255, 255, 0.3);
}

/* Back to Top Floating Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--button-bg-color);
    color: var(--button-text-color);
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px var(--button-shadow);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--button-hover-bg-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px var(--button-hover-shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Dark Theme Example */
body.dark-theme {
    --button-bg-color: #444;
    --button-hover-bg-color: #666;
    --button-text-color: #f0f0f0;
    --button-shadow: rgba(255, 255, 255, 0.2);
    --button-hover-shadow: rgba(255, 255, 255, 0.3);
}

/* Make the button visible when scrolling */
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Dark Theme Example */
body.dark-theme {
    --primary-bg: #444;
    --primary-text: #f0f0f0;
    --secondary-bg: #666;
    --shadow-color: rgba(255, 255, 255, 0.1);
    --hover-shadow-color: rgba(255, 255, 255, 0.2);
}

/* For Light Theme */
body.light-theme {
    --primary-bg: #ffcc00;
    --primary-text: #1b1b1b;
    --secondary-bg: #ffa726;
    --shadow-color: rgba(0, 0, 0, 0.15);
    --hover-shadow-color: rgba(0, 0, 0, 0.25);
}

/* Colorful Theme Example */
body.colorful-theme {
    --primary-bg: linear-gradient(45deg, #ff6f61, #6b5b95);
    --primary-text: #ffffff;
    --secondary-bg: linear-gradient(45deg, #ff9472, #b58ecc);
    --shadow-color: rgba(0, 0, 0, 0.25);
    --hover-shadow-color: rgba(0, 0, 0, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: white;
    text-align: right;
    flex-grow: 1;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #4a154b;
        position: absolute;
        align-items: center;
        justify-content: center;
        top: 60px;
        right: 20px;
        width: 200px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    nav ul li {
        margin: 15px 0;
        text-align: right;
    }

    nav ul li a {
        font-size: 18px;
    }

    .hamburger {
        display: block;
    }

    .nav-active {
        display: flex;
    }
}

/* Try Different Theme Section */
#theme-section {
    padding: 20px 20px;
    text-align: center;
    background-color: #2b2b2b; /* Dark background consistent with rest */
    color: #f0f0f0; /* Text color for contrast */
    margin: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#theme-section h2 {
    font-size: 30px;
    color: #ffcc00; /* Consistent gold color for headings */
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.theme-button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.style-btn {
    background: linear-gradient(to right, #f9a825, #4a154b);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.style-btn:hover {
    transform: translateY(-5px);
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 40px 20px;
    border-radius: 15px;
}

#contact h2 {
    font-size: 30px;
    color: #4a154b;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif; /* Matching font with the rest of the sections */
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

#contact-form label {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4a154b; /* Matching label color to maintain consistency */
}

#contact-form input,
#contact-form textarea {
    width: 90%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #4a154b;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding box shadow to inputs for consistent styling */
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #f9a825; /* Consistent focus color */
}

#contact-form button {
    background: linear-gradient(to right, #f9a825, #4a154b);
    color: white;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;  
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Consistent button shadow */
}

#contact-form button:hover {
    transform: translateY(-5px);
    background: #4a154b; /* On hover, background changes to match the overall theme */
}
/* Footer */
footer {
    background-color: #4a154b;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
    font-size: 16px;
}


        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 30px;
            color: white;
	text-align: right;
	flex-grow: 1;
	
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                background-color: #4a154b;
                position: absolute;
                top: 60px;
                right: 20px;
                width: 200px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                border-radius: 10px;
            }

            nav ul li {
                margin: 15px 0;
                text-align: right;
            }

            nav ul li a {
                font-size: 18px;
            }

            .hamburger {
                display: block;
            }

            .nav-active {
                display: flex;
            }
        }

        /* Hero Section */
  
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            z-index: 1;
        }

        .hero h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 20px;
        }

.hero {
    background-image: url(../assets/images/indian-food-rich.jpg);
    background-size: cover;
    background-position: center;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'Cinzel', serif;
    padding: 20px;
}

        .button-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .order-btn {
            animation: smoothHoverEffect 1s infinite alternate ease-in-out;
        }

        .order-btn, .view-menu-btn, .navigate-btn {
            background: linear-gradient(to right, #f9a825, #4a154b);
            padding: 12px 28px;
            color: white;
            text-decoration: none;
            font-size: 18px;
            border-radius: 30px;
            transition: all 0.4s ease-in-out;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .order-btn:hover, .view-menu-btn:hover, .navigate-btn:hover {
            transform: translateY(-5px);
        }

        /* Menu Section */
        #menu {
            padding: 60px 20px;
            text-align: center;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
            border-radius: 15px;
        }

        #menu h2 {
            font-size: 30px;
            color: #4a154b;
            margin-bottom: 30px;
        }

        .menu-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 25px;
        }

        .menu-item {
            background-color: #f9f9f9;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            width: 300px;
            height: 350px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            animation: pulseEffect 3s infinite alternate ease-in-out;
        }

        @keyframes pulseEffect {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.05);
            }
        }

        @keyframes smoothHoverEffect {
            0% {
                transform: scale(1);
                background: linear-gradient(to right, #f9a825, #4a154b);
            }
            100% {
                transform: scale(1.1);
                background: linear-gradient(to right, #4a154b, #f9a825);
            }
        }
            100% {
                transform: scale(1.05);
            }
        }

        .menu-item:hover {
            transform: translateY(-10px);
        }

        .menu-item img {
            width: 100%;
            height: 60%;
            object-fit: cover;
        }

        .menu-item h3 {
            margin: 10px;
            font-size: 22px;
            color: #4a154b;
        }

        .menu-item p {
            margin: 0 15px 15px 15px;
            font-size: 16px;
            color: #666;
        }

        /* News Board Section */
        #news-board {
            padding: 60px 20px;
            text-align: center;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
            border-radius: 15px;
        }

        #news-board h2 {
            font-size: 30px;
            color: #4a154b;
            margin-bottom: 30px;
        }

        .news-item {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            border-radius: 15px;
            background-color: #f9f9f9;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .news-item img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        /* Map Section */
        #map-container {
    
            text-align: center;
            margin: 40px 20px;
        }
  #map {
            width: 100%;
            height: 300px;
            margin: 0px 0;
            border: none;
        }


        #map-container iframe {
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        /* About Section */
        #about {
            padding: 60px 20px;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
            border-radius: 15px;
        }

        #about h2 {
            text-align: center;
            font-size: 30px;
            color: #4a154b;
            margin-bottom: 20px;
        }

        #about p {
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
        }

        /* Footer */
        footer {
            background-color: #4a154b;
            color: white;
            padding: 20px;
            text-align: center;
            margin-top: 40px;
        }

        footer p {
            margin: 5px 0;
            font-size: 16px;
        }


