/* --- ALAP BEÁLLÍTÁSOK & VÁLTOZÓK --- */
:root {
    --primary: #c38b5f;
    --primary-dark: #a87349;
    --text-dark: #231f1c;
    --text-light: #6b635c;
    --bg-main: #fdfbf9;
    --bg-alt: #f4efea;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* --- TIPOGRÁFIA --- */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* JAVÍTÁS: Finom árnyék a maximális olvashatóságért */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); 
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.text-center { text-align: center; }

/* --- GOMBOK --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover { background-color: var(--primary-dark); }

.btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--text-dark);
}

.w-100 { width: 100%; }

/* --- KONTÉNEREK --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 6rem 0; }
.bg-light { background-color: var(--bg-alt); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- NAVIGÁCIÓ --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    transition: var(--transition);
    z-index: 1000;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.navbar.scrolled .logo { color: var(--text-dark); }

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
    font-weight: 500;
    color: #fff;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover, .nav-links a.active { color: var(--primary) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background-color: var(--text-dark); }

/* --- HERO & BELSŐ OLDAL FEJLÉCEK --- */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1559525839-b184a4d698c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Belső oldalak fejléc stílusa */
.page-header {
    height: 45vh;
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* JAVÍTÁS: Sötétebb, 0.75-ös átlátszóságú réteg az olvashatóságért */
    background: rgba(15, 12, 10, 0.75); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #fff;
}

.hero-content h1,
.hero-content h2 {
    color: #dcbda2; /* Világos, lágy cappuccino/tejeskávé árnyalat */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); /* A sötét árnyék garantálja, hogy olvasható maradjon a képeken */
}

/* Opcionális: Az 'Igazi pillanatok.' dőlt része egy picit 'habosabb', világosabb krémszín */
.hero-content h1 em {
    color: #f4efea; 
}

.hero-content p {
    color: #eaeaea;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: #eaeaea;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; }

/* --- RÓLUNK OLDAL ELEMEI --- */
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.features { display: flex; gap: 2rem; margin-top: 2rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* --- MENÜ OLDAL ELEMEI --- */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}
.menu-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #dcd4cc;
    padding-bottom: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}
.menu-item-header h4 { font-size: 1.2rem; }
.price {
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* --- KAPCSOLAT OLDAL ELEMEI --- */
.info-block { margin-bottom: 1.5rem; }
.info-block h4 { margin-bottom: 0.3rem; }
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(195, 139, 95, 0.2);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 3rem 0;
    margin-top: auto;
}
.footer p { color: #aaa; margin: 0; }
.dev-credit { margin-top: 1rem !important; font-size: 0.9rem; }
.dev-credit a { color: var(--primary); text-decoration: underline; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .grid-2, .menu-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { order: 2; }
    .about-text { order: 1; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { color: var(--text-dark) !important; font-size: 1.2rem; }
    .nav-btn { display: none; }
    .hero-btns { flex-direction: column; }
    .contact-form { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}