/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Header */
header {
    background: #111;
    color: white;
    position: relative;
    z-index: 10;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e63946;
}

/* Mobile Menu Button */
#mobile-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero picture,
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image cover hero area */
    z-index: -1;       /* Places image behind text */
}

.hero-content {
    position: relative;
    z-index: 1;        /* Keeps text on top */
}

.menu-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu-btn:hover {
    background: #d62828;
}

/* Menu Section */
.menu-section {
    padding: 60px 20px;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.menu-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 40px 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Location Section */
#location {
    padding: 50px 20px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 350px;
    border: 0;
    margin-top: 20px;
}

/* Contact / Opening Hours */
#contact {
    padding: 50px 20px;
    text-align: center;
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive / Mobile */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 10px 0;
        border-radius: 0 0 8px 8px;
    }

    .nav-links.active {
        display: flex;
    }

    footer {
        background: #111;
        color: #fff;
        text-align: center;
        padding: 20px;
        font-size: 14px;
        line-height: 1.5;
    }

    footer p {
        margin: 5px 0;
    }

    #mobile-menu {
        display: block;
    }
}