@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    word-break: keep-all;
    outline: 0px solid silver;
}

img {
    width: 100px;
}

body {
    font-family: "Montserrat", "pretendard", sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    color: #4d4d4d;
    letter-spacing: 0.1px;
}

h1,
h2,
h3 {
    font-family: "Montserrat", "pretendard", sans-serif;
}

h1 {
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.4rem;
    line-height: 2.4rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4rem;
    margin-bottom: 1.6rem;
}

h4,
h5 {
    font-family: "Montserrat", "pretendard", serif;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.1rem;
    margin-bottom: 1.6rem;
}

h5 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 1.6rem;
}

a:link {
    color: #666;
    text-decoration: none;
}

a:visited {
    color: #666;
}

a:hover {
    color: red;
}

a:active {
    color: red;
}

button {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 10px 30px;
    background: white;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: pink;
    color: black;
}

.solid {
    font-size: 4rem;
    line-height: 2rem;
    color: white;
    opacity: 0;
}

main {
    position: relative;
    background: url("https://cdn.pixabay.com/photo/2019/09/01/11/34/bouquet-4445012_1280.jpg") no-repeat;
    filter: brightness(1.2);
    filter: contrast(1.3);
    backdrop-filter: blur(2px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 800px;
    margin: 0 0 70px;
    color: white;
}

main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;


    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(2px);

    z-index: 0;
}

/* main header {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    padding: 16px 0;
    font-size: 1rem;
    line-height: 2.5rem;
} */


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s;
    background-color: transparent;
    color: white;
}


header.active {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #4d4d4d;
}


header .inner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: 0.4s;
}


header.active .inner {
    padding: 10px 0;
}


.inner> :first-child {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.8s;
}

.inner> :first-child:hover {
    color: pink;
}

header nav {
    display: flex;
}


header nav div {
    position: relative;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}


header nav div::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: 0.3s;
    bottom: -10px;
}


header nav div:hover {
    color: pink;
}

header nav div:hover::after {
    background-color: pink;
}

header.active nav div:hover {
    color: pink;
}

header.active nav div:hover::after {
    background-color: pink;
}



main>div {
    position: absolute;
    text-align: center;
    width: 800px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 6rem;
}



.Us {
    width: 1000px;
    margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
}

.Us> :first-child,
.Us> :last-child {
    width: 480px;
}

.Us> :first-child {
    background: rgb(255, 224, 230);
    text-align: center;
    padding: 20px;
}

.Services {
    /* background: rgb(255, 224, 230); */
    margin: 0 0 70px;
    padding: 70px 0;

}

.Services> :first-child,
.Services> :last-child {
    width: 1000px;
    margin: 0 auto;
}

.Services> :first-child {
    text-align: center;
}


.Services> :last-child {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 50px auto 0;
}

.Services> :last-child section {
    position: relative;
    width: 50%;
    overflow: hidden;
}


.Services> :last-child section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: 0.8s;
}

.Services> :last-child section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #222;
    opacity: 0;
    transition: 0.5s;
    z-index: 10;
}

.Services> :last-child section:hover .overlay {
    opacity: 1;
}


.Services> :last-child section:hover img {
    transform: scale(1.1);
}

.Services> :last-child section {
    font-size: 1.1rem;
}


.look {
    background: rgb(255, 224, 230);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.look > :first-child {
    width: 1000px;
    margin: 0 auto;
    padding: 80px 0 20px;
}


.look-grid {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    width: 1000px;
    margin: 50px auto 0;
    padding-bottom: 150px; 
}


.look-item img {
    width: 310px; 
    height: 450px;
    object-fit: cover;
    transition: 0.5s;
    border: 10px solid white;
    border-bottom: 40px solid white; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.item1 { 
    margin-top: 0; 
}
.item2 { 
    margin-top: 100px; 
}
.item3 { 
    margin-top: 40px;  
}

.look-item img:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); 
}



.Reviews {
    background: rgb(255, 224, 230);
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 50PX;
    text-align: center;
}

.Reviews> :first-child{
    padding: 30px 0 0 ;
}

.Reviews> :first-child,
.Reviews> :last-child {
    width: 1000px;
    margin: 0 auto;
}

.Reviews> :last-child {
    display: flex;
    justify-content: space-between;
}

.Reviews :last-child section {
    position: relative;
    width: 300px;
    padding: 30px 20px;
    text-align: center;
}

.Reviews :last-child section div {
    position: absolute;
    background: rgba(0, 0, 0, 0);
    border: 0px solid rgb(255, 224, 230);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: 0.8s
}

.Reviews :last-child section div:hover {
    background: rgba(0, 0, 0, 0.1);
    border: 5px solid rgb(255, 224, 230);
    border-radius: 20px;
}


.Reviews :last-child section img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 0 30px 0;
}


.OFFICIAL {
    padding: 50px 0;
    margin: 0 0 0px;
    text-align: center;
}

.OFFICIAL> :first-child,
.OFFICIAL> :last-child {
    width: 1000px;
    margin: 0 auto;
}

.OFFICIAL> :last-child {
    display: flex;
    justify-content: space-around;
}

.OFFICIAL :last-child img {
    width: 80px;
    margin-top: 10px;
    opacity: 0.3;
    transition: 0.8s;
}

.OFFICIAL :last-child img:hover {
    opacity: 1;
}





footer {
    background: rgb(230, 174, 185);
    padding: 30px 0;
}

footer div {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

footer div section {
    width: 500px;
    padding: 0 20px 0 0;
    text-align: center;
}

address {
    background: rgb(219, 163, 174);
    padding: 30px 0;
    text-align: center;
}