* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    h1, h2, h3 {
    font-family: 'Playfair Display', 'Georgia', serif; 
    letter-spacing: 1px;
}
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: white; 
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

header {
    background: #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

/* --- ÚJ, NAGY LOGÓS ELRENDEZÉS --- */
.content-bg {
    background-image: url("logo1.jpg");
    background-size: 50%; /* Itt állítod, mekkora legyen a logó (40-60% között ajánlott) */
    background-repeat: no-repeat;
    background-position: 5% center; /* Balra igazítva, 5% távolságra a széltől */
    background-attachment: fixed;
    background-color: white;
    min-height: 85vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.text-box {
    flex: 0 0 480px; 
    background: rgba(255, 255, 255, 0.98);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-right: 8%; /* Ez tolja el a dobozt a jobb szélétől */
    margin-left: auto; /* Ez tolja át a dobozt a jobb oldalra */
}

/* Mobilos nézet: itt a logó felülre kerül, a szöveg alá */
@media (max-width: 768px) {
    .content-bg {
        background-attachment: scroll;
        background-position: center 20px;
        background-size: 85%;
        padding-top: 320px; 
        display: block;
    }

    .text-box {
        flex: 0 0 100%;
        margin: 20px auto;
        width: 90%;
    }
}
.hero-card h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.hero-card p {
    color: #666;
    font-size: 0.9rem;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    background: white;
    border-left-color: #e67e22;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c3e50;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
    border: none;
    text-align: center;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.contact-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.info-item .icon { font-size: 24px; }

.info-item a {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 10px;
        font-size: 0.9rem;
    }

    .content-bg {
        background-attachment: scroll;
        background-position: center top;
        background-size: 80%;
        padding-top: 300px; 
        align-items: flex-start;
    }

    .text-box {
        flex: 0 0 100%;
        margin: 20px 0;
        padding: 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
}



.product-grid {
    display: flex;
    justify-content: center; 
    gap: 30px;              
    flex-wrap: wrap;         
    padding: 40px 0;
}

.card {
    background: white;
    width: 300px;           
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin: 15px 0 5px;
    color: #2c3e50;
}

.card p {
    padding: 0 15px;
    color: #666;
    margin-bottom: 15px;
}


.galeria-szekcio {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
    font-family: sans-serif;
}

.galeria-racs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; 
    padding: 20px;
}

.kep-elem {
    overflow: hidden; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #eee;
    height: 300px; 
}

.kep-elem img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.kep-elem:hover img {
    transform: scale(1.1); 
    filter: brightness(80%); 
    cursor: pointer;
}



.leirasok-szekcio {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

.szoveg-doboz {
    flex: 1; /* Egyforma szélesek lesznek */
    background-color: #f8f9fa; /* Világosszürke háttér */
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #2c3e50; /* A fejléc sötétkék színe díszítésnek */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.szoveg-doboz h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.4rem;
}

.szoveg-doboz p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobilos nézet: egymás alá kerülnek a dobozok */
@media (max-width: 768px) {
    .leirasok-szekcio {
        flex-direction: column;
    }
}




/* Alapok és Háttér */
.rendezveny-vaz {
    padding: 60px 0;
    background-color: #fcfcfc;
    min-height: 80vh; /* Kitölti a képernyő nagy részét */
}

.oldal-fejlec {
    text-align: center;
    margin-bottom: 60px;
}

.oldal-fejlec h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.focim-alatti {
    font-size: 1.3rem;
    color: #7f8c8d;
}

/* 3 oszlopos rész */
.szolgaltatas-racs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.szolg-kartya {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.szolg-kartya:hover {
    transform: translateY(-10px);
}

.ikon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* Alsó két nagy doboz */
.leiras-kontener {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.leiras-doboz {
    flex: 1;
    background: #2c3e50; /* Sötétkék háttér, mint a fejléc */
    color: white;
    padding: 40px;
    border-radius: 15px;
    line-height: 1.8;
}

.leiras-doboz h3 {
    color: #e67e22; /* Narancs kiemelés */
    margin-top: 0;
    font-size: 1.6rem;
}

/* Alsó gomb sáv */
.ajanlatkeres-sav {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #eee;
}

.btn-nagy {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-nagy:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

/* Mobilos nézet */
@media (max-width: 850px) {
    .leiras-kontener { flex-direction: column; }
    .oldal-fejlec h1 { font-size: 2.2rem; }
}


/* --- 1. ÁLTALÁNOS ALAPOK (Minden oldalra) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', 'Georgia', serif; 
    letter-spacing: 1px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: white; 
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header és Navigáció */
header {
    background: #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover { color: #e67e22; }

footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

/* --- 2. FŐOLDAL SPECIFIKUS (Hero szekció) --- */
.hero-szekcio {
    padding: 60px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-logo { flex: 1; min-width: 300px; text-align: center; }
.fokep { max-width: 100%; height: auto; border-radius: 15px; }

.hero-kartya {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.opciok { margin-top: 25px; display: flex; flex-direction: column; gap: 15px; }
.opcio-link {
    text-decoration: none;
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
    border-left: 5px solid transparent;
}
.opcio-link.kek { border-left-color: #2c3e50; }
.opcio-link.narancs { border-left-color: #e67e22; }
.opcio-link:hover { transform: translateX(10px); background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.opcio-link strong { display: block; color: #2c3e50; }

/* --- 3. TERMÉKEK ÉS RENDEZVÉNY OLDALAK --- */
.product-grid, .szolgaltatas-racs {
    display: flex;
    justify-content: center; 
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.card, .szolg-kartya {
    background: white;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

.card:hover, .szolg-kartya:hover { transform: translateY(-10px); }

/* Rendezvény oldal sötét dobozai */
.leiras-kontener {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.leiras-doboz {
    flex: 1;
    background: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.leiras-doboz h3 { color: #e67e22; margin-bottom: 10px; }

/* --- 4. KAPCSOLAT SZEKCIÓ --- */
.contact-section { padding: 80px 0; background-color: #f9f9f9; }
.contact-container { display: flex; gap: 60px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 300px; text-align: left; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-top: 25px; }
.contact-form { flex: 1; min-width: 300px; background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover { background: #e67e22; }

/* --- 5. RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-container, .contact-container, .leiras-kontener {
        flex-direction: column;
    }
    .hero-logo { order: -1; } /* Mobilon a logó legyen legfelül */
}



/* Speciális beállítás a Termékek oldali nagy kártyához */
.kiemelt-kartya {
    width: 100% !important;
    max-width: 600px !important;
    padding: 60px 40px !important;
    margin: 0 auto;
    border-bottom: 8px solid #e67e22 !important;
}

.kiemelt-kartya h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.kiemelt-kartya p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


 