/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 100px; /* Adjust the size as needed */
    height: auto;
}




/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Base Styles */

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: #d4af37;
    border-radius: 5px;
}


/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

/* Show/Hide Menu */
nav ul {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 50px;
        left: 0;
        text-align: center;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
    }
}

/* Toggle Hamburger Animation */
.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: url('images/hero.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 50px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    padding: 15px 30px;
    background-color: #d4af37;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #b6932d;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.menu-item {
    flex: 1;
    min-width: 300px; /* Ensures two items fit on mobile */
    max-width: 30%;
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.menu-item p {
    margin-bottom: 15px;
    color: #666;
}

.btn-secondary {
    padding: 10px 25px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background-color: #555;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
    text-align: left;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.about img {
    width: 50%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-item {
    flex: 1;
    max-width: 45%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
}

.social-media a {
    font-size: 24px;
    color: #333;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #d4af37;
}

.contact-map iframe {
    max-width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-grid {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        max-width: 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }
}