/* ---------------------------------------------------
   LAYOUT STRUCTURE
--------------------------------------------------- */

.kids-holder {
    display: flex !important;
    gap: 40px;
    align-items: flex-start;
}
/* container that holds the large + small images */
.image-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ---------------------------------------------------
   IMAGES
--------------------------------------------------- */

/* top large image */
.main-photo-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 2px solid #000;
    border-radius: 20px;
    box-shadow: 4px 4px 0 #000;
    overflow: hidden;
}

/* row of 3 thumbnails */
.gallery-row {
    margin-top: 15px;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
    width: 100%;
}

/* thumbnails */
.gallery-row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    background: white;
}


/* ---------------------------------------------------
   ZOOM VIEWER
--------------------------------------------------- */

.image-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-viewer img {
    max-width: 100%;
    max-height: 100%;
}

.nav-btn {
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font-size: 32px;
}

.left-btn {
    left: 5%;
}

.right-btn {
    right: 5%;
}

.close-btn {
    font-size: 48px;
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
}


/* ---------------------------------------------------
   PAGE BACKGROUND FIX FOR NEW NAVBARS
--------------------------------------------------- */

body {
    background: rgb(232, 245, 233) !important;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */


/* Center all banner content */
.banner .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center the entire About section */
.about-section {
    text-align: center;
    max-width: 1000px;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.about-section p {
    text-align: center;
    line-height: 1.6;
    font-size: 18px;
}

/* --------------------------------------------
   Instructor Button — Match Navbar Button Style
--------------------------------------------- */

.instructor-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 12px !important;
    border: 2px solid #000 !important;
    background: #fff6cc;
    color: #000 !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    transition: 0.2s ease;
}

.instructor-btn:hover {
    background: #fff6cc !important;
    color: #000 !important;
    box-shadow: 2px 2px 0 #000;
}

.instructor-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
    margin-left: 8px;
    vertical-align: middle;
}

.thumb {
    border: 2px solid #000;
    border-radius: 20px;
    box-shadow: 4px 4px 0 #000;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.register-column {
    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: flex-start;
    /* keep it near the top */
}


/* --------------------------------------------
   CENTER REGISTRATION CARD
--------------------------------------------- */

/* Wrapper centers the card horizontally */
.reg-card-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Card sizing */
.reg-card {
    width: 100%;
    max-width: 420px;
    /* desktop width — adjust if needed */
    box-sizing: border-box;
}

/* Main price (e.g. €40.00) */
.price-total {
    display: block;
    font-size: 28px;
    /* 🔥 increase this */
    font-weight: 800;
    line-height: 1.1;
}

/* Breakdown text stays smaller */
.price-breakdown {
    font-size: 13px;
    margin-top: 6px;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 1200px) {

    .kids-holder {
        flex-direction: column;
        align-items: center;
    }

    .register-column {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .reg-card-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .reg-card {
        width: 100%;
        max-width: 420px;
        /* or whatever looks good */
    }
}
