/* --- 1. Alapbeállítások és Betűtípusok --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@200;300;400;600&display=swap');

:root {
    --primary-pink: #fce4ec;       /* Halvány rózsaszín háttér */
    --dark-pink: #d81b60;          /* Hangsúlyos cseresznyevirág szín */
    --gold: #c5a059;               /* Elegáns arany a részleteknek */
    --text-dark: #333333;          /* Sötétszürke szöveg */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Lágy görgetés a menüpontok között */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Navigáció (Átlátszó hatás a Splash felett) --- */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #d81b60; /* A korábban meghatározott sötétrózsaszín */
    text-transform: uppercase;
    
    /* Animáció beállítása: név, időtartam (5 másodperc a lassúságért), 
       görbe (ease-in-out a lágyságért), végtelenített ismétlés */
    animation: softPulse 5s ease-in-out infinite;
}

/* Az animáció meghatározása */
@keyframes softPulse {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(216, 27, 96, 0));
    }
    50% {
        opacity: 0.85; /* Finom halványodás */
        transform: scale(1.02); /* Nagyon enyhe méretnövekedés */
        /* Lágy fényudvar (opcionális, de mélységet ad) */
        filter: drop-shadow(0 0 5px rgba(216, 27, 96, 0.3)); 
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(216, 27, 96, 0));
    }
}

.logo span {
    color: var(--text-dark);
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--dark-pink);
}

/* --- 3. Splash Hero Szekció --- */
.hero {
    height: 100vh;
    /* A megadott Weebly kép útvonala sötétítéssel az olvashatóságért */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), 
                url('static/images/Bckgrnd2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallaxis hatás */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 70px); /* Dinamikus méret mobilra is */
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- 4. Gombok --- */
.btn {
    display: inline-block;
    background-color: var(--dark-pink);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 0; /* Szögletes, elegáns stílus */
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 1px solid var(--dark-pink);
    margin: 10px;
}

.btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* --- 5. Szolgáltatások szekció --- */
#services {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--dark-pink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: #fff9fa;
    border: 1px solid #fce4ec;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price {
    display: block;
    margin-top: 20px;
    color: var(--gold);
    font-weight: 600;
    font-size: 18px;
}

/* --- 6. Galéria --- */
#gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: 0.5s;
    cursor: pointer;
}

.gallery-item:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* --- 7. Lábléc / Kapcsolat --- */
footer {
    background-color: #1a1a1a;
    color: #eeeeee;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

footer p {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 200;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #777;
}

/* --- 8. Mobil optimalizálás --- */
@media (max-width: 768px) {
    nav {
        display: none; /* Mobilon egy burger menü kellene, de alapból most rejtjük */
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .footer-grid {
        text-align: center;
    }
}