* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warmer, more saturated palette with real contrast */
    --bg-dark:   hsl(20, 30%, 12%);   /* deep espresso */
    --bg:        hsl(20, 28%, 18%);   /* dark walnut */
    --bg-light:  hsl(20, 26%, 24%);   /* medium walnut */
    --border:    hsl(20, 30%, 34%);
    --highlight: hsl(30, 80%, 58%);   /* warm amber accent */

    --gradient:       linear-gradient(160deg, var(--bg-light), var(--bg));
    --gradient-hover: linear-gradient(160deg, var(--bg-light), hsl(20, 28%, 22%));

    /* Text: warm cream, not brownish */
    --text:       hsl(36, 60%, 92%);
    --text-muted: hsl(30, 30%, 65%);

    --ff: "Georgia", serif;           /* warm serif fits a pizzeria much better */
    --ff-sans: "Trebuchet MS", sans-serif;

    --h1: bold 1.5rem/1.4em var(--ff);
    --h2: bold 1.25rem/1.4em var(--ff);
    --h3: 1.1rem/1.5em var(--ff-sans);
    --p1: 1.0rem/1.5em var(--ff-sans);
    --p2: .875rem/1.5em var(--ff-sans);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text);
}

img {
    width: 100%;
    display: block;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    padding: 1rem 2rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header a {
    text-decoration: none;
    color: var(--text);
    font: var(--p1);
    transition: color 0.2s;
}

header a:hover {
    color: var(--highlight);
}

header li {
    float: left;
    display: inline;
    padding: 0 1.25rem;
}
/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* X animáció nyitott állapotban */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Homályos háttér overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.visible {
    opacity: 1;
}



/* ── HERO ── */
#hero {
    width: 100%;
    background: url(../img/hero.jpeg) center / cover no-repeat;
    min-height: 94vh;
    display: flex;
    align-items: flex-end;
}

.hero-container {
    /* warm dark gradient instead of flat black */
    background: linear-gradient(0deg, hsl(20, 40%, 8%) 40%, transparent);
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 3rem;
}

#hero h1 {
    font: 3.5rem/1.2em var(--ff);
    font-weight: 800;
    color: hsl(36, 80%, 95%);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

#hero p {
    font: var(--h2);
    color: hsl(36, 50%, 85%);
    margin: 0.75rem 0 1.5rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

#hero a {
    font: var(--h2);
    color: hsl(20, 30%, 10%);          /* dark text on bright button */
    text-decoration: none;
    background: var(--highlight);      /* amber CTA — stands out! */
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}

#hero a:hover {
    background: hsl(30, 85%, 65%);
    transform: translateY(-2px);
}

/* ── ABOUT ── */
#about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 80%;
    margin: 5rem auto 0;
    padding: 2.5rem;
    background: var(--gradient);
    border: 1px solid var(--border);
    border-top: 1px solid var(--highlight);  /* accent top border */
    border-radius: 1rem;
    transition: background 0.3s;
}

#about:hover {
    background: var(--gradient-hover);
}

.aboutImg {
    width: 45%;
    flex-shrink: 0;
}

#about img {
    border-radius: 0.75rem;
}

.aboutParagraph {
    width: 55%;
}

#about h2 {
    font: var(--h1);
    color: var(--highlight);    /* accent color on section headings */
    margin-bottom: 0.75rem;
}

#about p {
    font: var(--h3);
    color: var(--text-muted);
    line-height: 1.7;
}
/* ── MAIN ── */
#main{
    display: flex;
    width: 80%;
    margin: 5rem auto;
    justify-content: space-between;
}

/* ── INFORMATION ── */
#information {
    width: 30%;
    background: var(--gradient);
    border: 1px solid var(--border);
    border-top: 1px solid var(--highlight);  /* accent top border */
    border-radius: 1rem;
    transition: background 0.3s;

}
#information:hover{
     background: var(--gradient-hover);
}
/* ── MENU ── */
#menu {
    width:  60%;
    display: flex;
    flex-direction: column;
}

#menu > nav {
    border-bottom: none;
}

#menu button {
    background: var(--bg);
    border: 1px solid var(--border);
    border-bottom: none;
    padding: 0.6rem 1.5rem;
    font: var(--p1);
    color: var(--text-muted);
    border-radius: 0.75rem 0.75rem 0 0;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

#menu button:hover {
    color: var(--text);
}

#menu li {
    float: left;
    display: inline;
}

#menu .container {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 0 1rem 1rem 1rem;
    padding: 0 0.5rem;
}

#menu .container.active {

    display: inline-block;
}

#menu .menu-btn.active {
    background: var(--bg-light);
    color: var(--highlight);
    border-top: 2px solid var(--highlight);
}

/* ── MENU CARDS ── */
.card {
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
    margin: 0.5rem 0rem; 
}

.card:hover {
    border-color: var(--highlight);
}

.description {
    display: flex;
    justify-content: space-between;
}

.card h3 {
    font: var(--h2);
    color: var(--text);
    margin-bottom: 0.35rem;
}

.card p {
    font: var(--p2);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.card span {
    font: var(--p1);
    color: var(--highlight);      /* price in accent color */
    font-weight: bold;
}

/* ── SHARED SECTION STYLE for hours & contact ── */

#hours,
#contact {
    flex: 2;
    padding: 2rem 2.5rem;
}

#contact {
    margin-bottom: 5rem;
}

#hours h2,
#contact h2 {
    font: var(--h2);
    color: var(--highlight);
    margin-bottom: 0.75rem;
}

#hours p,
#contact p {
    font: var(--p1);
    color: var(--text-muted);
    line-height: 2;
}

@media (max-width: 1024px) {
    #main {flex-direction: column;}
    #menu{width: 100%;}
    #information{
        margin-top: 2rem;
        width: 100%;
    }
    #about {
        flex-direction: column;
        text-align: center;
    }
    .aboutImg{width: 100%;}
    .aboutParagraph{width: 100%;}
}

@media (max-width:700px){
    #information{border-radius:0;}
    #menu .container{border-radius:0;} 
    #about {
        width: 100%;
        border-radius: 0;
    }
    #main{width: 100%;}
    #menu button {
        border: none;
        border-radius: 0;
        display: block;
        width: 100%;
        margin: 0;
        padding: 1rem;
        text-align: center;
        
    }
    #menu ul{
        display: flex;
    }
    #menu li {flex: 1;}

    #menu .menu-btn.active {
        background: var(--bg-light);
        color: var(--highlight);
        border-top: none;
        text-align: center;
        width: 100%;
    }
    /*==HAMBURGER MENU*/
    .hamburger {
        display: flex;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem 2rem;

        /* Felülről csúszik le */
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-bar.open {
        transform: translateY(0);
    }

    .nav-bar ul {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem 0;
        margin: 0;
        list-style: none;
    }

    .nav-bar li {
        float: none;
        display: block;
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-bar li:last-child {
        border-bottom: none;
    }

    .nav-overlay {
        display: none;
    }
    .nav-overlay.visible{
        display: block;
    }
}