@import url('https://fonts.googleapis.com/css2?family=Chivo&family=Gambetta:opsz,wght@9..72,400;9..72,700&display=swap');

h1,
h2,
h3,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

body,
p,
li,
a,
input,
button {
    font-family: 'Chivo', sans-serif;
    font-weight: 400;
}

button {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* header */
* {
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: center;
    background-color: #000000;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.head-container {
    width: 100%;
    background-color: #000000;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 7fr;
}

.logo img {
    margin-top: 10px;
    height: 50px;
    width: auto;
}

.menu ul {
    margin-bottom: 0;
    list-style: none;
    display: flex;
    justify-content: right;
    text-align: center;
    margin-top: 5px;
    margin-right: 50px;
    gap: 50px
}

.menu nav a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.menu li a:hover {
    color: red;
}

.menu .submenu {
    list-style: none;
}

@media(min-width:768px) {
    .submenu li a {
        text-decoration: none;
        color: #000000;
    }

    .submenu ul {
        padding: 20px 28px 15px 25px;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.3);
        text-align: left;
        right: 185px;
        top: 40px;
        position: absolute;
        list-style: none;
        min-height: 200px;
        display: none;
    }

    .submenu ul li {
        margin: 10px;
    }

    .navmenu li:hover .submenu ul {
        display: block;
    }

    .submenu ul li {
        margin: 10px;
    }
}

/* mid section */
.hair {
    width: 90%;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.hair:hover {
    transform: scale(1.015);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.hair .image {
    flex: 1 1 45%;
}

.hair .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.hair .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0
}

.hair .details {
    flex: 1 1 55%;
    padding: 40px 30px;
}

.details h1 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
}

.details p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.details .row h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.details .row p {
    font-size: 1rem;
    color: #666;
}

.accordion-button {
    background-color: #f8f8f8;
    color: #000;
    font-weight: 500;
}

.accordion-body li {
    padding: 5px 0;
    color: #555;
}

.accordion-button:not(.collapsed) {
    background-color: #000;
    color: #fff;
}

.enroll-btn-container {
    text-align: center;
    margin-top: 30px;
}

.enroll-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.enroll-btn:hover {
    background-color: #e50914;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229, 9, 20, 0.4);
}

.more .accordion-item {
    width: 70%;
    margin: auto;
}

/* footer */
footer {
    width: 100%;
    background-color: #271912;
}

.foot {
    height: 230px;
    padding-top: 30px;
    z-index: 1;
    max-width: 75%;
    margin: auto;
    border-top: 0.8px solid rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: rgb(255, 247, 247);
}

.copyright {
    padding-top: 20px;
    padding-bottom: 30px;
    color: rgb(255, 255, 255);
    z-index: 2;
    max-width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

footer p {
    padding-right: 80px;
}

.second i {
    margin-left: 20px;
}

/* input */
.email {
    max-width: 190px;
    padding: 15px;
    font-size: 17px;
    color: black;
    margin-right: -10px;
}

.emailbutton {
    background-color: black;
    text-decoration: none;
    padding: 17px;
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    border: none;
}

.hamburger {
    color: #fff;
    display: none;
}

aside a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

aside nav ul {
    margin-top: 10px;
    margin-left: 25px;

}

aside nav li {
    margin-bottom: 10px;
    list-style: none;
}

aside {
    top: 0;
    transform: translate(-200px);
    transition: all 0.7s ease-in-out;
    display: block;
    background-color: #111;
    color: #fff;
    min-height: 250px;
    width: 200px;
    position: absolute;
    z-index: 9;
    left: 0;
    transform: translateX(-200px);
}

aside ul li {
    color: #fff;
}

body.hidden {
    overflow: hidden;
}

.submenu ul {
    display: none;
}

.close i {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
}

.why-choose-us {
    padding: 60px 20px;
    background-color: #eedecb;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.choose-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.choose-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #000;
}

.choose-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.choose-card p {
    color: #555;
    font-size: 0.95rem;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 60px 20px;
    background-color: #eedecb;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 15px;
    max-width: 320px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-card h5 {
    color: #000;
    font-weight: 600;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

section h1 {
    text-align: center;
    font-size: 3rem;
    padding-top: 40px;
    margin-bottom: 40px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

section {
    background-color: #eedecb;
}

.spa {
    margin-bottom: 0;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .hamburger {
        text-align: end;
        margin-right: 20px;
        display: block;
    }

    .logo img {
        height: 25px;
        width: auto;
    }

    .menu {
        display: none;
    }

    .head-container {
        grid-template-columns: 2fr 1fr;
    }

    .submenu li {
        list-style: square;
    }

    aside nav ul {
        margin-top: 15px;
        margin-left: 0;
    }

    .hair {
        flex-direction: column;
    }

    .hair .image,
    .hair .details {
        flex: 1 1 100%;
    }

    .hair .image img {
        width: 100%;
    }

    .hair .details {
        padding: 20px;
    }

    .hair.reverse {
        flex-direction: column-reverse;
    }

    .hair.reverse .image img {
        border-radius: 0;
    }

    .hair.spa img {
        border-radius: 0;
    }

    .enroll-btn {
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choose-card {
        padding: 25px 20px;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonials,
    .why-choose-us {
        padding: 40px 15px;
    }

    .testimonials h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .foot {
        display: flex;
        flex-direction: column;
        height: 420px;
        max-width: 90%;
        margin: auto;
        border: none;
    }

    footer h3 {
        font-size: 1.3rem;
    }

    .colunms {
        margin-bottom: 30px
    }

    footer h5 {
        font-size: 0.9rem;
    }

    footer p {
        margin: 0;
        font-size: 0.8rem;
    }

    .copyright {
        padding-top: 20px;
        max-width: 95%;
        margin: auto;
    }

    .second i {
        margin-left: 10px;
    }

    .email {
        max-width: 190px;
        padding: 15px;
        font-size: 10px;
    }

    .emailbutton {
        font-size: 10px;
    }
}