@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@400;600;700&display=swap');

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

header{
    display:flex;
    background-color:#f2bebe;
    align-items: center;
    justify-content: space-between;
    padding: 15px 35px;
    position: sticky;
    top: 0;
    z-index: 100;
}

body{
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: #222;
    max-width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, .headtitle, .titletext {
    font-family: 'Playfair Display', serif;
}

.logo-section{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.headlogo{
    height: 110px;
    width: auto;
    max-width: 100%;
    margin-left: 10px;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

.head-text-group {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
}

.headtitle{
    font-size: 2.2rem;
    font-weight: 600;
    font-style: italic;
    color: black;
    margin: 0;
    text-align: left;
    text-shadow: 1px 1px 2px rgb(46, 45, 45);
    white-space: nowrap;
}

.headmotto {
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    color: #a04050;
    margin: 2px 0 0 0;
    text-align: left;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.navbar{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.navbar li a{
    display: block;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 14px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar li a:hover{
    background-color: rgba(255, 255, 255, 0.45);
    color: #ff2f56;
}

.navbar li a.active, .navbar a.active{
    color: white;
    font-weight: 700;
    background-color: #ff4d6d;
    box-shadow: 0 4px 10px rgba(255, 77, 109, 0.25);
}

/* 🔥 HAMBURGER GOMB */
.menu-btn{
    display: none;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

/* 💻 TÁBLAGÉP ÉS KISEBB LAPTOP SKÁLÁZÁS */
@media (max-width: 1200px) and (min-width: 993px) {
    header {
        padding: 10px 20px;
    }
    .headlogo {
        height: 75px;
    }
    .headtitle {
        font-size: 1.8rem;
    }
    .navbar li a {
        font-size: 1.05rem;
        padding: 10px 16px;
    }
}

/* 📱 MOBIL NAVIGÁCIÓ DIZÁJN JAVÍTÁSA */
@media (max-width: 992px){
    .menu-btn{
        display: block;
        z-index: 1001;
    }

    nav{
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(242, 190, 190, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    nav.open{
        right: 0;
    }

    .navbar{
        flex-direction: column;
        width: 100%;
        background: transparent;
        gap: 10px;
    }

    .navbar li{
        text-align: center;
        width: 100%;
    }

    .navbar li a{
        padding: 12px 20px;
        font-size: 1.25rem;
        color: black;
        border-bottom: 2px solid transparent;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .navbar li a:hover, .navbar li a.active{
        color: #ff4d6d;
        background: none;
        border-bottom: 2px solid #ff4d6d;
    }

    header {
        flex-wrap: nowrap;
        padding: 8px 12px;
    }

    .headlogo {
        height: 60px;
    }

    .headtitle {
        font-size: 1.3rem !important;
    }

    .head-text-group {
        margin-left: 10px;
    }

    .headmotto {
        font-size: 0.7rem;
    }
}

/* Mobil menü háttér-overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
.herosectionimages{
    display: flex;
    justify-content: center;


}
.herosection{
    display: flex;
    flex-direction: column; /* Egymás alá */
    align-items: center;    /* Vízszintesen középre */
    justify-content: center;
}
.herosectiontext{
    margin-top: 20px;
    text-align: center;
}

/* A teljes slideshow */
.slider{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: center;
    position: relative;
}

.slider{
    width: 100%;
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 30px 10px;
    overflow: hidden;
}

/* slide container */
.slides{
    position: relative;
    height: 250px;
}

/* alap slide */
.slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all .45s ease;
    pointer-events: none;
}

.slide.active{
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* szöveg */
.slide h1{
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide p{
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* gomb */
.btn{
    display: inline-block;
    padding: 12px 25px;
    background: #ff4d6d;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 8px;
    transition: .3s;
}

.btn:hover{
    background: #ff2f56;
}

/* vezérlők */
.controls{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 0.5%;
}

.controls button{
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

.controls button:hover{
    transform: translateY(-3px) scale(1.15);
    opacity: 0.8;
}



/* szívecskék */
.dots{
    display: flex;
    gap: 12px;
    align-items: center;
}

.dots i{
    font-size: 16px;
    color: #bbb;
    cursor: pointer;
    transition: .3s;
}

.dots i.active{
    color: #ff4d6d;
    animation: beat 1s ease-in-out infinite;
}

@keyframes beat {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.3); }
    50%  { transform: scale(1); }
    100% { transform: scale(1); }
}

.titletext {
    text-align: left;
    width: 100%;
    margin-left: 6%;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    box-sizing: border-box;
}

.target-section .titletext {
    margin-left: 1%; /* parent has 5% padding, so 5% + 1% = 6% total */
}
/* ==========================================
   KIKNEK AJÁNLJUK SZEKCIÓ
   ========================================== */
.target-section {
    padding: 60px 5% 50px 5%;
    background: linear-gradient(180deg, #fff5f7 0%, #fffafb 100%);
    text-align: center;
    border-bottom: 1px dashed rgba(255, 77, 109, 0.2);
}

.target-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 35px 22px 30px 22px;
    box-shadow: 0 4px 20px rgba(242, 190, 190, 0.2);
    border: 1px solid rgba(242, 190, 190, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.target-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 77, 109, 0.15);
}

.target-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff4d6d, #ff8fa3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.target-icon i {
    font-size: 1.8rem;
    color: white;
}

.target-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.target-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Reszponzív: tablet */
@media (max-width: 992px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Reszponzív: mobil */
@media (max-width: 576px) {
    .target-section {
        padding: 40px 16px 35px 16px;
    }
    .target-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .target-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    .target-card {
        padding: 28px 18px 24px 18px;
    }
    .target-icon {
        width: 60px;
        height: 60px;
    }
    .target-icon i {
        font-size: 1.5rem;
    }
}

.offerdiv{
    margin-right: 0;
    margin-left: 0;
}
/* 3 kártya egymás mellett */
/* ===== KONTAINER ===== */
.cards{
    margin-left: 3%;
    margin-right: 3%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3%;
    padding: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* ===== KÁRTYA ===== */
.card{
    width: 100%;
    max-width: 420px;
    min-height: 550px;
    background: linear-gradient(145deg, #f5c7c7, #e8b1b1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    box-shadow: 0 10px 25px rgba(242, 190, 190, 0.45);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 77, 109, 0.25);
}

.card > p {
    text-align: center;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin: 10px 15px 20px 15px;
}

/* kép */
.card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px; /* Lekerekített képszélek */
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(242, 190, 190, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.card:hover img {
    transform: scale(1.025);
}

/* gomb */
button{
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.open{
    background-color:#ff4d6d;
    color: white;
    font-weight: bold;
}

.open:hover{
    background-color:#ff2f56;
}

/* ===== DETAIL ===== */
.card-detail{
    display: none;
    width: 100%;
}

/* NYITOTT ÁLLAPOT (MODAL DIZÁJN - LÁGY RÓZSA ÁTMENETES HÁTTÉR) */
.card.active{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 90%;
    max-width: 600px;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1005;
    background: linear-gradient(135deg, #fff2f2 0%, #fffafb 100%);
    border: 3px solid #f2bebe;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(255, 77, 109, 0.28);
    animation: cardOpen .4s cubic-bezier(.16, 1, 0.3, 1);
}

.card.active h3 {
    font-size: 1.6rem;
    color: #ff2f56;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    border-bottom: 2px dashed #f2bebe;
    padding-bottom: 10px;
}

/* amikor nyitva van a részletes nézet */
.card.active .card-detail{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* zárt tartalom eltűnik (csak a közvetlen gyerekeket rejtjük el!) */
.card.active > img,
.card.active > p,
.card.active > .open{
    display: none;
}

/* vissza gomb (arculathoz illő rózsaszín-piros átmenetes) */
.card-detail .back {
    align-self: flex-start;
    background-color: #f2bebe;
    color: #333;
    border: 1px solid rgba(255, 77, 109, 0.25);
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card-detail .back:hover {
    background-color: #ff4d6d;
    color: white;
    transform: translateX(-4px);
    box-shadow: 0 4px 10px rgba(255, 77, 109, 0.2);
}

/* videó */
.card-detail video{
    width: 100%;
    max-width: 480px;
    margin: 10px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    outline: none;
}

/* részletes leírás */
.card-detail p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 15px;
    background: rgba(255, 77, 109, 0.05);
    border-radius: 10px;
    border-left: 5px solid #ff4d6d;
    border-top: 1px dashed rgba(255, 77, 109, 0.15);
    border-right: 1px dashed rgba(255, 77, 109, 0.15);
    border-bottom: 1px dashed rgba(255, 77, 109, 0.15);
    text-align: justify;
}

/* háttér elmosás */
.cards.blurred .card:not(.active){
    filter: blur(5px);
    opacity: 0.3;
}

/* cím */
.card h3{
    margin-top: 2%;
}

/* ===== ANIMÁCIÓ ===== */
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes cardOpen {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0;
        filter: blur(5px);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}
@keyframes cardClose {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0;
    }
}

.textbox{
    align-items: center;
    justify-content: center;
    display: flex;
}
.dashed {
  border: none;
  border-top: 2px dashed black;
}
.pricesection{
    margin-right: 0;
    margin-left: 0;
}

.textbox{
    margin-right: 10%;
    margin-left: 10%;
    position: relative;
    padding: 20px;
    margin-bottom: 3%;
}
.textbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;

    border-top: 4px dashed #f2bebe;  
    border-left: 4px dashed #f2bebe; 

    pointer-events: none; 
}

.textbox::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;   
    height: 50%;  

    border-bottom: 4px dashed #f2bebe; 
    border-right: 4px dashed #f2bebe; 

    pointer-events: none;
}

.optionspart{
    margin-right: 0;
    margin-left: 0;
}
.foglalkozasok {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.foglalkozas {
    background-color: #fcebeb;
    color: #a84355;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #f2bebe;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foglalkozas.active {
    background-color: #ff4d6d;
    color: white;
    border-color: #ff4d6d;
    box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
}
.foglalkozas:hover {
    background-color: #f2bebe;
    color: #8c2738;
}

/* ==========================================
   IDŐPONTFOGLALÓ ÉS NAPTÁR STÍLUSOK
   ========================================== */
.booking-section {
    margin-top: 30px;
    padding: 20px 0;
}

/* 🔒 KIKAPCSOLT FOGLALÁS STÍLUSAI */
.booking-disabled-card {
    max-width: 650px;
    margin: 40px auto;
    background: #fff8f8;
    border: 1px solid #f2bebe;
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(242, 190, 190, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.disabled-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 47, 86, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.disabled-icon i {
    font-size: 2.2rem;
    color: #ff2f56;
}

.booking-disabled-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.booking-disabled-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.disabled-contact-info {
    margin-top: 15px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.disabled-contact-info p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ff2f56;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disabled-contact-info a {
    color: #333;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.disabled-contact-info a:hover {
    color: #ff2f56;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .booking-disabled-card {
        margin: 20px 16px;
        padding: 30px 20px;
    }
    .disabled-contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

.booking-container {
    display: flex;
    gap: 5%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 10%;
    margin-left: 10%;
}

.booking-left, .booking-right {
    flex: 1 1 420px;
    background: #fff8f8;
    border: 1px solid #f2bebe;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(242, 190, 190, 0.2);
}

.booking-left h3, .booking-right h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ff2f56;
    font-size: 1.4rem;
    border-bottom: 2px dashed #f2bebe;
    padding-bottom: 10px;
}

/* Naptár widget stílusai */
.calendar-widget {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f2bebe;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.calendar-header button {
    background: #f2bebe;
    color: black;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.calendar-header button:hover {
    background: #ff4d6d;
    color: white;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    color: #ff4d6d;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-days div {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.calendar-days div:hover:not(.empty):not(.disabled) {
    background-color: #f2bebe;
}

.calendar-days div.active {
    background-color: #ff4d6d !important;
    color: white !important;
    font-weight: bold;
}

.calendar-days div.today {
    border: 2px solid #ff4d6d;
}

.calendar-days div.disabled {
    color: #a09092;
    background-color: #f9ebeb;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.85;
}

.calendar-days div.empty {
    cursor: default;
}

/* Időpont választó stílusai */
.time-slots-container {
    margin-top: 25px;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 8px 15px;
    background-color: #f2bebe;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover:not(.disabled) {
    background-color: #ff2f56;
    color: white;
}

.time-slot.active {
    background-color: #ff4d6d;
    color: white;
}

.time-slot.disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.select-day-prompt {
    font-style: italic;
    color: #777;
    margin: 10px 0;
}

/* Űrlap és beviteli mezők */
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: bold;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    padding: 10px 12px;
    border: 1px solid #f2bebe;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ff4d6d;
    box-shadow: 0 0 5px rgba(255, 77, 109, 0.2);
}

#submit-booking-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: bold;
}

.booking-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    display: none;
    text-align: center;
}

.booking-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.booking-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Reszponzív módosítások a naptárhoz */
@media (max-width: 992px) {
    .booking-container {
        margin-right: 3%;
        margin-left: 3%;
    }
}

@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
    }
    .booking-left, .booking-right {
        flex: 1 1 100%;
    }
}

/* ==========================================
   RÓLUNK (ABOUT US) SZEKCIÓ
   ========================================== */
.aboutsection {
    margin-right: 0;
    margin-left: 0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-container {
    margin-right: 10%;
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff8f8;
    border: 1px solid #f2bebe;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(242, 190, 190, 0.2);
}

.about-row {
    display: flex;
    align-items: center;
    gap: 35px;
}

.about-image-wrapper {
    flex: 0 0 180px;
}

.about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 8px solid #f2bebe;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 12px;
    color: black;
    font-size: 1.8rem;
    font-weight: bold;
}

.about-p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.dashed-divider {
    border: none;
    border-top: 2px dashed #f2bebe;
    margin: 15px 0;
}

/* Reszponzív Rólunk stílusok */
@media (max-width: 992px) {
    .about-container {
        margin-right: 3%;
        margin-left: 3%;
    }
}

@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .about-image-wrapper {
        flex: 0 0 150px;
        width: 150px;
    }
    
    .about-image {
        aspect-ratio: 1/1;
    }

    /* Általános mobil reszponzivitás javítások */
    .headtitle {
        font-size: 1.5rem !important;
    }

    .herosectionimages {
        display: none !important;
    }

    .slide h1 {
        font-size: 1.8rem !important;
    }

    .slide p {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
    }

    .textbox {
        margin-left: 2% !important;
        margin-right: 2% !important;
        padding: 15px !important;
    }

    .foglalkozasok {
        margin-left: 2% !important;
        margin-right: 2% !important;
        justify-content: center !important;
    }

    .foglalkozas {
        width: 100% !important;
        text-align: center !important;
        margin: 5px 0 !important;
    }

    /* Szolgáltatás kártyák közötti távolság mobilon */
    .cards {
        gap: 30px !important;
    }
}

/* ==========================================
   LÁBLÉC (FOOTER) STÍLUSOK
   ========================================== */
.site-footer {
    background-color: #f2bebe;
    color: #333;
    padding: 50px 0 20px 0;
    margin-top: 60px;
    border-top: 4px dashed #ff4d6d;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-left: 10%;
    margin-right: 10%;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-section h3 {
    margin: 0;
    color: #ff2f56;
    font-size: 1.4rem;
    font-weight: bold;
    font-style: italic;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.footer-col h4 {
    color: #ff2f56;
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px dashed rgba(255, 77, 109, 0.4);
}

.footer-links, .footer-contact, .footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links li a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links li a:hover {
    color: #ff2f56;
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: #ff2f56;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact li a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #ff2f56;
}

.footer-hours li span {
    font-weight: bold;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    color: #ff2f56;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #ff2f56;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px dashed rgba(255, 77, 109, 0.3);
    font-size: 0.9rem;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

/* Lábléc reszponzív stílusai */
@media (max-width: 992px) {
    .footer-container {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col h4 {
        margin-bottom: 12px;
    }
}

/* ==========================================
   ÁRAINK SZEKCIÓ DIZÁJN
   ========================================== */
.pricebox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 10px 0;
    box-sizing: border-box;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

.price-name {
    flex-shrink: 0;
}

.price-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ff4d6d;
    margin: 0 12px;
    height: 1px;
    opacity: 0.4;
}

.price-value {
    font-weight: bold;
    color: #ff2f56;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.price-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ==========================================
   FOGLALÁSI INFORMÁCIÓ DOBOZ
   ========================================== */
.booking-info-box {
    background: rgba(242, 190, 190, 0.15);
    border-left: 4px solid #ff4d6d;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 25px;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
}

.booking-info-box h4 {
    margin: 0 0 12px 0;
    color: #ff2f56;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.booking-info-box ul {
    margin: 0;
    padding-left: 20px;
}

.booking-info-box li {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 8px;
}

.booking-info-box li:last-child {
    margin-bottom: 0;
}

/* ==========================================
   RESZPONZÍV ÁRAK MOBILRA
   ========================================== */
@media (max-width: 576px) {
    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .price-dots {
        display: none;
    }
    .price-value {
        align-self: flex-start;
        font-size: 1.2rem;
        margin-top: 2px;
    }
    .price-desc {
        font-size: 0.9rem;
        margin-top: 2px;
    }
}

/* ==========================================
   INTERAKTÍV MEMÓRIAJÁTÉK STÍLUSAI
   ========================================== */
.game-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fffafb;
    border-top: 1px dashed rgba(255, 77, 109, 0.2);
    border-bottom: 1px dashed rgba(255, 77, 109, 0.2);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    margin-left: 10%;
    margin-right: 10%;
}

.memory-game-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.memory-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    perspective: 1000px;
}

.memory-card {
    aspect-ratio: 1;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.memory-card.flipped {
    transform: rotateY(180deg);
}

.memory-card.matched {
    transform: rotateY(180deg);
    pointer-events: none;
    animation: cardPulse 0.4s ease;
}

@keyframes cardPulse {
    0% { transform: rotateY(180deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.08); }
    100% { transform: rotateY(180deg) scale(1); }
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(242, 190, 190, 0.2);
    box-sizing: border-box;
}

.card-back {
    background: linear-gradient(135deg, #ff4d6d, #ff2f56);
    color: white;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-front {
    background-color: #fff3f4;
    color: #ff2f56;
    transform: rotateY(180deg);
    font-size: 2.2rem;
    border: 2px solid #f2bebe;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #444;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #f2bebe;
    margin-bottom: 20px;
}

.game-success-card {
    background: linear-gradient(#fff2f2, #fffafb);
    border: 2px dashed #ff4d6d;
    border-radius: 14px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.15);
    animation: successIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.game-success-card h3 {
    margin-top: 0;
    color: #ff2f56;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.game-success-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==========================================
   VÉLEMÉNYEK STÍLUSAI
   ========================================== */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff8f9;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 0 10%;
}

.testimonial-card {
    background: white;
    border: 1px solid #f2bebe;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(242, 190, 190, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testi-header {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testi-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #ff2f56;
}

.testi-relation {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.testi-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testi-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-style: italic;
}

/* ==========================================
   FAQ (GYIK) STÍLUSAI
   ========================================== */
.faq-section {
    padding: 60px 0;
    background-color: #fffafb;
    border-top: 1px dashed rgba(255, 77, 109, 0.2);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border: 1px solid #f2bebe;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(242, 190, 190, 0.08);
}

.faq-question {
    padding: 18px 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ff2f56;
    font-size: 1.05rem;
    transition: background 0.2s;
    text-align: left;
}

.faq-question:hover {
    background-color: #fff3f4;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 22px;
    background-color: #fffcfd;
    border-top: 0 solid #f2bebe;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 18px 22px;
    border-top-width: 1px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 576px) {
    .memory-board {
        gap: 8px;
    }
    .card-back {
        font-size: 1.4rem;
    }
    .card-front {
        font-size: 1.5rem;
    }
}

/* ==========================================
   MODAL STÍLUSOK (VÉLEMÉNY KÜLDÉS ÉS EGYÉB MODALOKHOZ)
   ========================================== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(8px);
    
    /* Center using Flexbox */
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    
    animation: fadeIn 0.3s ease;
}

/* Helper show class for javascript */
.modal.show {
    display: flex !important;
}

.modal-content {
    background-color: #fffafb;
    margin: 20px auto; 
    padding: 25px;
    border: 1px solid #f2bebe;
    width: 90%;
    max-width: 440px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.15);
    position: relative;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-sizing: border-box;
    animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content form {
    width: 100%;
    box-sizing: border-box;
}

.modal-content .form-group {
    width: 100%;
    box-sizing: border-box;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #a09092;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: #ff2f56;
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================
   RESZPONZÍV JAVÍTÁSOK (MOBIL ÉS TABLET)
   ========================================== */
@media (max-width: 768px) {
    .titletext {
        text-align: left !important;
        margin-left: 24px !important;
        margin-right: 24px !important;
        margin-top: 25px !important;
        margin-bottom: 10px !important;
    }
    .testimonials-container {
        margin: 0 20px;
        gap: 20px;
    }
    .section-subtitle {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1rem;
    }
    .game-section {
        padding: 40px 0;
    }
    .testimonials-section {
        padding: 40px 0;
    }
    .faq-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .card-front {
        font-size: 1.7rem;
    }
    .card-back {
        font-size: 1.5rem;
    }
    .memory-board {
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .card-front {
        font-size: 1.4rem;
    }
    .card-back {
        font-size: 1.2rem;
    }
    .memory-board {
        gap: 6px;
    }
}

/* Hero idézetek elrendezése (Hero quotes layout) */
.herosection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
}

.herosection-layout-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between; /* a szélekre tolja az idézet-oszlopokat */
    width: 100%;
    max-width: 1800px; /* maximális szélesség növelése */
    margin: 0 auto;
    padding: 0 40px; /* biztonsági margó a képernyő szélén */
    box-sizing: border-box;
}

.hero-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 900px;
}

.hero-quotes-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 220px;
    flex-shrink: 0;
    margin-top: 20px;
}

.quote-card-side {
    width: 100%;
    background: #fff0f3; /* márkás világosrózsaszín háttér */
    border: 2px dashed #f2bebe; /* szaggatott border */
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(242, 190, 190, 0.25);
    box-sizing: border-box;
    font-size: 0.95rem;
    color: #4a3e40;
    line-height: 1.5;
    transition: all 0.3s ease;
    
    /* Uniform height and alignment */
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-card-side:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 77, 109, 0.15);
}

.quote-text-side {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-style: italic; /* dőlt szöveg */
    color: #4a3e40;
    margin-bottom: 8px;
}

.quote-author-side {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff4d6d;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .herosection-layout-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-quotes-col {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        max-width: 900px;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .quote-card-side {
        width: calc(50% - 15px);
        min-width: 250px;
        max-width: 420px;
    }
}

@media (max-width: 576px) {
    .quote-card-side {
        width: 100%;
        max-width: 100%;
    }
}

/* --- Süti (Cookie) Sáv Stílusok --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 150%);
    width: 95%;
    max-width: 1100px;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 47, 86, 0.15);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 25px;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 47, 86, 0.1);
}

.cookie-banner.show {
    transform: translate(-50%, 0);
}

.cookie-icon-wrapper {
    background-color: #fff0f3;
    color: #ff2f56;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-content {
    flex: 1 1 400px;
    min-width: 300px;
}

.cookie-content p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    background-color: #ff2f56;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #e02046;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 47, 86, 0.3);
}

.cookie-btn-secondary {
    background-color: white;
    color: #ff2f56;
    border: 1px solid #ff2f56;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-secondary:hover {
    background-color: #fff0f3;
    transform: translateY(-2px);
}

.cookie-btn-outline {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-outline:hover {
    background-color: #f5f5f5;
    color: #333;
    border-color: #bbb;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        border-radius: 25px;
        width: 95%;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn, .cookie-btn-secondary, .cookie-btn-outline {
        width: 100%;
    }
}

/* --- Süti Beállítások Modal és Toggle --- */
.cookie-reopen-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    color: #ff2f56;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 9998;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-reopen-btn:hover {
    transform: scale(1.1);
    border-color: #ff2f56;
}

.cookie-toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cookie-toggle-group:last-of-type {
    border-bottom: none;
}

.cookie-toggle-info {
    flex: 1;
    padding-right: 20px;
}

.cookie-toggle-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1rem;
}

.cookie-toggle-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Toggle Switch CSS */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .toggle-slider {
    background-color: #ff2f56;
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #ff2f56;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-slider.round {
    border-radius: 34px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}

input:disabled + .toggle-slider {
    background-color: #ff2f56;
    opacity: 0.6;
    cursor: not-allowed;
}
