/* --- Változók és Alapbeállítások --- */
:root {
    /* Színpaletta frissítése - kicsit melegebb, elegánsabb tónusok */
    --primary-color: #d4a5a5;
    --primary-dark: #b58585;
    --secondary-color: #2c2c2c;
    --text-color: #666666;
    --bg-color: #fffbfb; /* Nagyon halvány rózsaszínes fehér */
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --shadow-soft: 0 10px 40px rgba(212, 165, 165, 0.15);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.05);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Gombok (Modernizálva) --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--primary-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.6);
}

.btn-primary:hover::before { width: 100%; }

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-3px);
}

/* --- Szekciók --- */
.section { padding: 100px 0; }
.bg-light { background-color: #ffffff; padding-bottom: 50px;}
.bg-pink { background-color: #fff0f0; } /* Finomított árnyalat */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Dekoratív aláhúzás */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Navigáció (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 1000;
    padding: 20px 0;
    background: black;
    opacity: 80%;
}

/* JS adja hozzá ezt a class-t görgetéskor */
.navbar.scrolled {
    background: white;
    opacity: 80%;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo span { color: var(--primary-color); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #797979;
    position: relative;
}

/* Hover effekt a menüre */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary-color); }

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}
.btn-nav::after { display: none; } /* A gombnak ne legyen aláhúzása */

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--secondary-color); }

/* --- Hero Szekció --- */
.hero {
    height: 100vh;
    background-image: url('T6Rq8-Km.jpeg'); /* Helyi kép */
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

/* Modernebb overlay gradienssel */
.hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 5rem); /* Reszponzív betűméret */
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: white; /* Itt kezeld a színt az inline stílus helyett */
    /* Ide jöhetnek az árnyékok is, hogy jobban olvasható legyen a kép felett */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- Rólam Szekció (Modernizálva) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img { position: relative; }

.about-img img {
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
    position: relative;
}

/* Dekoratív elem a kép mögött keret helyett */
.about-img::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 60%; height: 80%;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 10px;
    z-index: 1;
}

.about-text h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 25px;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}
.stat-item p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- Parallax Separator --- */
.parallax-separator {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* --- Szolgáltatások (Kártyák) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 00px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-card);
}

.service-card .icon-box {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box { transform: scale(1.1); }

.service-list li {
    margin-bottom: 12px;
    color: #777;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- Galéria (Masonry stílus utánzat) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 165, 165, 0.85);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* --- Vélemények --- */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 20px;
}

/* --- Kapcsolat (Letisztult form) --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 40px;
}

.contact-info h2 { color: var(--white); }
.contact-info p { color: #aaa; margin-bottom: 40px; }

.info-item { margin-bottom: 25px; color: #ddd; display: flex; align-items: center;}
.info-item i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; }

.contact-form { padding: 60px 40px; }

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.1);
    outline: none;
}

/* --- Footer --- */
footer {
    background-color: #1a1a1a;
    color: #888;
    padding-top: 80px;
}

.footer-col h3 { color: var(--white); font-size: 1.4rem; }

/* --- Animációk (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    padding-left: 30px;
}

/* --- Reszponzivitás --- */
@media screen and (max-width: 900px) {
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .hero { background-attachment: scroll; } /* Mobilon ne legyen fixed a háttér */
    .parallax-separator { background-attachment: scroll; }
    
    .nav-links {
        position: absolute;
        right: 0; top: 0;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        width: 80%;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { transform: translateX(0); }
    .hamburger { display: block; z-index: 1001; }
    
    .contact-info, .contact-form { padding: 40px 25px; }
}