@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kapakana:wght@300..400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: black;
    color: white;
    font-family: "Italiana", sans-serif;
}

/* -------------------------------------------------------------------------- */
/*                                    FONTS                                   */
/* -------------------------------------------------------------------------- */
.title {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    align-items: center;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 200;
    text-transform: uppercase;
    background-image: linear-gradient(90deg, #FBE38D, #885b0d);
    background-clip: text;
    color: transparent;
}

h2 {
    font-family: "Kapakana", cursive;
    Font-weight: 400;
    font-size: clamp(3.5rem, 10vw, 10rem);
    background-image: linear-gradient(90deg, #FBE38D, #AA7213);
    background-clip: text;
    color: transparent;

    /* padding added so letters are not cut off by background-clip: text; */
    padding-left: 0.2em;
    padding-right: 0.2em;
    text-wrap: nowrap;
}

h3 {
    font-weight: 200;
    text-transform: uppercase;
    font-size: clamp(2rem, 3vw, 3rem);
}

h4 {
    font-size: clamp(1.6rem, 2vw, 2rem);
    background-image: linear-gradient(90deg, #FBE38D, #AA7213);
    background-clip: text;
    color: transparent;
    margin: 0 auto;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.5rem;
    font-size: 1.2rem;
}

/* -------------------------------------------------------------------------- */
/*                                HERO-SECTION                                */
/* -------------------------------------------------------------------------- */
.navbar {

    img {
        width: 8%;
    }
}
.nav-links {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem;
    align-items: center;
}

.hero-section {
    /*background-image: url(../img/main-bg.jpg);*/
    background-image: url(../img/main-img-2.jpg);
    height: 100vh;
    background-size: cover;
}

.main-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;

    h2 {
        color: white;
        margin-top: -4rem;
    }
}

button {
    a:hover {
        text-decoration: none;
    }
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.mobile {
    display: none;
}


/* -------------------------------------------------------------------------- */
/*                                ABOUT SECTION                               */
/* -------------------------------------------------------------------------- */
section#about-me {
    display: flex;
    gap: 10rem;
    justify-content: center;
    padding: 10rem 0;
}

.about-content {
    width: 40%;
    align-content: center;

    p {
        padding: 2rem;
        text-align: center;
    }

    br {
        padding-top: 1rem;
    }
}

.profile {
    width: 30rem;
    border-top-left-radius: 20rem;
    border-top-right-radius: 20rem;
    border: 3px solid transparent;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #FBE38D, #AA7213);
}

p .pt-1 {
    padding-top: 0;
}

/* -------------------------------------------------------------------------- */
/*                                SERVICE CARDS                               */
/* -------------------------------------------------------------------------- */
.bridal-party-serivce {
    margin: 5rem 0;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 1rem;

    img {
        width: 100%;
    }
}

.card {
    background-color: #221C00;
    border: 2px solid #AA7213;
    width: 25%;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.02);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    p {
        font-size: 1.3rem;
    }

    li, ul {
        padding: 5px;
    }

    .price {
        margin: 0 auto;
        color: white;
    }
}

.left-img, .middle-img, .right-img {
    border-top-right-radius: 15rem;
    border: 2px solid transparent;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #FBE38D, #AA7213);
}

.middle-img {
    border-top-left-radius: 15rem;
}

.left {
    border-top-right-radius: 15rem;
}

.middle {
    border-top-right-radius: 15rem;
    border-top-left-radius: 15rem;
}

.right-img, .right {
    border-top-right-radius: 0rem;
    border-top-left-radius: 15rem;
}

/* BEAUTY LESSON */
.beauty-lesson {
    display: flex;
    gap: 10rem;
    justify-content: center;

    .about-content {
        justify-content: center;

        p {
            text-align: center;
        }

        ul {
            justify-content: center;

            li {
                padding: 5px;
            }
        }

        .beauty-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
    }
}


/* -------------------------------------------------------------------------- */
/*                                BOOKING INFO                                */
/* -------------------------------------------------------------------------- */
.info-section {
    text-align: center;
    hr {
        width: 30%;
        margin: 0 auto;
    }

    p {
        padding: 3rem;
        width: 40%;
        margin: 0 auto;
        font-size: 1.2rem;
    }
}


.info-section {
    text-align: center;
    background-image: url(../img/bg-img.png);
    background-position: center;
    background-size: cover;
    padding: 10rem;
}

p.pt-1 {
    padding-top: 0;
}


/* -------------------------------------------------------------------------- */
/*                               POLICY SECTION                              */
/* -------------------------------------------------------------------------- */
.policy-section {
    padding: 7rem;
}

.policy-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    background-image: linear-gradient(90deg, #FBE38D, #AA7213);
    background-clip: text;
    color: transparent;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.policy-list {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

/* ICONS */
ion-icon.md.hydrated {
    font-size: 5rem;
    margin: 0 auto;
}


/* -------------------------------------------------------------------------- */
/*                                CONTACT FORM                                */
/* -------------------------------------------------------------------------- */
#book-session {
    padding-bottom: 4rem;

    h4 {
        display: flex;
        justify-content: center;
        padding: 2rem;
        font-size: 1.5rem;
        text-align: center;
    }
}
form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

input {
    background: #221C00;
    border: 1px solid #885b0d;
    padding: 22px;
    color: white;
    font-size: 18px;
    outline: none;
}

input::placeholder {
    color: white;
    text-transform: capitalize;
}

button {
    width: 220px;
    margin: 30px auto;
    padding: 18px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;

    background: linear-gradient(
        to right,
        #f4e3a0,
        #c58a1d
    );

    color: white;
}

button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* -------------------------------------------------------------------------- */
/*                                   CREDITS                                  */
/* -------------------------------------------------------------------------- */
.credits {
    hr {
        width: 35%;
        margin: 0 auto;
        margin-top: 5px;
    }
}

.names {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 2rem;
}

.left-names, .right-names {
    h4 { 
        font-size: 1.3rem;
        color: white;
        padding: 5px;
    }
}

.right-names {
    h4 {
        text-align: right;
    }
}


/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
footer {
    display: flex;
    justify-content: space-evenly;
    padding: 2rem;
    align-items: center;

    img {
        width: 5%;
    }
}

.instagram {
    display: flex;
    align-items: center;
    gap: 5px;

    a {
        text-transform: lowercase;
    }

    ion-icon.md.hydrated {
        font-size: 3rem;
        color: #AA7213;
    }
}

.links {
    display: flex;
    gap: 1rem;
}

/* COPYRIGHT */
.copyright {
    text-align: center;
    padding: 1rem;
    color: #ffffff63;
}

/* -------------------------------------------------------------------------- */
/*                             LARGE MOBILE SCREEN                            */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
    /* HAMBURGER */
    .hamburger {
        display: flex;
        align-items: end;
        z-index: 1002;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;

        /* hidden */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links {
        img {
            display: none;
        }
    }

    .mobile {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
        z-index: 1001;

        img {
            width: 20%;
        }
    } 

    /* HERO SECTION */
    .hero-section {
        background-position: top;
    }

    .main-title {
        margin-top: 10rem;

        h2 {
            margin-top: -1rem;
        }
    }

    button {
        font-size: 15px;
        width: 200px;
    }

    /* ABOUT ME */
    section#about-me {
        flex-wrap: wrap;
        gap: 0;
         padding: 5rem 0;
    }

    .profile {
        width: 15rem;
    }

    .about-content {
        width: 100%;
        padding: 2rem;
    }

    /* SERVICE */
    .cards {
        flex-wrap: wrap;
    }

    .card {
        width: 100%;
        margin: 1rem;
    }


    .beauty-lesson {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* INFO */
    .info-section {
        padding: 10rem 2rem;

        p {
            padding: 1.5rem 0;
            width: 100%;
        }

        hr {
            width: 100%;
        }
    }

    /* POLICY */
    .policy-list {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 2rem;
    }

    .policy-section {
        padding: 5rem;
    }

    /* CONTACT FORM */
    form {
        width: 300px;
    }

    /* CREDITS */ 
    .names {
        gap: 0;
    }

    /* FOOTER */
    footer {
        justify-content: space-between;

        a { display: none;}

        .instagram {
            .insta-icon { display: block;}
        }

        img {
            width: 20%;
        }
    }


}


/* -------------------------------------------------------------------------- */
/*                             MOBILE SCREEN SIZE                             */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 360px) { 
    
}