/* style.css - Új, modern dizájn */

/* === VÁLTOZÓK ÉS ALAP BEÁLLÍTÁSOK === */
:root {
    --primary-color: #15BCCE;   /* ÚJ Türkiz */
    --secondary-color: #F7F5F2; /* Törtfehér, meleg háttér */
    --accent-color: #00FFF7;    /* Meglévő világos Türkiz/Cián */
    --text-color: #333333;      /* Sötétszürke szöveg */
    --light-text: #F7F5F2;      /* Világos szöveg sötét háttéren */
    --white: #FFFFFF;
    --border-color: #e0e0e0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 100px 0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}
.section--light-bg {
    background-color: var(--secondary-color);
}
.section--dark {
    background-color: #2c343f;
    color: var(--light-text);
}
.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}
.section__title--left {
    text-align: left;
}
.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}
.section__title--left::after {
    margin: 15px 0 0;
}
.section__subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
}
.section__cta {
    text-align: center;
    margin-top: 50px;
}


/* === GOMBOK === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn--primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn--primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn--accent {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
}
.btn--accent:hover {
    background-color: #00e6e6; /* Kicsit sötétebb hover szín */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn--secondary {
    background-color: var(--text-color);
    color: var(--white);
    border-color: var(--text-color);
    padding: 8px 20px;
    font-size: 0.8rem;
}
.btn--secondary i {
    margin-right: 5px;
}

.btn--secondary:hover {
    background-color: #444;
}
.btn-submit {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}
.btn-submit:hover {
    background: #12a5b3; /* Sötétebb türkiz */
}


/* === NAVIGÁCIÓ === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    /* JAVÍTÁS: Alapértelmezett háttérszín a láthatóságért */
    background-color: var(--white); 
}
.navbar--scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar__logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}
.navbar__links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}
.navbar__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.navbar__links a:not(.btn):hover::after {
    width: 100%;
}
.navbar__admin-link {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* === HERO SZEKCIÓ === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Hely a navbárnak */
    overflow: hidden;
}
.hero__video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.hero__video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 245, 242, 0.85);
    z-index: 2;
}

/* JAVÍTÁS: A .navbar felülírását megszüntettük. Csak a hero__content-re marad a position: relative */
.hero__content {
    position: relative;
    z-index: 3;
}
/* EREDETI (Hibásan felülírja a position: fixed-et a navbar-on) 
.hero__content, .navbar {
    position: relative;
    z-index: 3;
}
*/

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 10px;
}
.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* === FŐ SZOLGÁLTATÁSOK (FEATURES) === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.feature-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.feature-card__image-wrapper {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}
.feature-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    /* ÚJ JAVÍTÁS: A képet alulra igazítjuk, így az alsó része látható jobban */
    object-position: 100% top; /* Vagy 50% 100% */
}

.feature-card:hover .feature-card__image-wrapper img {
    transform: scale(1.05);
}
.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.feature-card__contact {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* === RÓLUNK SZEKCIÓ === */
.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}
.about__image-wrapper {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.about__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.about__content {
    flex: 1;
}

/* === ÁRLISTA === */
.category-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.info-item {
    background: var(--secondary-color);
    padding: 15px;
    border-left: 4px solid var(--accent-color);
}
.price-note-small { text-align: center; margin-bottom: 50px; color: #777; font-style: italic; }

.price-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .price-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.price-service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.price-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.price-service-card h3 { 
    font-family: var(--font-heading);
    color: var(--primary-color); 
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 15px; 
    margin: 0 0 15px 0;
}
.price-service-card p {
    flex-grow: 1;
}
.price-card-details { margin-top: 15px; }
.price-card-details div { display: flex; justify-content: space-between; margin-bottom: 10px; padding: 5px 0; }
.price-card-details strong { color: var(--text-color); font-weight: 700; font-size: 1.1em; }

.other-services { margin-top: 50px; }
.other-services h3 { font-family: var(--font-heading); text-align: center; font-size: 1.8rem; margin-bottom: 30px; color: var(--primary-color); }
.other-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}
.other-service-item:hover { background-color: var(--secondary-color); }
.other-service-details strong { font-size: 1.1rem; }
.other-service-details span { display: block; font-size: 0.9rem; color: #777; }
.other-service-price { 
    font-size: 1.2em; 
    font-weight: 700; 
    color: var(--primary-color); 
    /* ÚJ: Megakadályozza a szám és pénznem közötti tördelést */
    white-space: nowrap; 
} 

/* === MOBIL CTA GOMB === */
.mobile-booking-cta {
    display: none; /* Alapból rejtett */
    padding: 40px 0;
    text-align: center;
    background-color: var(--secondary-color);
    margin-top: 40px; 
}

/* === FOGLALÁS / NAPTÁR === */
.booking-grid { 
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 60px;
}
.calendar-wrapper {
    display: flex;
    flex-direction: column; 
}
#calendar { 
    background-color: var(--white); 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    padding: 20px;
}
.urgent-notice {
    text-align: center;
    padding: 25px;
    margin-top: 25px;
    background-color: var(--white);
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.urgent-notice i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.urgent-notice h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
}
.urgent-notice__phone {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}
.booking-panel {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.booking-panel__selected-date { margin-bottom: 20px; font-size: 1.1rem; }
.booking-panel__selected-date strong { color: var(--primary-color); }

/* Form stílusok */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
    color: var(--text-color);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(21, 188, 206, 0.2);
}
.message, #message { margin-top: 20px; padding: 15px; border-radius: 5px; text-align: center; display: block!important; }
.message.success, #message.success { background-color: #d4edda; color: #155724; }
.message.error, #message.error { background-color: #f8d7da; color: #721c24; }
.message.warning, #message.warning { background-color: #fff3cd; color: #856404; }

/* FullCalendar stílusok felülírása */
:root { --fc-border-color: var(--border-color); --fc-today-bg-color: rgba(21, 188, 206, 0.15); }
.fc .fc-button-primary { background-color: var(--primary-color) !important; border-color: var(--primary-color) !important; }
.fc .fc-button-primary:hover { background-color: #12a5b3 !important; }
.fc-daygrid-day.fc-day-today { background-color: var(--fc-today-bg-color); }
.fc-daygrid-event { background-color: var(--accent-color); border: none; color: var(--text-color); }

/* === KAPCSOLAT === */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}
.contact-info__title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
}
.contact-info__title:first-child { margin-top: 0; }
.contact-info p { margin-bottom: 10px; }
.contact-info p i { color: var(--accent-color); margin-right: 10px; width: 20px; text-align: center; }
.contact-info a { color: var(--light-text); text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: var(--accent-color); }
.contact-info__social { margin-top: 30px; }
.contact-info__social a { margin-right: 20px; font-size: 1.2rem; }
.contact-form-wrapper .form-group label { color: var(--light-text); }
.contact-form-wrapper .form-group input, .contact-form-wrapper .form-group textarea { background-color: #454e5a; border-color: #666; color: var(--white); }
.contact-form-wrapper .form-group input:focus, .contact-form-wrapper .form-group textarea:focus { background-color: #454e5a; }
.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%; height: 100%; border: 0;
}

/* === LÁBLÉC === */
.footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 25px;
    font-size: 0.9em;
}

/* === ANIMÁCIÓK === */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-animation="fade-in-up"] { transform: translateY(40px); }
[data-animation="slide-in-left"] { transform: translateX(-50px); }
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === RESZPONZIVITÁS === */
@media (max-width: 992px) {
    .about-container { flex-direction: column; }
    .booking-grid { grid-template-columns: 1fr; }
    .calendar-wrapper { margin-bottom: 40px; }
    .contact-split { grid-template-columns: 1fr; }
    .navbar__links { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section__title { font-size: 2.2rem; }
    .hero { height: auto; padding: 150px 0 80px 0; }
    .hero__title { font-size: 2.8rem; }
    .about-container { gap: 40px; }
    .category-info-grid { grid-template-columns: 1fr; }
    /* A mobile-booking-cta láthatóvá tétele mobil nézetben */
    .mobile-booking-cta { display: block; }
}