/* ▬▬▬ ALAP BEÁLLÍTÁSOK ▬▬▬ */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fafafa;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    margin: 0 0 10px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ▬▬▬ NAVIGÁCIÓ ▬▬▬ */
.header {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    z-index: 10;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 45px; /* L1 méret */
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #a88654;
}

/* ▬▬▬ HERO SZEKCIÓ ▬▬▬ */
.hero {
    height: 90vh;
    background-image: url('hero_scales.jpg'); /* Háttérkép */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65); /* Sötétített T1 overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 40%;
    transform: translateY(-40%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.hero h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #a88654;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background .3s ease;
}

.btn-primary:hover {
    background: #8d6f40;
}

/* ▬▬▬ SZEKCIÓK ▬▬▬ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    text-align: center;
}

.dark-section {
    background: #111;
    color: white;
}

.light {
    color: white;
}

/* ▬▬▬ GRID SZOLGÁLTATÁSOK ▬▬▬ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.grid-item {
    background: #fff;
    color: #222;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Sötét szakaszhoz fehér dobozok */
.dark-section .grid-item {
    background: #222;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ▬▬▬ DÍJSZABÁS – ACCORDION (A2) ▬▬▬ */

.accordion {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    transition: color .3s ease;
}

.accordion-header:hover {
    color: #a88654;
}

/* I2 – chevron ikon */
.chevron {
    border: solid #333;
    border-width: 0 2px 2px 0;
    padding: 5px;
    transform: rotate(45deg);
    transition: transform .3s ease;
}

/* Nyitott állapot */
.accordion-item.active .chevron {
    transform: rotate(-135deg);
}

/* Lenyíló tartalom – ANIMÁCIÓVAL */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.accordion-content p {
    padding: 0 0 20px;
    line-height: 1.7;
}

/* ▬▬▬ GOOGLE MAPS ▬▬▬ */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ▬▬▬ FOOTER ▬▬▬ */
.footer {
    background: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* ▬▬▬ LINK STÍLUSOK (kattintható telefon/e-mail) ▬▬▬ */
a {
    color: #a88654;
    text-decoration: none;
}

a:hover {
    color: #8d6f40;
}

/* ▬▬▬ RESZPONZÍV TÖRÉSPONTOK ▬▬▬ */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .nav a {
        margin-left: 15px;
        font-size: 0.9rem;
    }
}
