:root {
    --primary-blue: #0A326F;
    --secondary-blue: #4A6C9B;
    --accent-green: #3D9148;
    --light-grey: #f4f4f4;
    --text-color: #333;
    --bg-color: #fcfcfc;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    text-align: center;
}

header {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .logo-container img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a, .dropbtn {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover, .dropbtn:hover {
    color: var(--accent-green);
}

/* Call Button Styling */
.call-button {
    background-color: var(--accent-green);
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #2e7a3b;
}

.call-button i {
    font-size: 1.2rem;
    animation: ring 2s infinite ease-in-out;
}

@keyframes ring {
    0% { transform: rotate(0); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(5deg); }
    45% { transform: rotate(-5deg); }
    60% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}


/* Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-blue);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--secondary-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.menu-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Menu Carousel Styling */
.carousel-container {
    max-width: 800px;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Gallery Carousel Styling */
.gallery-carousel-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-slide {
    display: none;
    text-align: center;
}

.gallery-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Next & previous buttons for all carousels */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background with a little more opacity */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot, .gallery-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover, .gallery-dot:hover {
    background-color: var(--primary-blue);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


.menu-text {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    padding: 0 2rem;
    position: relative;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--accent-green);
}

.section-title h2::before {
    left: 0;
    transform: translateX(-150%);
}

.section-title h2::after {
    right: 0;
    transform: translateX(150%);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-blue);
}

.item-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-green);
}

.item-description {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* About Us Section Styling */
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    max-width: 800px;
    text-align: center;
}

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

.book-table-btn {
    background-color: var(--accent-green);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.book-table-btn:hover {
    background-color: #2e7a3b;
}

/* Contact Section Styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.contact-info {
    padding: 1.5rem;
}

.contact-info h3 {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 25px;
}

.contact-hours ul {
    list-style: none;
    padding: 0;
}

.contact-hours li {
    margin-bottom: 5px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.whatsapp-button a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 2.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
    color: #333;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.whatsapp-link:hover {
    background-color: #128c7e;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--primary-blue);
    color: white;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    header .logo-container img {
        height: 50px;
    }
    
    .dropdown {
        display: none;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        flex-direction: column;
    }

    nav a, .dropbtn {
        margin: 5px 0;
    }

    .carousel-container {
        max-width: 100%;
    }
    .carousel-slide img {
        height: 300px;
    }

    .gallery-carousel-container {
        max-width: 100%;
    }
    .gallery-slide img {
        height: 350px;
    }

    .prev, .next {
        padding: 10px;
        font-size: 14px;
    }
    .dot, .gallery-dot {
        height: 10px;
        width: 10px;
    }

    .book-table-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}