/* ------------------------------
   COLOR SYSTEM (from your logo)
--------------------------------*/
:root {
    --aqua: #c8f3f7;          /* Light aqua background */
    --deep-blue: #0a3d62;     /* Strong blue */
    --light-blue: #4db6e5;    /* Logo text blue */
    --sun-yellow: #f7c948;    /* Accent */
    --orange: #f78b2d;        /* Hover accent */
    --white: #ffffff;
    --text-dark: #1a1a1a;
}

/* ------------------------------
   GLOBAL STYLES
--------------------------------*/
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--aqua);
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-blue);
}

a {
    text-decoration: none;
}

/* ------------------------------
   HEADER
--------------------------------*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: var(--white);
    border-bottom: 4px solid var(--sun-yellow);
}

.logo {
    height: 300px;
}

nav a {
    margin-left: 20px;
    font-weight: 600;
    color: var(--deep-blue);
}

nav a.active {
    border-bottom: 3px solid var(--sun-yellow);
    padding-bottom: 4px;
}

.order-btn {
    background: var(--sun-yellow);
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--deep-blue);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.order-btn:hover {
    background: var(--orange);
    color: var(--white);
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    text-align: center;
    padding: 60px 20px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    background: var(--sun-yellow);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--deep-blue);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.cta:hover {
    background: var(--orange);
    color: var(--white);
}

/* ------------------------------
   MENU SECTION
--------------------------------*/
.menu-section {
    padding: 40px 20px;
}

.menu-category {
    background: var(--white);
    padding: 20px;
    margin: 20px 0;
    border-left: 6px solid var(--light-blue);
    border-radius: 6px;
}

.menu-category h3 {
    margin-top: 0;
    color: var(--light-blue);
}

.menu-category ul {
    list-style: none;
    padding: 0;
}

.menu-category li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

/* ------------------------------
   ABOUT PAGE
--------------------------------*/
.about-section {
    padding: 40px 20px;
    text-align: center;   /* THIS is the missing piece */
}
.about-section h1 {
    text-align: center;
}
.about-section .cta {
    display: inline-block;
    margin: 30px auto 0;
    text-align: center;
}
/* Center Hours + Location + their headings */
.about-section h2,
.about-section p {
    text-align: center;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    text-align: center;
    padding: 20px;
    background: var(--deep-blue);
    color: var(--white);
    margin-top: 40px;
}

/* MOBILE FIX */
@media (max-width: 600px) {

    /* Make menu items stack instead of squeezing */
    .menu-category li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* Make prices stand out and not wrap awkwardly */
    .menu-category li span:last-child {
        font-weight: 600;
        color: var(--deep-blue);
    }

    /* Give menu cards more breathing room */
    .menu-category {
        padding: 16px;
    }

    /* Make the header stack nicely */
    header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    nav a {
        display: inline-block;
        margin: 6px 10px;
    }

    /* Adjust logo size for phones */
    .logo {
        height: 250px;
    }
}

/* TABLET / MID-SCREEN FIX (600px–1023px) */
@media (min-width: 600px) and (max-width: 1023px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .logo {
        height: 220px; /* smaller so nav fits */
        margin-bottom: 10px;
    }

    nav a {
        margin: 0 12px;
        font-size: 1rem;
    }
}


/* DESKTOP / LAPTOP — center logo */
@media (min-width: 1024px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 40px;
    }

    .logo {
        margin: 0 auto;
        height: 300px; /* keep your current size */
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 15px;
        font-size: 1.1rem;
    }
}

/* ------------------------------
   GALLERY GRID
--------------------------------*/
.gallery-section {
    padding: 40px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    animation: fadeIn 0.2s ease-in-out;
}

/* Extra spacing above the Order button on Gallery page */
.gallery-section .order-btn {
    display: inline-block;
    margin-top: 40px; /* like pressing Enter twice */
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}