/*# sourceMappingURL=style.css.map */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&display=swap');

:root {
    --primary: #FFECF2;
    --dark-gray: #1C1C1C;
    --white: #FFF;
    --gray: #F7F7F7;
    --OpenSans: 'Open Sans', sans-serif;  
    --CrimsonPro: 'Crimson Pro', serif;
}

h1, h2, h3 {
    font-family: var(--CrimsonPro);
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-size: 1.125rem;
    color: var(--dark-gray);
    font-family: var(--OpenSans);
    line-height: 160%;
}

.btn {
    display: inline-block;
    border: 1px solid var(--dark-gray);
    padding: .6rem 2.3rem;
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark-gray);

    background: linear-gradient(to left, transparent 50%, var(--dark-gray) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
}

.btn:hover {
    background-position: left;
    color: var(--white);
}

/* NAVIGATION */
 
nav { 
    height: 90px;
    width: 100%;
    background: var(--white);
    position: fixed;
    z-index: 999;
}

.nav-bar {
    display: flex;
    align-content: space-between;
    height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 50%;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
    padding-right: 2rem;
}

.nav-links .link a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-links .link-hover::after,
.f-link::after {
    content: ' ';
    display: block;
    width: 0%;
    height: 3px;
    background: var(--dark-gray);
    transition: .5s;
}

.nav-links .link-hover:hover::after,
.f-link:hover::after {
    width: 100%;
}

.nav-links .link a i.arrow {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 3rem;
    z-index: 999;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-img {
    width: 48px;
    margin-right: 1rem;
}

.phone,
.active {
    font-weight: bold;
}

/* HOME */

/* HEADER */

.home-header {
    width: 100%;
    height: 100vh;
    background-image: url("../images/home-header.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-logo {
    max-width: 15%;
}

.header-title {
    font-size: 4.5rem;
    line-height: normal;
    color: var(--white);
    font-weight: 600;
    margin-top: 1rem;
}

/* ABOUT US - HOME */

.about-us {
    padding: 5rem 0;
    display: flex;
    align-items: center;
    padding-right: 2rem;
    position: relative;
}

.about-us-description {
    padding: 3rem 0;
    padding-left: 2rem;
    padding-right: 3rem;
}

.products-image {
    width: 45%;
}

.pink-back {
    position: absolute;
    background-color: var(--primary);
    z-index: -100;
}

.p-b-about-us {
    left: 50%;
    top: 50%;
    width: 95%;
    height: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.p-b-services {
    right: 0%;
    top: 0%;
    width: 50%;
    height: 70%;
}

/* HAIRSTYLE */

.hair {
    width: 100%;
    position: relative;
    padding: 5rem 0;
    margin-top: 5rem;
}

.hairstyle {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-top: 5rem;
}

.description {
    text-align: left;
    width: 80%;
    margin: auto;
}

.gray-back {
    position: absolute;
    background-color: var(--gray);
    z-index: -100;
}

.g-b-hair {
    left: 0%;
    top: 0%;
    width: 50%;
    height: 70%;
}

/* SERVICES */

.services-home {
    display: flex;
    flex-direction: row-reverse;
    padding: 5rem 0;
}

.services-hairstyle {
    width: 50%;
    margin-top: 5rem;
}

.description-services {
    padding-left: 2rem;
}

.pink {
    width: 60%;
    height: 70%;
    position: absolute;
    padding: 5rem 0;
    background-color: var(--primary);
    z-index: -100;
}

/* FOOTER */

.footer {
    width: 100%;
    padding: 5rem 3rem;
}

.s-line {
    border: none;
    height: 1px;
    background-color: var(--dark-gray);
    opacity: .2;
}

.social-media {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    gap: 10px;
    -webkit-gap: 10px
}

.icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    color: var(--white);
    justify-content: center;
    background-color: var(--dark-gray);
    border-radius: 50%;
    text-decoration: none;
    transition: .5s ease-out;
}

.icon:hover {
    background-color: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
}

.nav-footer {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.f-link {
    text-decoration: none;
    color: var(--dark-gray);
}

.info {
    text-align: center;
    margin: 2rem 0;
}

.copy {
    text-align: center;
    opacity: .5;
    padding-top: 3rem;
}

/* FOOTER GALLERY */

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-content: center;
    gap: 10px;
}
  
.grid img {
    max-width: 100%;
    cursor: pointer;
    margin: 3rem 0;
}

#lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    display: none;
}
  
#lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}
  
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    padding: 4px;
}
  

/* ABOUT US - PAGE */

.padding-top {
    padding-top: 8rem;
}

.text-header {
    padding: 0rem 3rem;
    padding-top: 8rem;
    text-align: center;
}

.text-header p {
    width: 60%;
    margin: auto;
}

.a-h-image {
    width: 100%;
    height: 600px;
    background-image: url('../images/about-us-header.png');
    margin: 3rem 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SPACE */

.space {
    text-align: center;
    padding: 3rem;
}

.cards {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-content: center;
    gap: 1.5rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover .card-header {
    background-color: var(--white);
    border: 1px solid var(--dark-gray);
}

.card-header {
    background-color: var(--primary);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .5s ease-out;
}

.text-bold {
    display: inline-block;
    font-weight: bold;
    padding-bottom: 1rem;
}

.about-image {
    max-width: 40%;
    padding-left: 3rem;
}

/* SERVICES - PAGE */

.tab {
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 0 3rem;
}

.tab button {
    width: calc(100% / 3);
    cursor: pointer;
    background-color: var(--white);
    padding: 2rem 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #9f9f9f;
    font-size: 1.1rem;
    transition: .5s; 
}

.tab button.active {
    border-bottom: 2px solid var(--dark-gray);
}

.tabcontent {
    display: none;
    padding: 3rem;
}

#sisanje {
    display: block;
}

/* ACCORDION */

.accordion .contentBx .label {
    position: relative;
    padding: 1rem 0;
    cursor: pointer;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.accordion .contentBx .label::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--dark-gray);
}

.accordion .contentBx.active .label::before {
    content: ' ';
    display: block;
    height: 3px;
    width: 15px;
    padding-right: 2px;
    background: var(--dark-gray);
}

.accordion .contentBx .content {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: .3s ease-out;
    opacity: 0;
}

.accordion .contentBx.active .content {
    height: 100%;
    padding-bottom: 2rem;
    font-weight: normal;
    opacity: 1;
}

.label {
    border-bottom: 1px solid #9f9f9f;
}

.table .row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: 1rem 0;
    border-bottom: 1px solid #9f9f9f;
}

.price {
    text-align: right;
}

/* CONTACT */

.form {
    padding: 3rem;
}

.row-2 {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.row-2 > div {
    width: 100%;
}

.form .label {
    display: block;
    width: 100%;
    color: #4D4C4C;
    margin-top: .5rem;
}

.form input,
.message {
    width: 100%;
    padding: .5rem;
    font-size: 1rem;
    color: var(--dark-gray);
    outline: none;
    border: 1px solid var(--dark-gray);
    transition: .5s;
}

.form input:focus,
.message:focus {
    border: none;
    border-bottom: 2px solid var(--dark-gray);
}

.message {
    resize: vertical;
    min-height: 150px;
    max-height: 300px;
    font-family: var(--OpenSans);
}

input[type="submit"] {
    max-width: 120px;
    height: 45px;
    font-family: var(--OpenSans);
    color: var(--dark-gray);
}

input[type="submit"]:hover {
    transition: .5s;
}

.map {
    width: 100%;
    height: 500px;
    margin-top: 3rem;
}

.thankyou {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* MEDIA QUERIE */

@media screen and (max-width:300px){

    .logo h3 {
        max-width: 150px;
    }
    
}

@media screen and (max-width: 820px){
    
    .nav-links {
        width: 60%;
    }

    .header-logo {
        max-width: 20%;
    }

}

@media  screen and (max-width: 768px) {

    .line {
        width: 30px;
        height: 3px;
        background-color: var(--dark-gray);
        margin: 5px;
    }

    nav {
        position: relative;
    }


    .hamburger {
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 999;
    }

    .nav-links {
        position: fixed;
        background-color: var(--white);
        height: 100vh;
        width: 100%;
        padding-top: 100px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        clip-path: circle(90px at 90% -15%);
        -webkit-clip-path: circle(90px at 90% -15%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1500px at 90% -10%);
        -webkit-clip-path: circle(1500px at 90% -10%);
        pointer-events: all;
    }

    .nav-links .link {
        opacity: 0;
        content: '';
        margin-top: 1rem;
        margin-left: 2rem;
        padding: .25rem;
        transition: .5s;
    }

    .nav-links .link a {
        font-size: 1.5rem;
    }

    .nav-links .link a i.arrow {
        display: inline-block;
        opacity: 0;
        transition: .5s;
    }

    .nav-links .link a:hover i.arrow {
        opacity: 1;
        transform: translateX(10px);
    }

    .nav-links .link:nth-child(1) {
        transition: all .5s ease .2s;
    }

    .nav-links .link:nth-child(2) {
        transition: all .5s ease .3s;
    }

    .nav-links .link:nth-child(3) {
        transition: all .5s ease .4s;
    }

    .nav-links .link:nth-child(4) {
        transition: all .5s ease .5s;
    }

    .nav-links .link:nth-child(5) {
        transition: all .5s ease .6s;
    }

    .link.fade {
        opacity: 1;
    }

    .logo {
        padding-left: 1rem;
    }

    /* HOME PAGE */

    .header-logo {
        max-width: 50%;
    }

    .about-us {
        padding-left: 2rem;
        flex-direction: column;
    }

    .products-image {
        width: 100%;
    }

    .p-b-about-us {
        left: 0;
        width: 100%;
        transform: translateY(-40%);
    }

    .about-us-description {
        padding-right: 0rem;
        padding-left: 0rem;
    }

    .hair {
        margin-top: 0rem;
    }

    .hairstyle {
        width: 95%;
        margin-top: 3rem;
    }

    .g-b-hair {
        width: 70%;
    }

    h1 {
        line-height: 100%;
    }

    .services-home {
        flex-direction: column;
    }

    .services-hairstyle {
        width: 95%;
        margin-top: 3rem;
    }

    .pink {
        width: 80%;
        height: 50%;
    }

    .description-services {
        padding-top: 3rem;
        padding-left: 0;
    }

    .nav-footer {
        flex-direction: column;
        text-align: center;
    }

    .nav-footer span {
        display: none;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 3rem 0;
    }

    .grid img {
        margin: 0rem 0;
    }

    .footer {
        padding: 0rem 2rem;
        padding-bottom: 3rem;
    }

    .info {
        margin-top: 3rem;
    }

    .copy {
        padding-top: 1rem;
    }
    

    /* ABOUT US */

    .text-header {
        padding: 0 2rem;
        padding-top: 3rem;
    }

    .text-header p {
        width: 100%;
        margin: auto;
        padding: 0;
    }

    .space {
        padding: 2rem;
    }

    .cards {
        margin-top: 3rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .about-us {
        padding: 3rem 2rem;
    }

    .about-image {
        max-width: 100%;
        padding-left: 0rem;
    }

    .a-h-image {
        height: 400px;
    }

    /* SERVICES */

    .tab {
        flex-direction: column;
        padding: 0 2rem;
    }

    .tab button {
        width: 100%;
    }

    .tabcontent {
        display: none;
        padding: 3rem 2rem;
    }

    .label::before {
        padding-right: 0px;
    }

    /* CONTACT */

    .form {
        padding: 3rem 2rem;
    }

    .row-2 {
        gap: 0rem;
        flex-direction: column;
    }

}