
/* ===== CSS Variables ===== */
:root {
   --primary: #8B0000; /* Mélyvörös az összhangért */ 
    --primary-dark: #a67c52;
    --primary-light: #f5ece5;
    --secondary: #f9a8d4;
    --accent: #d4a373;
  --dark: #1a1a1a;     
  --nude-bg: #fdfaf8; /* Lágy nude háttér a szekciónak */  
    --gray: #7a7a7a;
    --light-gray: #fafafa;
    --white: #ffffff;
    --accent-gold: #c8a288;
    --gradient: linear-gradient(135deg, #c8a288, #e2c2b3);
    --gradient-soft: linear-gradient(135deg, #f5ece5, #ffffff);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --light-bg: #fdfcfb;
    --gray-text: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
   background-color: var(--light-bg);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}


/* ==========================================================================
   NAVIGÁCIÓ - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.navbar {
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

/* Brand / Logó */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary) !important;
}

/* Navigációs linkek */
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 0 !important;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
    color: #2d2d2d !important;
    border-bottom-color: rgba(0,0,0,0.05);
}

.nav-link:hover {
    opacity: 0.8;
}

/* Foglalás gomb */
.btn-foglalas {
    background: #ffffff !important;
    color: #8B0000 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.navbar.scrolled .btn-foglalas {
    background: var(--primary) !important;
    color: #ffffff !important;
}

/* Hamburger ikon */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobil menü (collapse) */
.navbar-collapse {
    background: rgba(0, 0, 0, 0.7);
    margin-top: 15px;
    padding: 20px;
    border-radius: 10px;
}

.navbar.scrolled .navbar-collapse {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
    
    .navbar-brand {
        font-size: 1.75rem;
    }
    
    .nav-link {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        padding: 0.5rem 1rem !important;
        border-bottom: none;
    }
    
    .navbar.scrolled .nav-link {
        border-bottom: none;
    }
    
    .btn-foglalas {
        padding: 0.5rem 1.5rem !important;
        margin-left: 10px;
        margin-top: 0;
        display: inline-block;
    }
    
    /* Desktop-on nincs szükség a collapse háttérre */
    .navbar-collapse {
        background: transparent;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
    }
    
    .navbar.scrolled .navbar-collapse {
        background: transparent;
        box-shadow: none;
    }
}

/* ==========================================================================
   NAGY ASZTALI GÉP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    .navbar-brand {
        font-size: 1.85rem;
    }
    
    .nav-link {
        padding: 0.5rem 1.25rem !important;
    }
}
/* ===== Hero Section Alapok ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Hely a fix navbarnak */
    
}

/* Háttérkép kezelése */
.hero-bg-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
}

.hero-html-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kitölti a képernyőt torzítás nélkül */
    object-position: center;
    aspect-ratio: 3 / 2;
}

/* Sötétítés, hogy olvasható legyen a szöveg */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

/* Szöveg stílusok */
.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4rem); /* Dinamikus méret mobiltól desktopig */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #fbcfe8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

/* Statisztikák */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Hullám az alján */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    min-width: 100px; /* Megelőzi a szöveg ugrálását */
}
.hero-wave svg path {
    fill: var(--nude-bg); /* Ez fogja megadni a hullám színét */
}

/* ===== MOBIL OPTIMALIZÁLÁS (991px alatt) ===== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 2rem;
        text-align: center;
        overflow: hidden;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn-primary-custom, .btn-outline-custom {
        width: 100%; /* Mobilon egymás alatt, teljes szélességben */
        max-width: 300px;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.5); /* Erősebb sötétítés mobilon */
    }
    
    .hero-wave svg {
        height: 40px;
    }
}



/* ==========================================================================
   SERVICES SECTION - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.services-section {
    padding: 3rem 0;
    background: var(--nude-bg);
    position: relative;
    z-index: 1;
}

/* Szekció fejléc */
.section-badge {
    background: #f5ece5;
    color: #a67c52;
    padding: 0.5rem 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    border-radius: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Kártyák stílusa */
.service-card {
    background: var(--white);
    border: 1px solid rgba(166, 124, 82, 0.1);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(166, 124, 82, 0.1);
    border-color: var(--accent-gold);
}

/* Ikonok */
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(166, 124, 82, 0.1);
    position: relative;
    border: 1px solid #f5ece5;
}

.service-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--accent-gold);
    border-radius: inherit;
    transform: rotate(15deg);
    opacity: 0.3;
}

.service-icon i {
    font-size: 1.5rem;
    color: #a67c52;
}

/* Szolgáltatás címe és leírása */
.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Ár és Idő rész */
.service-details {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.service-card.featured .service-details {
    border-color: rgba(255,255,255,0.1);
}

.service-price {
    color: var(--primary) !important;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Szolgáltatás link stílusa */
.service-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-card.featured .service-link {
    color: var(--accent-gold);
}

.service-card.featured .service-link:hover {
    color: var(--white);
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .section-badge {
        padding: 0.55rem 1.35rem;
        font-size: 0.72rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.75rem;
        border-radius: 18px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.75rem;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-card h4 {
        font-size: 1.15rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    .service-link {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    .services-section {
        padding: 5rem 0;
    }
    
    .section-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .service-card {
        padding: 2.25rem 2rem;
        margin-bottom: 0;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1.85rem;
    }
    
    .service-icon i {
        font-size: 1.85rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-details {
        padding-top: 1.35rem;
    }
    
    .service-price {
        font-size: 1.35rem;
    }
    
    .service-link {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .services-section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .service-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(166, 124, 82, 0.1);
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
        box-shadow: 0 10px 20px rgba(166, 124, 82, 0.1);
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .service-details {
        padding-top: 1.5rem;
    }
    
    .service-price {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   NAGY ASZTALI GÉP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .service-card {
        padding: 2.75rem 2.25rem;
    }
}

/* ==========================================================================
   PARAFFIN SECTION - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.paraffin-section {
    padding: 3rem 0;
    background: var(--nude-bg);
    overflow: hidden;
}

.paraffin-image-container {
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paraffin-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: morph 8s linear infinite alternate;
    opacity: 0.6;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 300px;
}

.custom-paraffin-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

/* Lebegő kártyák */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
}

.floating-card i {
    color: var(--accent-gold);
}

.floating-card.card-1 {
    top: 15%;
    right: 0;
}

.floating-card.card-2 {
    bottom: 15%;
    left: 0;
    animation-delay: 2s;
}

/* Szöveges tartalom */
.paraffin-content {
    padding-left: 0;
    text-align: center;
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--primary);
    font-size: 1.2rem;
}

.paraffin-price-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

/* Animációk */
@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
    100% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    .paraffin-section {
        padding: 4rem 0;
    }
    
    .paraffin-image-container {
        padding: 18px;
    }
    
    .image-wrapper {
        max-width: 380px;
        border-radius: 25px;
    }
    
    .floating-card {
        padding: 0.55rem 1.1rem;
        font-size: 0.75rem;
        gap: 0.45rem;
    }
    
    .floating-card.card-1 {
        right: -1%;
    }
    
    .floating-card.card-2 {
        left: -1%;
    }
    
    .paraffin-content {
        margin-top: 2.75rem;
    }
    
    .benefit-item {
        gap: 1.1rem;
        margin-bottom: 1.35rem;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.3rem;
    }
    
    .paraffin-price-card {
        padding: 1.35rem;
        border-radius: 18px;
    }
    
    .price-value {
        font-size: 1.45rem;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    .paraffin-section {
        padding: 5rem 0;
    }
    
    .image-wrapper {
        max-width: 420px;
        border-radius: 28px;
    }
    
    .floating-card {
        padding: 0.58rem 1.15rem;
        font-size: 0.8rem;
    }
    
    .paraffin-content {
        margin-top: 3rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
    }
    
    .paraffin-price-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.4rem 1.75rem;
        margin-top: 1.75rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .paraffin-section {
        padding: 6rem 0;
    }
    
    .paraffin-image-container {
        padding: 20px;
    }
    
    .image-wrapper {
        max-width: 500px;
        border-radius: 30px;
    }
    
    .floating-card {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .floating-card.card-1 {
        right: -2%;
    }
    
    .floating-card.card-2 {
        left: -2%;
    }
    
    .paraffin-content {
        padding-left: 2rem;
        text-align: left;
        margin-top: 0;
    }
    
    .benefit-item {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
        border-radius: 15px;
        font-size: 1.4rem;
    }
    
    .paraffin-price-card {
        padding: 1.5rem 2rem;
        border-radius: 20px;
        margin-top: 2rem;
    }
}

/* ==========================================================================
   NAGY ASZTALI GÉP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    .paraffin-content {
        padding-left: 2.5rem;
    }
    
    .price-value {
        font-size: 1.55rem;
    }
}
/* ==========================================================================
   GALLERY SECTION - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.gallery-section {
    padding: 2.5rem 0;
    background: #fff;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    isolation: isolate;
    margin-bottom: 1rem;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Tökéletes négyzet */
}

.services-html-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Gradiens helyőrzők */
.pink-gradient { background: linear-gradient(135deg, #fdf2f8, #ec4899); }
.purple-gradient { background: linear-gradient(135deg, #ddd6fe, #a78bfa); }
.gold-gradient { background: linear-gradient(135deg, #fef3c7, #f59e0b); }
.teal-gradient { background: linear-gradient(135deg, #ccfbf1, #14b8a6); }
.red-gradient { background: linear-gradient(135deg, #fee2e2, #ef4444); }
.flower-gradient { background: linear-gradient(135deg, #fbcfe8, #db2777); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(197, 160, 89, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.overlay-text {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.overlay-text span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.overlay-text i {
    font-size: 1.25rem;
}

.gallery-item:hover .gallery-img,
.gallery-item:hover .services-html-bg {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-text {
    transform: translateY(0);
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-item {
        border-radius: 13px;
        margin-bottom: 0.75rem;
    }
    
    .overlay-text span {
        font-size: 0.95rem;
    }
    
    .overlay-text i {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    .gallery-section {
        padding: 3.5rem 0;
    }
    
    .gallery-item {
        border-radius: 14px;
        margin-bottom: 0;
    }
    
    .overlay-text span {
        font-size: 1rem;
    }
    
    .overlay-text i {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
    
    .overlay-text span {
        font-size: 1.1rem;
    }
    
    .overlay-text i {
        font-size: 1.5rem;
    }
}
/* ==========================================================================
   CONTACT SECTION - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.contact-section {
    padding: 2.5rem 0;
    background: var(--nude-bg);
}

/* Kapcsolat kártyák */
.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link i {
    transition: var(--transition);
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Nyitvatartás és Social kártyák */
.hours-card,
.social-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.hours-card h3,
.social-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hours-card h3 i,
.social-card h3 i {
    color: var(--primary);
}

/* Nyitvatartás lista */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item.closed span:last-child {
    color: var(--primary);
    font-weight: 600;
}

/* Social linkek */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link i {
    font-size: 1.25rem;
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.tiktok {
    background: #000000;
}

.social-link.pinterest {
    background: #e60023;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-cta {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 0;
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    .contact-section {
        padding: 3.5rem 0;
    }
    
    .contact-card {
        padding: 1.75rem;
        border-radius: 18px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.15rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
    }
    
    .contact-card p {
        font-size: 0.925rem;
    }
    
    .hours-card,
    .social-card {
        padding: 1.75rem;
        border-radius: 18px;
    }
    
    .hours-card h3,
    .social-card h3 {
        font-size: 1.15rem;
    }
    
    .hours-item {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link i {
        font-size: 1.35rem;
    }
    
    .social-cta {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    .contact-section {
        padding: 4.5rem 0;
    }
    
    .contact-card {
        padding: 1.85rem;
        margin-bottom: 0;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .contact-icon i {
        font-size: 1.6rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .hours-card,
    .social-card {
        padding: 1.85rem;
        margin-bottom: 0;
    }
    
    .hours-card h3,
    .social-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1.35rem;
    }
    
    .hours-item {
        font-size: 0.925rem;
    }
    
    .social-link {
        width: 52px;
        height: 52px;
    }
    
    .social-link i {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .contact-section {
        padding: 6rem 0;
    }
    
    .contact-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .contact-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon i {
        font-size: 1.75rem;
    }
    
    .contact-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .hours-card,
    .social-card {
        padding: 2rem;
        border-radius: 20px;
        text-align: left;
    }
    
    .hours-card h3,
    .social-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        justify-content: flex-start;
    }
    
    .hours-list {
        gap: 0;
    }
    
    .hours-item {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }
    
    .social-links {
        gap: 1rem;
        margin-bottom: 1.5rem;
        justify-content: flex-start;
    }
    
    .social-link {
        width: 56px;
        height: 56px;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .social-cta {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   NAGY ASZTALI GÉP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    .contact-icon {
        width: 76px;
        height: 76px;
    }
    
    .social-link {
        width: 58px;
        height: 58px;
    }
}

/* ==========================================================================
   BOOKING SECTION - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.booking-section {
    padding: 2.5rem 0;
    background: var(--nude-bg);
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(197, 168, 124, 0.2);
    overflow: hidden;
}

/* Szekció jelvény */
.booking-card .section-badge {
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Input Mezők */
.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    height: calc(3.25rem + 2px);
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 124, 0.15);
}

.form-floating > label {
    padding: 0.875rem 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.form-floating > .form-select {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.form-select {
    line-height: 1.5;
}

.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-select:not([value]):not(:focus) {
    color: var(--gray);
}

/* Gomb */
.booking-form .btn-primary-custom {
    background: var(--gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.booking-form .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* Info alert */
.info-alert {
    background: #fffaf6;
    border-left: 3px solid var(--primary);
    padding: 1rem;
    margin-bottom: 1.25rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #555;
    text-align: left;
}

.custom-control-label {
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray);
}

/* Siker üzenet */
.success-message {
    text-align: center;
    padding: 2rem 1.5rem;
}

.success-message i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    .booking-section {
        padding: 3.5rem 0;
    }
    
    .booking-card {
        padding: 1.75rem;
        border-radius: 18px;
    }
    
    .booking-card .section-badge {
        padding: 0.45rem 1.1rem;
        font-size: 0.8rem;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        border-radius: 11px;
        padding: 0.925rem 1.1rem;
        height: calc(3.35rem + 2px);
    }
    
    .booking-form .btn-primary-custom {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
        border-radius: 11px;
    }
    
    .info-alert {
        padding: 1.1rem;
        font-size: 0.85rem;
        border-radius: 7px;
    }
    
    .success-message {
        padding: 2.5rem 2rem;
    }
    
    .success-message i {
        font-size: 3.5rem;
        margin-bottom: 1.25rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    .booking-section {
        padding: 4.5rem 0;
    }
    
    .booking-card {
        padding: 2.25rem;
        border-radius: 20px;
    }
    
    .booking-card .section-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.825rem;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        border-radius: 12px;
        padding: 1rem 1.15rem;
        height: calc(3.45rem + 2px);
    }
    
    .form-floating > label {
        padding: 1rem 1.15rem;
    }
    
    .booking-form .btn-primary-custom {
        padding: 0.9rem 1.9rem;
        font-size: 1.05rem;
        border-radius: 12px;
        width: auto;
    }
    
    .info-alert {
        padding: 1.15rem;
        margin-bottom: 1.35rem;
        border-radius: 8px;
        font-size: 0.875rem;
    }
    
    .custom-control-label {
        font-size: 0.85rem;
    }
    
    .success-message {
        padding: 2.75rem;
    }
    
    .success-message i {
        font-size: 3.75rem;
    }
    
    .success-message h3 {
        font-size: 1.65rem;
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .booking-section {
        padding: 6rem 0;
    }
    
    .booking-card {
        padding: 3rem;
        border-radius: var(--border-radius-lg);
    }
    
    .booking-card .section-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .form-floating > .form-control,
    .form-floating > .form-select {
        padding: 1rem 1.2rem;
        height: calc(3.5rem + 2px);
    }
    
    .form-floating > .form-control:focus,
    .form-floating > .form-select:focus {
        box-shadow: 0 0 0 4px rgba(197, 168, 124, 0.15);
    }
    
    .form-floating > label {
        padding: 1rem 1.2rem;
    }
    
    .form-floating > .form-select {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }
    
    .booking-form .btn-primary-custom {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .booking-form .btn-primary-custom:hover {
        transform: translateY(-3px);
    }
    
    .info-alert {
        border-left-width: 4px;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .success-message {
        padding: 3rem;
    }
    
    .success-message i {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .success-message h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}
/* ==========================================================================
   FOOTER - Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.footer {
    background: #1a1a1a;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Felső díszítőcsík */
.footer-top-line {
    height: 3px;
    background: var(--gradient);
    width: 100%;
}

/* Brand / Logó */
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    display: block;
    text-align: center;
}

.footer-brand i {
    color: #ffffff;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
}

/* Social linkek */
.footer-social {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Copyright */
.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    font-size: 0.8rem;
    text-align: center;
}

/* Jogi linkek */
.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

/* Kredit */
.footer-credit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.85rem;
    text-align: center;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.footer-credit a:hover {
    color: var(--white);
}

/* Back to Top gomb */
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    color: var(--white);
    filter: brightness(1.2);
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    .footer-top-line {
        height: 3.5px;
    }
    
    .footer-brand {
        font-size: 1.6rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        margin-top: 0.45rem;
    }
    
    .footer-social {
        gap: 1rem;
        margin-top: 1.35rem;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.775rem;
    }
    
    .footer-credit {
        font-size: 0.725rem;
        margin-top: 0.9rem;
    }
    
    .back-to-top {
        bottom: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    .footer-top-line {
        height: 4px;
    }
    
    .footer-brand {
        font-size: 1.7rem;
        text-align: left;
    }
    
    .footer-tagline {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 1.4rem;
    }
    
    .footer-social a {
        width: 43px;
        height: 43px;
        font-size: 1.15rem;
    }
    
    .footer-copyright {
        text-align: left;
        font-size: 0.875rem;
    }
    
    .footer-credit {
        text-align: left;
        margin-top: 0.95rem;
    }
    
    .back-to-top {
        bottom: 22px;
        right: 22px;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top:hover {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    .footer-brand {
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .footer-social {
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-credit {
        font-size: 0.75rem;
        margin-top: 1rem;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
}

/* ==========================================================================
   HERO SECTION - SZOLGÁLTATÁSOK
   Mobile-First Megközelítés
   ========================================================================== */

/* ==========================================================================
   ALAP STÍLUSOK (MOBIL - 320px+)
   ========================================================================== */

.hero-szolgaltatas {
    height: 120vh;
    position: relative;
    padding: 90px 0 50px;
    background-color: var(--dark);
    overflow: hidden;
    color: var(--white);
    min-height: auto;
    text-align: center;
}

.hero-szolgaltatas .text-gradient {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Háttér és alakzatok */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: pulse 8s infinite alternate;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: -40px;
    right: -40px;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--accent-gold);
    bottom: -30px;
    left: -30px;
    animation-delay: -2s !important;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-dark);
    top: 20%;
    left: 10%;
    animation-delay: -4s !important;
}

/* Tartalom */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.hero-title {
     font-size: clamp(3rem, 8vw, 4rem); /* Dinamikus méret mobiltól desktopig */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* Gombok */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

/* Kép wrapper */
.hero-image-wrapper {
    position: relative;
    padding: 15px;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    box-shadow: var(--shadow-xl);
    animation: morph 10s infinite ease-in-out;
}

.hero-image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

/* Scroll indikátor */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.25rem;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator a:hover { 
    opacity: 1; 
}

/* Animációk */
@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(20px, 20px); }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
    /* Hero */
    .hero-szolgaltatas {
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .shape-1 {
        width: 180px;
        height: 180px;
        top: -50px;
        right: -50px;
    }
    
    .shape-2 {
        width: 140px;
        height: 140px;
    }
    
    .shape-3 {
        width: 110px;
        height: 110px;
    }
    
    .hero-image-placeholder i {
        font-size: 3rem;
    }
}
/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    /* Hero */
    .hero-szolgaltatas {
        padding: 110px 0 70px;
    }
    
    
    .hero-description {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        max-width: none;
    }
    
    .shape-1 {
        width: 250px;
        height: 250px;
        top: -70px;
        right: -70px;
    }
    
    .shape-2 {
        width: 180px;
        height: 180px;
        bottom: -40px;
        left: -40px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
    
    .hero-image-placeholder i {
        font-size: 3.5rem;
    }
}
    
/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
    /* Hero */
    .hero-szolgaltatas {
        padding: 120px 0 80px;
        text-align: left;
        min-height: 100vh;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 600px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .shape-1 {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -100px;
    }
    
    .shape-2 {
        width: 250px;
        height: 250px;
        bottom: -50px;
        left: -50px;
    }
    
    .shape-3 {
        width: 200px;
        height: 200px;
    }
    
    .hero-image-wrapper {
        padding: 20px;
    }
    
    .hero-image-placeholder i {
        font-size: 4rem;
        margin-bottom: 10px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-indicator a {
        font-size: 1.5rem;
    }
}
/* ==========================================================================
   NAGY ASZTALI GÉP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    /* Hero */
    .hero-title {
        font-size: 4.5rem;
    }
    
    .shape-1 {
        width: 400px;
        height: 400px;
    }
    
    .shape-2 {
        width: 300px;
        height: 300px;
    }
    
    .shape-3 {
        width: 250px;
        height: 250px;
    }
    
}
/* ==========================================================================
   RÓLAM ÉS SZOLGÁLTATÁSOK SZEKCIÓ (Sports Section)
   ========================================================================== */

/* Szekció Alapok */
.sports-section {
    background-color: var(--nude-bg);
    overflow: hidden;
    padding: 3rem 0;
}

.section-padding {
    padding: 2.5rem 0;
}

/* Szekció Fejléc */
.section-header {
    max-width: 750px;
    margin: 0 auto 2rem auto;
    text-align: center;
    padding: 0 15px;
}

.section-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.section-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Fő Navigációs Gombok (Pills) */
.sport-tabs {
    margin-bottom: 1.5rem;
    overflow: visible;
}

.sport-tabs .nav-pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border: none;
    padding: 0 15px;
}

.sport-tabs .nav-pills::before,
.sport-tabs .nav-pills::after {
    display: none !important;
    content: none !important;
}

.sport-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(166, 124, 82, 0.2) !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    color: var(--gray) !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    gap: 10px;
    box-shadow: var(--shadow);
    position: relative;
    width: 100%;
    max-width: 260px;
}

.sport-tab i {
    font-size: 1rem;
}

.sport-tab::before,
.sport-tab::after,
.sport-tab.active::before,
.sport-tab.active::after {
    display: none !important;
    content: none !important;
}

.sport-tab.active {
    background-color: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

.sport-tab.active.sport-tab-swim { 
    background-color: var(--accent) !important; 
    color: white !important; 
    border-color: var(--accent) !important; 
}

.sport-tab.active.sport-tab-bike { 
    background-color: var(--primary) !important; 
    color: white !important; 
    border-color: var(--primary) !important; 
}

.sport-tab.active.sport-tab-run { 
    background-color: var(--accent-gold) !important; 
    color: white !important; 
    border-color: var(--accent-gold) !important; 
}

.sport-tab:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent) !important;
    color: var(--primary) !important;
}

/* Szolgáltatás Kártya */
.sport-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    margin: 0 5px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(166, 124, 82, 0.05);
    animation: fadeIn 0.6s ease-out;
}

/* Képkeret */
.sport-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    margin-bottom: 1.25rem;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(255,255,255,0.5);
}
.sport-main-img {
    position: absolute; /* Kiszakítjuk a folyamatból */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kitölti a helyet levágással, ha kell */
    border-radius: var(--border-radius-lg);
    display: block;
}
.sport-image-placeholder {
    text-align: center;
    color: var(--accent);
}

.sport-image-placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.sport-badge-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.sport-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.bg-swim { background: var(--accent); }
.bg-bike { background: var(--primary); }
.bg-run { background: var(--accent-gold); }

/* Belső Tartalom */
.sport-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sport-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.text-swim { color: var(--accent); }
.text-bike { color: var(--primary); }
.text-run { color: var(--accent-gold); }

/* Belső Al-fülek */
.sport-inner-tabs {
    border-bottom: 2px solid var(--primary-light) !important;
    margin: 0 -1.25rem 1.25rem -1.25rem;
    padding: 0 1.25rem;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.sport-inner-tabs::-webkit-scrollbar { 
    display: none; 
}

.sport-inner-tabs .nav-link {
    border: none !important;
    color: var(--gray) !important;
    font-weight: 600;
    margin-right: 1.25rem;
    background: transparent !important;
    position: relative;
    white-space: nowrap;
    opacity: 0.7;
    transition: 0.3s;
    font-size: 0.8rem;
    flex-shrink: 0;
    padding: 10px 8px !important;
}

.sport-inner-tabs .nav-link:last-child {
    margin-right: 0;
}

.sport-inner-tabs .nav-link.active {
    color: var(--primary) !important;
    opacity: 1;
}

.sport-inner-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Szövegkezelés */
.sport-inner-content {
    flex: 1;
}

.sport-inner-content p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Animációk */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   TABLET (min-width: 576px)
   ========================================================================== */

@media (min-width: 576px) {
   
    /* Sports Section */
    .sports-section,
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        padding: 7px 18px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .sport-tabs {
        margin-bottom: 2rem;
    }
    
    .sport-tab {
        padding: 12px 22px !important;
        font-size: 0.875rem;
        max-width: 280px;
    }
    
    .sport-tab i {
        font-size: 1.1rem;
    }
    
    .sport-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .sport-image-wrapper {
        min-height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .sport-image-placeholder i {
        font-size: 3.5rem;
    }
    
    .sport-badge {
        padding: 5px 14px;
        font-size: 0.7rem;
    }
    
    .sport-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .sport-inner-tabs {
        margin: 0 -1.5rem 1.5rem -1.5rem;
        padding: 0 1.5rem;
        
    }
    
    .sport-inner-tabs .nav-link {
        padding: 10px 0;
        margin-right: 1.5rem;
        font-size: 0.85rem;
    }
    
    .sport-inner-content p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
    
    /* Sports Section */
    .sports-section,
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .section-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .sport-tabs {
        margin-bottom: 2.5rem;
    }
    
    /* Gombok vízszintesen */
    .sport-tabs .nav-pills {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .sport-tab {
        width: auto;
        max-width: none;
        padding: 12px 24px !important;
        font-size: 0.9rem;
    }
    
    .sport-tab i {
        font-size: 1.2rem;
    }
    
    .sport-card {
        padding: 2rem;
        margin: 0;
        border-radius: var(--border-radius-lg);
    }
    
    .sport-image-wrapper {
        min-height: 300px;
        border-radius: var(--border-radius);
    }
    
    .sport-image-placeholder i {
        font-size: 4rem;
    }
    
    .sport-badge-wrapper {
        top: 20px;
        left: 20px;
    }
    
    .sport-badge {
        padding: 6px 16px;
        font-size: 0.72rem;
    }
    
    .sport-title {
        font-size: 1.5rem;
    }
    
    .sport-inner-tabs {
        margin: 0 0 1.5rem 0;
        padding: 0;
        
    }
    
    .sport-inner-tabs .nav-link {
        font-size: 0.9rem;
        margin-right: 1.75rem;
        padding: 12px 0;
    }
    
    .sport-inner-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
    
    .scroll-to-top,
    #scrollToTop,
    .back-to-top,
    [class*="scroll-top"] {
        width: 45px !important;
        height: 45px !important;
    }
}

/* ==========================================================================
   ASZTALI GÉP (min-width: 992px)
   ========================================================================== */

@media (min-width: 992px) {
   
    /* Sports Section */
    .sports-section,
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-badge {
        padding: 8px 22px;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .section-description {
        font-size: 1.15rem;
    }
    
    .sport-tabs {
        margin-bottom: 3.5rem;
    }
    
    .sport-tabs .nav-pills {
        gap: 0.75rem;
        overflow: visible;
    }
    
    .sport-tab {
        padding: 14px 28px !important;
        font-size: 1rem;
        gap: 12px;
    }
    
    .sport-tab i {
        font-size: 1.3rem;
    }
    
    .sport-tab:hover:not(.active) {
        transform: translateY(-4px);
    }
    
    .sport-card {
        padding: 3rem;
    }
    
    .sport-image-wrapper {
        min-height: 300px;
        height: 100%;
        margin-bottom: 0;
    }
    
    .sport-image-placeholder i {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
    
    .sport-badge-wrapper {
        top: 25px;
        left: 25px;
    }
    
    .sport-badge {
        padding: 7px 18px;
        font-size: 0.75rem;
    }
    
    .sport-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .sport-inner-tabs {
        margin-bottom: 2rem;
    }
    
    .sport-inner-tabs .nav-link {
        font-size: 0.95rem;
        margin-right: 2rem;
    }
    
    .sport-inner-content p {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   NAGY ASZTALI GÉP (min-width: 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
   
    /* Sports Section */
    .section-title {
        font-size: 3rem;
    }
    
    .sport-tab {
        padding: 16px 32px !important;
    }
}


/* ==========================================================================
   ÁRLISTA SZEKCIÓ STÍLUSA - MOBILE FIRST
   ========================================================================== */
.pricing-section {
    background-color: var(--white);
    padding: 60px 0;
}

.pricing-card {
    background: var(--nude-bg);
    border-radius: var(--border-radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-light);
    margin: 0 10px;
}

.pricing-category {
    margin-bottom: 40px;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Hosszú szöveg esetén az ár maradjon felül */
    gap: 15px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(200, 162, 136, 0.2);
    transition: var(--transition);
}

.pricing-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    font-size: 0.95rem;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
    text-align: right;
}

/* TABLET ÉS ASZTALI NÉZET (MIN-WIDTH: 768PX) */
@media (min-width: 768px) {
    .pricing-section {
        padding: 100px 0;
    }

    .pricing-card {
        padding: 50px;
        margin: 0;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .pricing-item {
        align-items: baseline;
        border-bottom: none; /* Desktopon tisztább vonalak nélkül */
        padding: 10px 0;
    }

    .pricing-item:hover {
        padding-left: 15px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        color: var(--primary);
    }

    .service-name {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.15rem;
    }
}

/* Galéria Hero egyedi háttere */
.hero-galeria {
    background: var(--gradient);
     min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; 
}

.hero-galeria h1{
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 4rem); /* Dinamikus méret mobiltól desktopig */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}