* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}   

body {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    background-color: #000;
    margin: 0;
    padding: 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #841011;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #841011;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/indiancurries.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; 
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a, .social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}

.nav-links a:hover, .social-links a:hover {
    color: #c9a76d;
}

.social-links a {
    margin-left: 15px;
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 5%;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.cta-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Sections */
#about, #menu, #gallery, #reservation {
    padding: 60px 5%;
    text-align: center;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #c9a76d;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 400;

}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c5a880;
}

#about {
    position: relative;
    padding: 80px 0; 
    background-color: black;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    min-height: 600px; 
}

.about-image {
    flex: 1;
    height: 500px; 
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #841011;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: #000;
}

.about-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    #about {
        height: auto;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        height: 300px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .about-text {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        max-width: 100%;
        margin: 20px;
    }
}

/* Menu Section */
.menu-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.menu-item h4 {
    font-weight: 600;
    font-size: 20px;
    color: #c9a76d;
    padding: 15px 10px;
    margin: 0;
    background-color: #000;
}

.menu-item h2 {
    font-size: 20px;
    color: #c9a76d;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 2 / 3;
    max-width: 200px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reservation Section */
#reservation {
    background-image: url('img/IMG_2950.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

#reservation h2 {
    margin-bottom: 20px; 
}

#reservation p {
    margin-bottom: 30px; 
}


.reservation-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 50px 5% 20px;
    text-align: left; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section h3 {
    color: #c9a76d;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 10px;
    color: #c9a76d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
}

/* Hamburger menu styles */
.hamburger {
    display: none; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0;
}

.nav-links.active .mobile-social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.mobile-social-links a {
    margin: 0 10px;
    font-size: 24px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 60px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .social-links {
        display: flex; 
        justify-content: center;
        margin-top: 20px;
    }

    .mobile-social-links {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .mobile-social-links a {
        margin: 0 10px;
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .cta-container {
        flex-direction: column;
    }

    .menu-highlights {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 100%;
        max-width: 350px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }

    footer {
        text-align: center; 
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

}


@media (max-width: 1024px) {
    
}

.footer-section .social-links a {
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline;
}

.footer-section .social-links a:hover {
    color: white; 
}

.desktop-only {
    display: flex;
}

.mobile-social-links {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none; 
    }

    .mobile-social-links {
        display: flex; 
        justify-content: center;
        margin-top: 20px;
    }
}


.menu-item {
    background-color: #111;
    padding: 20px;
    transition: transform 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.menu-item:hover {
    transform: translateY(-5px);
}



@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
    }
}


menu-header {
    position: relative;
    background-image: url('img/indiandishes2.jpg'); 
    background-size: cover;
    background-position: center;
    height: 450px; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 0;
    pointer-events: none; 
}

menu-header h1 {
    position: relative;
    font-size: 3em;
    margin: 0;
    z-index: 1; 
    font-family: 'Playfair Display', serif;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-section h2 {
    font-size: 2.5em;
    color: #c9a76d;
    margin-bottom: 20px;
    position: relative;
}

.menu-category h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c9a76d;
    margin: 10px auto;
}

.menu-section {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    margin: 40px auto;
    max-width: 1200px;
    border-left: 5px solid #c9a76d;
    border-right: 5px solid #c9a76d;
}

.menu-section h2 {
    font-size: 3.5em; 
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: #c9a76d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.menu-columns {
    display: block;
}

.menu-column {
    background-color: #111;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #c9a76d;
    border-right: 3px solid #c9a76d;
}

.menu-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.menu-column h3 {
    font-size: 2em; 
    margin-bottom: 20px;
    color: #c9a76d;
    border-bottom: 2px solid #c9a76d;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #222;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.1);
    border-left: 2px solid #c9a76d;
}

.menu-column li span {
    font-size: 1.3em; 
    color: #fff;
}

.menu-column .price {
    font-weight: bold;
    color: #c9a76d;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #c9a76d;
    font-size: 0.9em; 
}

th {
    color: #c9a76d;
    font-weight: bold;
}

@media (max-width: 768px) {
    .menu-column {
        width: 100%;
    }

    table {
        font-size: 0.8em; 
    }

    th, td {
        padding: 8px;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-section, .menu-column, .nav-links li, .hero-content, .footer-content, .menu-content, .reservationpage-form, reservationpage-header h1, .contact-info {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.menu-section {
    animation-delay: 0.5s;
}

.menu-column {
    animation-delay: 0.7s;
}

.nav-links li {
    animation-delay: 0.3s;
}

.hero-content {
    animation-delay: 0.2s;
}

.footer-content {
    animation-delay: 0.9s;
}

.menu-content {
    animation-delay: 0.6s;
}

.footer-bottom a{
    color: white;
}

.footer-bottom a:hover{
    color: blue;
}


reservationpage-header {
    position: relative;
    background-image: url('img/IMG_2950.jpg'); 
    background-size: cover;
    background-position: center;
    height: 450px; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

reservationpage-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 0;
    pointer-events: none; 
}

reservationpage-header h1 {
    position: relative;
    font-size: 3em;
    margin: 0;
    z-index: 1; 
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.reservationpage-section {
    display: flex;
    justify-content: space-around; 
    padding: 40px;
    background-color: #0a0a0a;
    color: #fff;
}

.contact-info, .reservationpage-form {
    width: 45%; 
}

.contact-info h2, .reservationpage-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5em;
    margin-right: 10px;
}

.info-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.reservationpage-form form {
    display: flex;
    flex-direction: column;
}

.reservationpage-form label {
    margin-top: 10px;
    margin-bottom: 5px;
}

.reservationpage-form input, .reservationpage-form textarea {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #111;
    border: none;
    color: #fff;
}

.reservationpage-form button {
    padding: 10px;
    background-color: #c9a76d;
    border: none;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reservationpage-form button:hover {
    background-color: #b08b5b;
}

@media (max-width: 768px) {


    .reservationpage-section {
        flex-direction: column;
    }

    .contact-info, .reservationpage-form {
        width: 100%;
    }
}


.order-section {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.order-section h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #333; /* Dark text for readability */
}

.order-section p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666; /* Slightly lighter text */
}

.order-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff; /* Highlight border on focus */
    outline: none;
}

.btnorder {
    padding: 0.75rem;
    background-color: #007bff; /* Primary button color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btnorder:hover {
    background-color: #0056b3; /* Darker shade on hover */
}


