*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #000;
}
.full-screen{
    /* border: 1px solid #fff; */
    height: 100vh;
}



/* 1ST-SECTION BG*/
.creative-section{
    background-image: url(sunnyside-agency-landing-page-main/images/desktop/image-header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
ul{
    display: flex;
    gap: 3rem;
    justify-content: end;
}
li{
    list-style: none;
    font-family: "Barlow Condensed", sans-serif;
}
a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}
a:hover{
    color: #333;
}

/* HEADER */
header{
    position: relative;
    padding: 0 2rem;
}
nav{
    width: 100%;
    height: 80px;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .links{
    display: flex;
    align-items: center;
    gap: 3rem;
}
nav .toggle_btn{
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    display: none;
}
.action_btn{
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: scale 0.2 ease;
}
.action_btn:hover{
    scale: 1.05;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    /* backdrop-filter: blur(5px); */
}
.action_btn:active{
    scale: 0.95;
}


/* <!-- DROPDOWN_MENU FOR MOBILE --> */
.dropdown_menu{
    display: none;
    position: absolute;
    background-color: #fff;
    color: black;
    right: 2rem;
    width: 300px;
    top: 70px;
    height: 0;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* backdrop-filter: blur(5px); */
    cursor: pointer;
}
.dropdown_menu.open{
    height: 280px;
}
.dropdown_menu ul{
    /* border: 1px solid red */
    margin-top: 1.5rem;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    cursor: pointer;
}
.dropdown_menu li{
    display: flex;
    justify-content: center;
    padding: 0.7rem;
    cursor: pointer;
}
.dropdown_menu a{
    color: hsl(213, 9%, 39%);
    cursor: pointer;
    font-size: 1.2rem;
}
.dropdown_menu a:hover{
    color: #000;
}
.dropdown_menu .action_btn{
    width: 25%;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: center;
    background-color: hsl(51, 100%, 49%);
    color: #000;
    margin: auto;
    cursor: pointer;
}


/* HERO SECTION */
.hero{
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    text-align: center;
    color: white;
    font-family: "Fraunces", serif;
    font-size: 2rem;
}



/* 2ND-SECTION BG*/
.transform-section{
    height: 80vh;
    display: flex;
    width: 100%;
}
.transform{
    width: 50%;
}
.text-transform{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    font-family: "Fraunces", serif;
    background-color: #fffaf3;
}
.title-text-transform{
    width: 60%;
    display: flex;
    gap: 2.5rem;
    flex-direction: column;
    text-align: start;
    font-size: 1.6rem;
    font-weight: bolder;
}
.center-text-tranform{
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.89rem;
    color: hsl(213, 9%, 39%);
    font-weight: normal;
}
.inline-link{
    text-decoration: 5px solid rgba(250, 212, 0,0.3) underline;
    color: black;
    font-size: 0.95rem;
}
.inline-link:hover{
    text-decoration: 5px solid rgb(250, 212, 0) underline;
}
.bg-transform-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
}



/* 3RD-SECTION BG*/
.standout-section{
    height: 80vh;
    display: flex;
    width: 100%;

}
.standout{
    width: 50%;
}
.bg-standout-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.text-standout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    font-family: "Fraunces", serif;
    background-color: #fffaf3;
}
.title-text-standout{
    width: 60%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    text-align: start;
    font-size: 1.6rem;
    font-weight: bolder;
}
.center-text-standout{
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.08rem;
    color: hsl(213, 9%, 39%);
    font-weight: normal;
}
.inline-link-one{
    text-decoration: 5px solid rgba(254, 120, 103, 0.3) underline;
    color: black;
    font-size: 0.95rem;
}
.inline-link-one:hover{
    text-decoration: 5px solid hsl(7, 99%, 70%) underline;
}



/* 4TH-SECTION BG*/
.design-section{
    width: 100%;
    height: 80vh;
    display: flex;
}
.design{
    width: 50%;
    position: relative;
    display: inline-block;
}
.design-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-design{
    font-family: "Fraunces", serif;
    font-size: 1rem;
    font-weight: 1.5rem;
    position: absolute;
    top: 65%;
    left: 20%;
    margin: auto;
    width: 60%;
    text-align: center;
    color: hsl(197, 41%, 26%);
    z-index: 1000;
}
.center-text-design{
    padding: 1rem;
    font-size: medium;
    font-family: "Barlow Condensed", sans-serif;
}



/* 5TH-SECTION BG*/
.client-section{
    background-color: #fffaf3;
    margin: auto;
    display: flex;
    gap: 5rem;
    flex-direction: column;
    justify-content: center;    
    align-items: center;        
    min-height: 100vh;           
}
.text-client{
    font-family: "Fraunces", serif;
    font-size: 1rem;
    text-align: center;
    color: rgba(90, 99, 108, 0.5);
}
.client-pages{
    display: flex;
    gap: 1.5rem;
    flex-direction: row;
    margin: 0 8rem;
}
.page-client{
    display: flex;
    gap: 3rem;
    flex-direction: column;
}
.client-test-img{
    width: 20%;
    border-radius: 50%;
    margin: auto;
}
.client-paragraph{
    text-align: center;
    width: 92%;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    margin: auto;
    color: hsl(213, 9%, 39%);
}
.about-client{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
h4{
    color: hsl(198, 83%, 14%);
    font-family: "Lily Script One", system-ui;
}
.lp-client{
    color: hsl(210, 4%, 67%);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.75rem;
}



/* 6TH-SECTION BG*/
.socials{
    height: 50%;
}
.image-socials{
    display: flex;
}
.image-social{
    width: 25%;
}
.text-socials{
    background-color: hsl(168, 47%, 66%);
    color: hsl(167, 38%, 31%);
}
.content-text-socials{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height:  100%;
    align-items: center;
    font-family: "PT Sans Narrow", sans-serif;
}
.end-text{
    font-size: 2.3rem;
}
.i-link{
    display: flex;
    flex-direction: row;
    color: hsl(167, 38%, 31%);
    gap: 5rem;
}
.i-link:hover{
    color: #fff;
}
.ilinks{
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}
.ilink-s{
    color: hsl(167, 38%, 31%);
}
.fa-square-facebook, .fa-instagram, .fa-twitter, .fa-pinterest{
    font-size: 1.7rem;
}
.ilink-s:hover{
    color: #fff;
}
.media-image-socials{
    display: none;
}






/*RESPONSIVE DESIGN*/
@media (max-width: 768px) {
    .full-screen{
        height: 100svh;
    }
    .creative-section{
        height: 80svh;
        background-image: url(sunnyside-agency-landing-page-main/images/mobile/image-header.jpg);
    }
    nav .links,
    nav .action-btn{
        display: none;
    }
    nav .toggle_btn{
        display: inline-block;
    }
    .dropdown_menu{
        display: block;
    }
    .hero{
        font-size: 1.5rem;
        padding: 0 1rem;
        gap: 3rem;
        margin-top: -50px;
    }
    .transform-section{
        display: flex;
        flex-direction: column-reverse;
    }
    .transform{
        width: 100%;
        height: 50%;
    }
    .bg-transform-image{
        height: 100%;
        width: 100%;
    }
    .text-transform{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 1.5rem;
        font-family: "Fraunces", serif;
        background-color: #fffaf3;
    }
    .title-text-transform{
        text-align: center;
        width: 70%;
    }
    .standout-section{
        display: flex;
        flex-direction: column;
    }
    .standout{
        width: 100%;
        height: 50%;
    }
    .bg-standout-image{
        height: 100%;
        width: 100%;
    }
    .text-standout{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 1.5rem;
        font-family: "Fraunces", serif;
        background-color: #fffaf3;
    }
    .title-text-standout{
        text-align: center;
        width: 70%;
    }
    .design-section{
        display: flex;
        flex-direction: column;
    }
    .design{
        width: 100%;
        height: 50%;
    }
    .text-design{
        width: 80%;
        top: 63%;
        left: 10%;
    }
    .center-text-design{
        font-size: 0.86rem;
    }
    .image-socials{
        display: none;
    }   
    .image-social{
        display: none;
    }
    .media-image-socials{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .media-image{
        height: 50%;
        display: flex;
        flex-direction: row;
    }
    .expand-image{
        width: 100%;
    }
    .i-link{
        gap: 3.5rem;
    }
    .ilinks{
        gap: 2rem;
    }
    .client-section{
        height: auto;
        gap: 4rem;
        padding:  5rem 0;
    }
    .text-client{
        font-size: 0.83rem;
    }
    .client-pages{
        display: flex;
        flex-direction: column;
        gap: 5rem;
        margin: 0;
    }
    .page-client{
        gap: 2rem;
    }
    .client-paragraph{
        width: 80%;
    }
}




@media (max-width: 576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}

/* END OF CSS */