/* --- VÁLTOZÓK (Sötétített Acél Téma - CSAK NARANCS) --- */
:root {
    --primary-orange: #F18A14;
    --vibrant-yellow: #F18A14;
    --bg-body: #90A4AE;
    --bg-light-grey: #607D8B;
    --bg-white: #ECEFF1;
    --text-dark: #263238;
    --text-muted: #455A64;
    --accent-blue: #2980b9;
}

/* --- ALAP BEÁLLÍTÁSOK --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif; 
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 1.1rem;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    text-align: center;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- UI ELEMEK (GOMBOK) --- */
.btn {
    display: inline-block;
    padding: 8px 30px; 
    border-radius: 4px; 
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.4rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary, .btn-secondary {
    background: var(--primary-orange);
    color: #fff;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    background-color: #d3760e;
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/* --- NAVIGÁCIÓ --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(236, 239, 241, 0.98); 
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; 
    font-size: 2rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.4rem; 
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- SZEKCIÓK ÁLTALÁNOS --- */
#about, #services, #trainers, #timetable, #prices, #contact {
    padding: 50px 0;
}

.page-header {
    padding-top: 100px;
    padding-bottom: 30px;
    background-color: var(--bg-light-grey);
    text-align: center;
    color: #fff;
}

.content-section {
    padding: 60px 0;
    background-color: var(--bg-body);
}

.section-title-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem; 
    position: relative;
    display: inline-block;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 8px; 
    background-color: var(--primary-orange);
    margin: 15px auto 0 auto;
}

.section-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* --- HERO SZEKCIÓ --- */
#home {
    position: relative;
    height: 65vh;
    min-height: 450px;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem; 
    margin-bottom: 20px;
    text-shadow: 3px 3px 20px rgba(0,0,0,0.9);
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: #eceff1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide.active .hero-content {
    animation: fadeInUp 1s ease forwards;
}

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

/* --- RÓLUNK SZEKCIÓ ÉS OLDAL --- */
#about {
    background-color: var(--bg-white);
}

#about .section-title {
    color: #222;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.15rem;
    text-align: justify;
}

.check-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.check-list i {
    color: var(--accent-blue);
    margin-right: 15px;
    font-size: 1.4rem;
}

.about-image {
    background-image: url('img/terem.jpg');
    height: 550px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    filter: brightness(1.2); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 10;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.numbers {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.numbers .number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 4px;
}

.philosophy-card {
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.philosophy-card h4 {
    text-align: left;
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 4px solid var(--primary-orange);
    display: inline-block;
}

.philosophy-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    margin: 25px 0 15px 0;
    color: var(--text-dark);
    text-transform: uppercase;
}

.philosophy-card h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin: 30px 0;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    border: 2px dashed var(--primary-orange);
    padding: 15px;
}

.philosophy-card p, .numbers p {
    text-align: justify;
    hyphens: auto;
}

/* --- EDZÉSEINK & SERVICES --- */
#services {
    background-color: var(--bg-light-grey); 
    text-align: center;
}

#services .section-title {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    padding: 30px 20px; 
    border-radius: 4px;
    transition: transform 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-bottom: 6px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-orange);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--vibrant-yellow);
    margin-bottom: 20px;
    text-shadow: 1px 1px 0px #aaa;
}

.service-card h4 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.4;
}

.service-detail-card {
    background: #fff;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-images img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-images img:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    filter: brightness(1.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 10;
}

.service-text h3 {
    text-align: left;
    font-size: 2.1rem;
    padding-bottom: 20px;
}

.service-text h3 span {
    color: var(--primary-orange);
    font-size: 1.6rem;
    font-style: italic;
}

.service-text h4 {
    text-align: left;
    font-size: 1.5rem;
    padding-bottom: 15px;
}

.service-text h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.details-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 4px;
    margin-top: 25px;
    border-left: 5px solid var(--primary-orange);
}

/* --- CTA DOBOZOK --- */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.cta-box {
    background-color: var(--bg-light-grey);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-box h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #eceff1;
}

/* --- OKTATÓK --- */
#trainers {
    background-color: var(--bg-white);
}

#trainers .section-title {
    color: #222;
}

.trainers-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.trainer-horizontal-card {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    gap: 20px;
    border-left: 5px solid var(--primary-orange);
    height: 100%;
}

.trainer-img-wrap {
    flex: 0 0 120px;
    height: 120px;
}

.trainer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.trainer-img-wrap img:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trainer-details h3 {
    text-align: left;
    margin-bottom: 8px;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: block; 
}

.trainer-details h3 span {
    color: var(--primary-orange);
    font-size: 1.3rem; 
    font-weight: 700;
    margin-left: 2px; 
}

.trainer-details p {
    text-align: justify;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- GALÉRIA --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    height: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.gallery-item img:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    filter: brightness(1.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 10;
}

/* --- LIGHTBOX (MODAL) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 50, 56, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80vh;
    border: 4px solid #fff;
    border-radius: 4px;
}

.modal-close, .modal-prev, .modal-next {
    position: absolute;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close { top: 20px; right: 30px; }
.modal-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.modal-next { right: 30px; top: 50%; transform: translateY(-50%); }

.modal-close:hover, .modal-prev:hover, .modal-next:hover {
    color: var(--primary-orange);
}

/* --- ÓRAREND --- */
#timetable {
    background-color: var(--bg-light-grey);
    color: #fff;
}

#timetable .section-title { color: #fff; }

.legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    padding: 5px 10px;
    border-radius: 4px;
}

.legend-item.active, .legend-item:hover {
    opacity: 1;
    background-color: rgba(241, 138, 20, 0.15);
    border: 1px solid var(--primary-orange);
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 2px;
}

.kettlebell-bg { background: #F18A14; }
.functional-bg { background: #2980b9; }
.lifting-bg { background: #27ae60; }
.regatta-bg { background: #8e44ad; }
.kyo-bg { background: #263238; }

.timetable-grid-full {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: start;
}

.day-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 8px;
}

.day-header {
    background: var(--text-dark);
    color: var(--primary-orange);
    padding: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 2px;
    text-align: center;
}

.class-card {
    background: #fff;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 5px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.class-card:hover {
    transform: translateX(5px);
    filter: brightness(1.1);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.class-card.kettlebell { border-left-color: #F18A14; }
.class-card.functional { border-left-color: #2980b9; }
.class-card.lifting { border-left-color: #27ae60; }
.class-card.regatta { border-left-color: #8e44ad; }
.class-card.kyo { border-left-color: #263238; }

.room-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 2px;
}

.class-card .time { font-weight: 800; font-size: 0.95rem; display: block; }
.class-card .class-name { font-weight: 700; font-family: 'Barlow Condensed'; text-transform: uppercase; display: block; margin: 2px 0; }
.class-card .trainer { font-size: 0.95rem; color: var(--primary-orange); font-weight: 700; }

/* Órarend szűrés effektek */
.timetable-grid-full.has-filter .class-card {
    opacity: 0.2;
    transform: scale(0.95);
    filter: grayscale(100%);
}

.timetable-grid-full.has-filter .class-card.highlighted {
    opacity: 1;
    transform: scale(1.03);
    filter: grayscale(0%);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- ÁRAK --- */
#prices {
    background-color: var(--bg-body);
}

#prices .section-title { color: #222; }

.price-category-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-header {
    background: var(--bg-white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.category-icon {
    max-width: 100px;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.price-table-wrapper {
    flex: 1;
    padding: 20px;
    overflow-x: auto;
}

.modern-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 450px;
}

.modern-price-table th {
    text-align: left;
    padding: 12px 15px;
    background-color: var(--primary-orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.modern-price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.price-cell {
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    white-space: nowrap;
}

/* --- KAPCSOLAT --- */
#contact {
    background-color: var(--bg-white);
}

#contact .section-title { color: #222; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-box {
    background-color: #37474F; 
    color: #fff;
    padding: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 15px 15px 0px var(--vibrant-yellow);
}

.contact-info-box h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center; 
    margin-bottom: 25px;
}

.info-item i {
    color: var(--primary-orange);
    font-size: 1.6rem;
    margin-right: 20px;
    width: 30px; 
    text-align: center;
}

.info-item h4 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    text-align: left;
}

.info-item p {
    margin: 0;
    text-align: left;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: 2px solid #CFD8DC;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--text-dark);
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.info-card h3 { color: var(--primary-orange); margin-bottom: 15px; }

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.faq-item h5 {
    color: var(--primary-orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.faq-item p {
    font-size: 0.95rem;
    color: #cfd8dc;
}

/* --- FOOTER --- */
footer {
    background-color: #263238;
    color: #B0BEC5;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #37474F;
}

/* ==========================================
   RESZPONZÍV MOBIL ÉS TABLET NÉZET (@MEDIA)
   ========================================== */

@media screen and (min-width: 992px) {
    .price-category-card {
        flex-direction: row;
    }
    .category-header {
        flex: 0 0 250px;
        border-right: 1px solid #eee;
        border-bottom: none;
    }
}

@media screen and (max-width: 1200px) {
    .timetable-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .about-grid,
    .contact-wrapper,
    .trainers-list-grid,
    .cta-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text, .about-grid {
        text-align: center;
    }

    .check-list {
        display: inline-block;
        text-align: left;
    }

    .about-image {
        height: 320px;
        width: 100%;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .service-images {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .service-images img {
        width: 160px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn { 
        display: block; 
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; 
        left: 0; 
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        background-color: rgba(236, 239, 241, 0.98);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        gap: 15px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active { 
        display: flex; 
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .contact-info-box {
        padding: 25px;
        box-shadow: 8px 8px 0px var(--vibrant-yellow);
    }

    .timetable-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .trainer-horizontal-card {
        flex-direction: column;
        text-align: center;
    }

    .trainer-details h3 {
        text-align: center;
    }

    .trainer-details h3 span {
        display: block;
        margin-left: 0;
    }

    .timetable-grid-full {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        padding: 12px;
    }

    .philosophy-card, .numbers {
        padding: 20px;
    }
}

/* --- ÁRTÁBLÁZAT MOBIL IGAZÍTÁS --- */
@media screen and (max-width: 768px) {
    .price-category-card {
        padding: 15px 8px;
    }

    .price-table-wrapper {
        padding: 5px 0;
        overflow-x: visible;
    }

    .modern-price-table {
        min-width: 100% !important;
        width: 100%;
        table-layout: fixed; /* Arányos oszlopelosztás */
    }

    .modern-price-table th, 
    .modern-price-table td {
        padding: 8px 4px;
        font-size: 0.85rem;
        white-space: normal; /* Szöveg törhet több sorba */
        word-wrap: break-word;
    }

    /* Oszlopszélességek pontos elosztása mobilon */
    .modern-price-table th:nth-child(1),
    .modern-price-table td:nth-child(1) {
        width: 40%; /* Bérlettípus */
    }

    .modern-price-table th:nth-child(2),
    .modern-price-table td:nth-child(2) {
        width: 25%; /* Ár */
    }

    .modern-price-table th:nth-child(3),
    .modern-price-table td:nth-child(3) {
        width: 35%; /* Megjegyzés */
    }

    .price-cell {
        font-size: 0.95rem;
        white-space: nowrap; /* Az ár egyben marad */
    }
}