@font-face {
    font-family: "Tan Pearl";
    src: url("tan-pearl.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Optional: avoids invisible text during load */
}

body {
    margin: 0;
    font-family: sans-serif;
    background: url("4383.webp") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    color: #705040;
}

@media (orientation: landscape) {
    body {
        background: url("4413.webp") no-repeat center center fixed;
        background-size: 100% auto;
    }
}

/* Add a slight transparent white overlay to improve readability */
.price-list-container {
    background-color: rgba(255, 255, 255, 0.7);
    border: 4px solid #f6f0f0;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.container {
    background-color: rgba(255, 255, 255, 0.7);
    border: 4px solid #f6f0f0;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

h1.title {
    font-family: "Tan Pearl", sans-serif;
    text-align: center;
    font-size: 2.2rem;
    padding-bottom: 0px;
    padding-top: 10px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

h2.title {
    font-family: "Tan Pearl", sans-serif;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 20px;
    padding-top: 0px;
    margin-top: 0px;
    text-transform: uppercase;
    border-bottom: 4px solid #f6f0f0;
}

.section {
    margin: 0 40px 40px;
    padding-top: 20px;
}

.section p {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: justify;
    font-family: "Montserrat", sans-serif;
}

.service-title {
    font-family: "Tan Pearl", sans-serif;
    font-size: 1rem;
    margin: 0 0 2px;
}

.subtext {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0px;
    font-family: "Montserrat", sans-serif;
}

.price {
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    min-width: 60px;
    font-family: "Montserrat", sans-serif;
}

.extension-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extension-item {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.label {
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
}

.hl {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
}

.footer-note {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 40px 40px;
    padding-top: 20px;
    text-align: justify;
    font-family: "Montserrat", sans-serif;
}

.centered {
    text-align: center;
}

.separator {
    background: #f6f0f0;
    height: 4px;
    width: 100%;
}

.heading {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    margin: 10px 0 0;
}

.subheading {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0 0;
}

.section i {
    font-size: 4rem;
    margin: 10px 10px;
    color: #705040;
}

.inline-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inline-price-container .price {
    text-align: right;
}

@media (max-width: 600px) {
    h1.title {
        font-size: 1.3rem;
    }

    h2.title {
        font-size: 1rem;
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .service-title {
        font-size: 3.5vw; /*0.75rem;*/
    }

    .subtext {
        font-size: 3vw !important; /*0.7rem;*/
    }

    .section p {
        font-size: 3vw;
    }

    .price {
        font-size: 3.5vw;
        min-width: 40px;
    }

    .heading {
        font-size: 5vw;
    }

    .subheading {
        font-size: 3vw;
    }

    .label {
        font-size: 3vw;
    }

    .hl {
        font-size: 3.5vw;
    }

    .footer-note {
        font-size: 3vw;
        margin: 20px 30px;
        padding-top: 15px;
    }

    /* You might also want to adjust the section margins for mobile */
    .section {
        margin: 0 20px 30px;
        padding-top: 15px;
    }

    body {
        padding: 10px;
    }
}

/* eeeee */

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 40px 40px;
}

.about-photo {
    width: 240px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f6f0f0;
}

.about-text {
    flex: 1;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 15px;
    text-align: justify;
}

/* shrink about page */
@media (max-width: 1000px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .about-content {
        margin: 20px 20px 30px;
    }

    .about-photo {
        width: 160px;
    }

    .about-text {
        font-size: 0.8rem;
    }
}

/* Training Page Styles */
.training-options {
    margin: 0 40px 40px;
}

.training-option {
    margin-bottom: 20px;
    border: 2px solid #f6f0f0;
    border-radius: 2px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
}

.training-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.training-header:hover {
    background-color: rgba(240, 230, 220, 0.5);
}

.training-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.4);
}

.training-details.active {
    max-height: 1000px;
    padding: 20px;
}

.training-day {
    margin-bottom: 15px;
}

.training-day h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #705040;
    margin-bottom: 8px;
}

.training-details ul {
    margin: 0;
    padding-left: 20px;
}

.training-details li {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.toggle-icon {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.training-hero {
    width: 100%;
    max-width: 240px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    border: 2px solid #f6f0f0;
}

.training-image {
    width: 100%;
    max-width: 200px;
    margin: 15px auto;
    display: block;
    border-radius: 8px;
    border: 2px solid #f6f0f0;
}

.training-details.active {
    padding: 10px 20px 20px;
}

.training-description {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    color: #705040;
    padding: 0 10px;
}

.training-note {
    font-style: italic;
    font-size: 0.8rem;
    font-weight: 300;
    text-align: justify;
    padding: 10px;
    border-radius: 4px;
    background-color: #b0000030;
}

@media (max-width: 600px) {
    .training-options {
        margin: 0 20px 30px;
    }
    text .training-header {
        padding: 12px 15px;
    }

    .training-hero {
        max-width: 160px;
    }

    .training-details li {
        font-size: 0.7rem;
    }

    .training-details.active {
        padding: 15px;
    }

    .training-day h4 {
        font-size: 0.9rem;
    }

    .training-description {
        font-size: 0.8rem;
    }

    .training-note {
        font-size: 0.7rem;
    }
}

/* Back button styles */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #f6f0f0;
    color: #705040;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .back-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        top: 15px;
        left: 15px;
    }
}
