:root {
    --primary: #008080; /* Teal */
    --primary-dark: #006666;
    --secondary: #F4A460; /* Sandy Orange */
    --accent: #FFD700; /* Gold */
    /* Módosított háttérszínek a melegebb hatásért */
    --bg-light: #e6f9fc;
    --bg-sand: #FFF5E1;
    --bg-blue: #E0F7FA;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

.section {
    padding: 30px 0;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, #008080 0%, #40E0D0 100%);
    color: var(--white);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 128, 128, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('hero.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0;
}

.hero .date {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-xs);
    color: var(--accent);
}

.hero .slogan {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight-text {
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
    border-left: 4px solid var(--secondary);
    padding-left: var(--spacing-sm);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* FEATURES / WHAT'S INCLUDED */
.bg-sand { background-color: var(--bg-sand); }

.features-grid {
    display: grid;
    /* Alapbeállítás (mobil): rugalmas */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    
    /* Középre igazítás és szélesség korlátozás, hogy szép kompakt legyen */
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Asztali nézetben kényszerítjük a 3 oszlopot */
@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
    background-color: #FFF4E0;
    color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(244, 164, 96, 0.3);
    transition: transform 0.3s;
}

.feature-card:hover .icon {
    transform: rotate(15deg) scale(1.1);
    background-color: var(--secondary);
}

/* ACCOMMODATION */
.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.gallery-grid .wide {
    grid-column: span 2;
}

/* ACTIVITIES */
/* --- ACTIVITIES / PROGRAMOK SZEKCIÓ --- */

.activities-wrapper {
    /* A közös "lebegő kártya" stílus */
    background-color: #FFF5E1;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg); /* Nagyobb térköz a kártyák között */
    margin-top: var(--spacing-md);
}

.activity-item {
    display: flex;
    align-items: center;
    /* Fehér kártyák a homokszín alapon */
    background: #FFFFFF; 
    border-radius: 20px;
    overflow: hidden; /* Hogy a kép sarka is kerek legyen */
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-item.reverse {
    flex-direction: row-reverse;
}

/* Általános képstílus */
.activity-item img {
    width: 50%;
    height: 350px; /* Alap magasság */
    object-fit: cover;
}

/* --- A SPECIÁLIS MAGAS KÉP (Camino) --- */
.tall-item img {
    height: 600px; /* Jelentősen magasabb, hogy a vertikális fotó érvényesüljön */
}

.activity-text {
    padding: 40px; /* Nagyobb belső térköz a levegősebb hatáshoz */
    width: 50%;
}

.activity-text h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .activities-wrapper {
        padding: 20px;
    }

    .activity-item {
        flex-direction: column !important; /* Mobilon mindig egymás alá */
    }
    
    .activity-item img, .activity-text {
        width: 100%;
    }

    .activity-item img {
        height: 250px; /* Mobilon egységes kicsi magasság */
    }

    /* Mobilon a magas kép is legyen normál méretű, különben túl sokat kell görgetni */
    .tall-item img {
        height: 350px; 
    }

    .activity-text {
        padding: 25px;
        text-align: center;
    }
}

/* FOOTER */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0;
}

.footer h2 { color: var(--white); }

.pricing-box {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    border: 1px dashed var(--white);
    border-radius: var(--radius);
    display: inline-block;
}

.big-btn {
    font-size: 1.2rem;
    padding: 16px 48px;
}

.copyright {
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ATMOSPHERE SECTION STÍLUSOK */
.atmosphere-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    
    background-color: #FFF5E1; 
    
    padding: 40px;
    border-radius: 30px;
    
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
    
    border: 1px solid rgba(0,0,0,0.05);

    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.atmosphere-wrapper p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Kép stílusok */
.content-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: 400px; /* Alapértelmezett magasság */
    transition: transform 0.3s ease;
}

.content-img:hover {
    transform: scale(1.02);
}

/* Egyedülálló kép középen */
.single-image-container {
    margin: var(--spacing-md) 0;
    display: flex;
    justify-content: center;
}

.content-img.single {
    max-width: 800px;
    height: auto;
    max-height: 500px;
}

/* Képpárok tárolója */
.image-pair {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    justify-content: center;
}

.image-pair img {
    width: 50%;
}

/* --- ÚJ RÉSZ: MAGASABB KÉPEK A PÁROKNÁL --- */
.image-pair .content-img {
    height: 600px; /* Megnövelt magasság az álló képekhez */
}

/* Kiemelt szöveg felülírás */
.atmosphere-wrapper .highlight-text {
    border-left: none;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: var(--spacing-sm);
    padding-left: 0;
    display: inline-block;
}

.included-wrapper {
    background-color: #FFF5E1; /* Meleg homokszín háttér */
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Erős árnyék a lebegő hatáshoz */
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    
    /* Mivel ez egy szélesebb tartalom, engedjük nagyobbra nőni */
    max-width: 1200px;
    margin: 0 auto; 
}

/* Mobilon csökkentjük a belső távolságot, hogy több hely maradjon a tartalomnak */
@media (max-width: 768px) {
    .included-wrapper {
        padding: 20px;
    }
}

/* HULLÁM EFFEKT A HERO ALJÁN */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px; /* Kicsi átfedés a biztonság kedvéért */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-light);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .activity-item {
        flex-direction: column !important;
    }
    
    .activity-item img, .activity-text {
        width: 100%;
        height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .wide {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Mobil nézet az Atmosphere szekcióhoz */
    .image-pair {
        flex-direction: column;
    }

    .image-pair img {
        width: 100%;
        height: auto;
        /* Mobilon nem kell 600px magasnak lennie, mert túl sokat kellene görgetni */
        max-height: 400px; 
    }
    
    .content-img.single {
        width: 100%;
    }
    
    /* Kisebb hullám mobilon */
    .custom-shape-divider-bottom svg {
        height: 60px;
    }
    
    .atmosphere-wrapper {
        padding: 20px;
        margin-top: -30px;
    }
}

/* --- SZÁLLÁS SZEKCIÓ (MODERN MOZAIK) --- */

.accommodation-wrapper {
    /* Ugyanaz a kártya stílus, mint a többinél */
    background-color: #FFF5E1; 
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.atmosphere-wrapper-2 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    
    background-color: #FFF5E1; 
    
    padding: 40px;
    border-radius: 30px;
    
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
    
    border: 1px solid rgba(0,0,0,0.05);


    position: relative;
    z-index: 10;
}

.atmosphere-wrapper-2 p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}


/* Szöveges rész formázása */
.lead-text {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    color: var(--text-dark);
}

.hotel-features-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hotel-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--primary-dark);
}

.feature-icon {
    font-size: 1.2rem;
}

/* MOZAIK GALÉRIA RÁCS */
.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 oszlop */
    grid-template-rows: 300px 250px; /* Két sor magassága fixálva */
    gap: var(--spacing-sm);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* A fő kép (Medence) foglaljon el 2x2 helyet */
.item-main {
    grid-column: span 2;
    grid-row: span 2;
}

/* Opcionális: Szöveg a képen */
.overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* RESPONSIVE: MOBIL NÉZET */
@media (max-width: 768px) {
    .hotel-features-row {
        gap: 10px;
    }
    
    .hotel-feature {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    /* Mobilon egymás alá kerülnek a képek */
    .hotel-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .gallery-item img {
        height: 250px; /* Egységes magasság mobilon */
    }
    
    .accommodation-wrapper {
        padding: 20px;
    }
}

/* --- TRAINER / SZERVEZŐ SZEKCIÓ (JAVÍTOTT MOBIL NÉZET) --- */

.trainer-wrapper {
    background-color: #FFF5E1;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.trainer-content {
    padding: var(--spacing-lg);
}

/* ÚJ: Külön header rész a feliratnak */
.trainer-header {
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.section-subtitle {
    display: inline-block; /* Hogy szépen középre lehessen igazítani */
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary); /* Kis díszítés */
    padding-bottom: 5px;
}

/* ÚJ: Ez fogja össze a képet és a szöveget */
.trainer-body {
    display: flex;
    align-items: center; /* Függőlegesen középre igazít */
    gap: var(--spacing-lg);
}

/* KÉP STÍLUS */
.trainer-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 300px;
    height: 400px;
    background: #fff;
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* SZÖVEG STÍLUS */
.trainer-text-content {
    flex: 1.2;
    text-align: left;
}

.trainer-text-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.role-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-text p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.7;
}

.trainer-actions {
    margin-top: var(--spacing-md);
}

.small-note {
    margin-top: 10px;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
}

/* MOBIL NÉZET */
@media (max-width: 768px) {
    .trainer-content {
        padding: 30px 20px;
    }

    .trainer-body {
        flex-direction: column; /* Egymás alá rendezés */
        text-align: center;
    }
    
    .trainer-text-content {
        text-align: center;
    }
    
    .image-frame {
        width: 100%;
        max-width: 280px;
        height: 350px;
        transform: rotate(0deg);
        margin-bottom: 20px;
    }
}

/* --- SALOU INTRO SZÖVEG FORMÁZÁS --- */

.intro-block {
    margin-bottom: var(--spacing-lg); /* Távolság a kártyák előtt */
}

/* Az első bekezdés finomítása */
.intro-block .lead-text {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.8; /* Jobb olvashatóság */
}

/* A második, összekötő mondat stílusa */
.section-connector {
    font-size: 1.2rem;
    font-weight: 600; /* Félkövér */
    color: var(--primary); /* Teal szín, hogy harmonizáljon a címmel */
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

/* Opcionális: egy kis nyíl vagy díszítés alá, ha szeretnéd */
.section-connector::after {
    content: "👇"; /* Vagy használhatsz CSS nyilat is */
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* --- REGISZTRÁCIÓ ÉS ÁRAK SZEKCIÓ --- */

.register-wrapper {
    /* A külső krémszínű keret (mint a többi szekciónál) */
    background-color: var(--bg-sand);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    max-width: 800px; /* Keskenyebb, fókuszáltabb doboz */
    margin: 0 auto;
    text-align: center;
}

.register-wrapper .section-title {
    font-size: 2.5rem;
    color: var(--primary); /* A cím harmonizál a kártyával */
    margin-bottom: var(--spacing-md);
}

/* A BELSŐ SZÍNES KÁRTYA */
.pricing-card {
    /* Teal gradiens háttér a brand színeiből */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
}

.pricing-card h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-body);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.deposit-note {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Elválasztó vonal */
.divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    margin: 30px 0;
}

/* Lista formázása */
.pricing-details-list {
    list-style: none;
    text-align: left;
    max-width: 550px;
    margin: 0 auto 40px auto; /* Középre igazítva a dobozon belül */
}

.pricing-details-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between; /* Szétnyomja a címkét és az értéket */
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Halvány sorvezető */
    padding-bottom: 8px;
}

.pricing-details-list li strong {
    font-weight: 600;
    color: var(--accent); /* Az arany szín kiemeli a kulcsszavakat */
}

/* Gomb a kártyán belül */
.pricing-card .btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pricing-card .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background-color: var(--accent); /* Hoverre aranyra vált */
    color: var(--text-dark);
}

/* Copyright szöveg */
.copyright {
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
    color: var(--primary-dark);
    opacity: 0.7;
}

/* MOBIL NÉZET */
@media (max-width: 768px) {
    .register-wrapper {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }

    .price-tag {
        font-size: 2.5rem;
    }

    .pricing-details-list li {
        flex-direction: column; /* Mobilon egymás alá kerüljön a címke és az érték */
        text-align: center;
        gap: 5px;
    }
}

/* A kis címke a kártya tetején */
.early-bird-badge {
    background-color: var(--accent); /* Arany/Sárga szín */
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite; /* Kis lüktetés, hogy észrevegyék */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Árak elrendezése */
.price-container {
    margin-bottom: 20px;
}

.regular-price {
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.regular-price .struck {
    text-decoration: line-through; /* Áthúzás */
    font-weight: 600;
    margin-left: 5px;
}

/* A kedvezményes ár felülírása/kiegészítése */
.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1;
}

.discount-note {
    color: var(--accent); /* Kiemelő szín */
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* MOBIL NÉZET IGAZÍTÁS */
@media (max-width: 768px) {
    .price-tag {
        font-size: 2.8rem;
    }
}

.trainer-contact {
    display: flex;
    flex-direction: column; /* Egymás alatt legyenek */
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05); /* Halvány elválasztó vonal */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-item a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary); /* Hoverre türkiz lesz */
}

.contact-icon {
    font-size: 1.2rem;
}

/* Mobilon igazítás */
@media (max-width: 768px) {
    .trainer-contact {
        align-items: center; /* Mobilon középre rendezzük */
    }
}