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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #FFFDF8;
    color: #333;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

main {
    overflow: hidden;
    background: none;
    align-items: center;
    align-content: center;
}

section {
    padding: 4rem 1.5rem;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
}

/* Header Styles */

header {
    position: sticky; 
    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 0.5rem 1.0rem;

    background: rgb(248, 181, 80);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    z-index: 1000;
}

.logo img {
    width: 110px;
}

.nav-bar {
    display: none;
}

.nav-bar.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 181, 80, 0.856);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-bar.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: #333;
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    width: 100%;
    border-radius: 8px;
}

.nav-links a:hover {
    color: white;
    background: #054EDB;

}


.menu-toggle {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
}

/* Hero Section Styles */

#hero {
    text-align: center;
    align-items: center;
    position: relative;
    min-height: 50vh;
}

.hero-image {
    transform: translateY(-90px);
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.hero-button {
    position: absolute;
    margin-top: 2rem;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.25rem  2.5rem;
    text-align: center;
    background: #E69233;
    color: white;

    border-radius: 40px;

    font-weight: bold;

    transition: .3s;
}

.hero-button:hover {
    background: #EFC328;
}


/* About Section Styles */

.about-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
}

.about-card img {
    border-radius: 12px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 320px;
    height: 240px;
    object-fit: cover;
}

.about-text {
    text-align: center;
    width: 100%;
}

.about-text h3 {
    margin-bottom: 1rem;
    font-weight: 900;
}
.about-text p {
    margin-bottom: 1rem;
    line-height: 2;
    font-weight: 500;
}

/* Menu Section Styles */

.menu-gallery {
    display: grid;
    gap: 1.5rem;
}

.menu-gallery img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Catering Section Styles */

#catering {
    background: #054EDB;
    text-align: center;
    color: white;
}

.catering-btn {
    display: inline-block;

    margin-top: 1rem;

    padding: .9rem 2rem;

    background: #E69233;
    color: white;
    border-radius: 40px;
    transition: .3s;
}

.catering-btn:hover {
    background: #EFC328;
}

/* Gallery Section Styles */

.gallery-grid {
    display: grid;
    gap: 1rem;
}

.gallery-grid img {
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    height: 280px;
    object-fit: cover;
    margin: 0 auto;
}

/* Review Section Styles */

#reviews {
    text-align: center;
}

#reviews img {
    width: 150px;
    margin: 1rem auto;
}

blockquote {
    max-width: 700px;
    margin: 1rem auto;
    font-style: italic;
    font-size: 1.1rem;
}

/* Find Us Section Styles */

#find-us {
    text-align: center;
}

.instagram-widget,
.elfsight-app-b7eca6a1-9bca-4b85-9a6f-090d046a37f9 {
    max-width: 1000px;
    margin: 2rem auto;
}

/* Footer Styles */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, #054EDB 0%, #0b63ff 100%);
    color: white;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

footer a {
    color: white;
    font-weight: 600;
    opacity: 0.95;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
    transform: translateY(-1px);
}

footer p {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 4rem;
    }

    .footer-nav {
        justify-content: flex-end;
    }
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    line-height: 1.7;
    background: white;
}

.legal-page h1 {
    margin-bottom: 10px;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page p {
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
}

.legal-date {
    margin-bottom: 40px;
}

@media (min-width: 768px) {

    main {
        background: url(assets/bee\ bg.png);
    }

    #wrapper {
        background: rgb(255, 253, 240);
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    header {
        position: sticky;
        background: rgb(248, 181, 80);
    }

    .nav-bar {
        display: block;
        position: static;
        padding: 0;
        box-shadow: none;
        
    }

    .nav-bar.open {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 5rem;
    }

    .nav-links a {
        color: #333;
        font-weight: 600;
    }

    .nav-links a:hover {
        color: white;
        background: none;

    }
    #hero {
        text-align: center;
        align-items: center;
        position: relative;
        padding: 1.5rem 0 0;
        margin: 0;
        min-height: auto;
    }

    .hero-image {
        border-radius: 12px;
        width: 700px;
        max-width: 90vw;
        transform: none;
        margin: 0 auto 1.5rem;
        padding: 0;
    }

    .hero-tagline {
        position: static;
        transform: none;
        width: auto;
        margin: 0 auto 1rem;
        font-size: 1.1rem;
    }

    .hero-button {
        position: relative;
        display: inline-block;
        margin: 0 auto;
        top: -80px;
        left: auto;
        transform: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    #about {
        margin: 0;
        padding: 0;
    }

    .about-image {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-card img {
        border-radius: 12px;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 480px;
        height: 400px;
        object-fit: cover;
    }

    .about-card p {
        font-size: 22px;
    }

    .menu-toggle {
        display: none;
    }

    .menu-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid img {
        max-width: 100%;
        height: 650px;
    }

    section {
        max-width: 1600px;
        margin: auto;
    }
}