/* ============================================
   FANTÁZIA GRÁNIT KFT. - FŐOLDAL CSS
   Stílus: Ugyanolyan világos design mint a kalkulátor
   Alapszínek: #57534e, #292524, #78716c, fehér, bézs
   ============================================ */

/* ===== VÁLTOZÓK ===== */
:root {
    --szin-sotét: #292524;
    --szin-kozep: #57534e;
    --szin-vilagos: #78716c;
    --szin-halvany: #a8a29e;
    --szin-hatter: #f5f5f0;
    --szin-hatter2: #fafaf8;
    --szin-feher: #ffffff;
    --szin-border: #e7e5e4;
    --szin-border2: #d6d3d1;
    --arany: #c9a96e;
    --arany-sotet: #8a6d3b;
    --font-alap: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== ALAP ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-alap);
    background-color: #d6d2cc;
    min-height: 100vh;
    color: var(--szin-sotét);
    position: relative;
}

/* Fixált gránit háttér az egész oldalon */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('../images/hatter.jpg') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== FEJLÉC / NAV ===== */
.header {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* LOGÓ */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--szin-sotét);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--szin-vilagos);
    letter-spacing: 0.08em;
}

/* NAVIGÁCIÓ */
.main-nav { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--szin-kozep);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--szin-kozep);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--szin-sotét);
    background: transparent;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--szin-sotét);
    font-weight: 700;
    background: transparent;
}

.nav-link.active::after {
    transform: scaleX(1);
    background: var(--szin-sotét);
}

/* KALKULÁTOR CTA GOMB */
.nav-cta {
    background: var(--szin-kozep) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 0.6rem 1.25rem !important;
}

.nav-cta:hover {
    background: var(--szin-sotét) !important;
    color: white !important;
}

.nav-cta.active {
    background: var(--szin-sotét) !important;
    color: white !important;
}

.nav-cta::after,
.nav-cta.active::after {
    display: none !important;
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
    list-style: none;
}

/* A dropdown nav-link-jén az aláhúzás ne legyen - ott a nyíl jelzi */
.nav-dropdown > .nav-link::after {
    display: none;
}

.nav-dropdown > .nav-link .dropdown-arrow {
    display: inline-block;
    font-size: 0.65rem;
    margin-left: 3px;
    transition: transform 0.2s;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--szin-border);
    list-style: none;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--szin-kozep);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--szin-hatter);
    color: var(--szin-sotét);
}

/* HAMBURGER */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-toggle:hover { background: var(--szin-hatter); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--szin-kozep);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 520px;
    max-height: 860px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(41,37,36,0.80) 0%,
        rgba(41,37,36,0.60) 35%,
        rgba(41,37,36,0.20) 65%,
        rgba(41,37,36,0.00) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 6rem;
    max-width: 800px;
    animation: fadeUp 0.9s ease-out both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 0.9s 0.1s ease-out both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.9s 0.15s ease-out both;
}

.hero-title span {
    color: rgba(255,255,255,0.75);
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    animation: fadeUp 0.9s 0.25s ease-out both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.35s ease-out both;
}

/* GOMBOK */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    background: var(--szin-kozep);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--szin-kozep);
    transition: all 0.25s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--szin-sotét);
    border-color: var(--szin-sotét);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    color: var(--szin-kozep);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--szin-border2);
    transition: all 0.25s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--szin-kozep);
    background: white;
    color: var(--szin-sotét);
    transform: translateY(-2px);
}

/* Hero-n belüli btn-secondary marad fehér */
.hero .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.hero .btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* Hero görgetés nyíl */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.hero-scroll:hover { color: white; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== INFOSÁV ===== */
.info-bar {
    background: rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--szin-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

.info-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    min-height: 52px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
    color: var(--szin-vilagos);
    border-right: 1px solid var(--szin-border);
}

.info-item:last-child { border-right: none; }

.info-item svg { color: var(--szin-kozep); flex-shrink: 0; }

.info-item a {
    color: var(--szin-vilagos);
    text-decoration: none;
    transition: color 0.2s;
}

.info-item a:hover { color: var(--szin-sotét); }

/* ===== ÁLTALÁNOS SECTION STÍLUSOK ===== */
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--szin-kozep);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--szin-sotét);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 em { font-style: italic; font-weight: 300; }

.section-lead {
    font-size: 1rem;
    color: var(--szin-vilagos);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BEMUTATKOZÁS ===== */
.about-section {
    padding: 7rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 3rem;
}

.about-image-side {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--szin-border);
}

/* Placeholder ha nincs kép */
.img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--szin-hatter);
    border: 2px dashed var(--szin-border2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--szin-halvany);
}

.about-year-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--szin-kozep);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.year-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.year-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.about-text-side .section-eyebrow {
    display: block;
    margin-bottom: 0.5rem;
    text-align: left;
}

.about-text-side {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.about-text-side h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--szin-sotét);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-text-side h2 em { font-style: italic; font-weight: 300; }

.about-text-side p {
    font-size: 0.95rem;
    color: var(--szin-vilagos);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--szin-border);
}

.stat-item { text-align: center; }

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--szin-sotét);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--szin-vilagos);
    margin-top: 0.4rem;
}

/* ===== SZOLGÁLTATÁSOK ===== */
.services-section {
    padding: 7rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.services-section .section-inner,
.materials-section .section-inner,
.siremlekek-section .section-inner {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 3rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--szin-border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: var(--szin-border2);
}

.service-card-img {
    height: 180px;
    overflow: hidden;
    background: var(--szin-hatter);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.img-placeholder-sm {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--szin-hatter) 0%, var(--szin-border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--szin-halvany);
}

.service-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--szin-sotét);
}

.service-card-body p {
    font-size: 0.85rem;
    color: var(--szin-vilagos);
    line-height: 1.6;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--szin-kozep);
    margin-top: 0.5rem;
    transition: gap 0.2s;
}

.service-card:hover .card-link {
    gap: 0.7rem;
    color: var(--szin-sotét);
}

/* ===== SÍREMLÉKEK ===== */
.siremlekek-section {
    padding: 7rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}


.siremlekek-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.siremlekek-text .section-eyebrow {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
}

.siremlekek-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--szin-sotét);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.siremlekek-text p {
    font-size: 0.95rem;
    color: var(--szin-vilagos);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.siremlekek-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--szin-border);
    aspect-ratio: 4/3;
    background: var(--szin-hatter);
}

.siremlekek-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder-rect {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--szin-hatter) 0%, var(--szin-border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--szin-halvany);
}

/* ===== ANYAGKÍNÁLAT ===== */
.materials-section {
    padding: 7rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.material-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--szin-border);
    transition: all 0.3s;
    padding-bottom: 1.5rem;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.material-img {
    height: 140px;
    overflow: hidden;
    background: var(--szin-hatter);
    margin-bottom: 1rem;
}

.material-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.material-card:hover .material-img img { transform: scale(1.05); }

.material-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--szin-sotét);
    padding: 0 1.25rem 0.4rem;
}

.material-card p {
    font-size: 0.82rem;
    color: var(--szin-vilagos);
    padding: 0 1.25rem;
    line-height: 1.6;
}

/* ===== KALKULÁTOR BANNER ===== */
.calculator-banner {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.calc-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    background: rgba(87, 83, 78, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    padding: 2.5rem 3rem;
}

.calc-banner-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.calc-banner-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 500px;
}

.calculator-banner .btn-primary {
    background: white;
    color: var(--szin-kozep);
    border-color: white;
    white-space: nowrap;
    flex-shrink: 0;
}

.calculator-banner .btn-primary:hover {
    background: var(--szin-hatter);
    color: var(--szin-sotét);
    transform: translateY(-2px);
}

/* ===== ELÉRHETŐSÉG ELŐNÉZET ===== */
.contact-preview {
    padding: 7rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 3rem;
}


.contact-info .section-eyebrow {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--szin-sotét);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    color: var(--szin-kozep);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--szin-sotét);
}

.contact-item a, .contact-item span {
    font-size: 0.875rem;
    color: var(--szin-vilagos);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.contact-item a:hover { color: var(--szin-sotét); text-decoration: underline; }

.contact-hours {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--szin-border);
}

.contact-hours h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--szin-sotét);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--szin-border);
}

.hours-list { display: flex; flex-direction: column; gap: 0; }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--szin-border);
    font-size: 0.875rem;
}

.hours-row:last-child { border-bottom: none; }

.day { color: var(--szin-vilagos); }
.time { font-weight: 600; color: var(--szin-sotét); }
.hours-row.closed .time { color: var(--szin-halvany); }

.email-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: #fef9ec;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.email-note svg { color: #d97706; flex-shrink: 0; margin-top: 2px; }

.email-note p {
    font-size: 0.8rem;
    color: #78716c;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgba(41, 37, 36, 0.92);
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-logo-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-nav h4, .footer-contact h4, .footer-hours h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav a, .footer-contact a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover, .footer-contact a:hover { color: white; }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact p { font-size: 0.875rem; }

.footer-hours p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

.footer-sep { margin: 0 0.5rem; opacity: 0.3; }

@media (max-width: 1024px) {
    .services-grid, .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-link { padding: 0.75rem 1rem; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--szin-hatter);
        border-radius: 8px;
        margin-top: 0.25rem;
    }

    .nav-toggle { display: flex; }

    .hero-content { padding: 2rem 1.5rem; }
    .hero-title { font-size: 2.5rem; }

    .info-bar-inner { flex-direction: column; gap: 0; }
    .info-item { border-right: none; border-bottom: 1px solid var(--szin-border); width: 100%; justify-content: center; }
    .info-item:last-child { border-bottom: none; }

    .about-grid, .siremlekek-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .about-year-badge { right: 1rem; }

    .services-grid, .materials-grid { grid-template-columns: 1fr; }

    .calc-banner-inner { flex-direction: column; text-align: center; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }

    .section-inner { padding: 0 1rem; }
    section { padding: 4rem 0 !important; }
}

@media (max-width: 480px) {
    .hero { height: 85vh; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .about-stats { grid-template-columns: 1fr; gap: 1rem; }
}