html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  text-decoration: none;
}

body{
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family:'Montserrat', sans-serif;
  color: #303030;
  font-size: 18px;
  font-weight: 500;  
}

body p {
  hyphens: auto;
  letter-spacing: 1px;
  text-align: justify;
  line-height: 150%;
  margin: 10px 0;
}


header {
  
  display: flex;
  flex-direction: column;

}

nav ul {
  border: #303030 solid 1px;
  border-radius: 30px;
  padding: 15px;
  width: 90%;
  background-color: #303030;
  font-weight: 600;
  display: flex;
  justify-content: space-around;
  margin: 30px auto;

}

nav li {
  display: inline-block;  
  text-transform: uppercase;
  padding-top: 5px;
}

nav li a {
  color: #fff;
}

.logo {
  padding-top: 0;
  font-size: 18px;
  font-family: 'Times New Roman, Times, serif';
}

header a:hover {
  text-decoration: underline;
}


.header-content {
  margin-right: auto;
}

h1 {
  
  line-height: 85%;
  text-transform: uppercase;
  font-family: 'Unna', serif;
  margin: 0;
  padding: 0;
}

h2 {
  font-family: 'Sacramento', cursive;  
  margin: 10px 0;
  font-weight: normal;
  padding: 0;
}

.header-buttons {
  display: flex;
  width: 87%;
  
}

.read-more {
  font-weight: 800;
  padding-left: 13px;
  font-size: 15px;
  color: #303030;
  
}

.button-pink { 
  border-radius: 23px;
  background-color: #e08e9c; 
  border: #e08e9c solid 1px;
  padding: 7px 20px;
  width:max-content;
  text-align: center;   
  margin: 0;
  font-size: 15px;
  color: #fff; 
  font-weight: bolder;
}

.header-buttons .none {
  list-style: none;
}

.name-of-bouquet {
  width: 8%;
  color: #828182;
  font-weight: 700;
  font-family: 'Unna', serif;
  list-style-type: disc;  
  margin-left: auto;
}

.discount {
  width:100%;
  background: url('./images/discount-bg.png') no-repeat;
  background-position: top center;
  background-size: cover;
}


h3 {
  margin: 0px auto;
  font-size: 45px;
  line-height:120%;
  font-weight: 700;
  font-family: "Unna";
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
}

.discount h2 {
  color: #fff;
  margin: 0px auto;
}

.discount h3 {
  color: #fff;
  width: 37%;
  padding: 70px 0 10px;
  text-transform: none;
}


section a:hover {
  text-decoration: underline;
}

.section {
  width: 100%;
 
}

.caption {
  width: 47%;
  margin: 0px auto;
  padding: 20px 0;
  text-align: center;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 50px; 
  padding: 80px 0 0px 0;
  
}

.product {
  width: 30%; 
  margin: 0 auto;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 0.2fr 0.3fr 0.2fr;

}

.product-bg {
  background: url('./images/product-bg.png') no-repeat;
  background-position: bottom center;
}


.title {
  font-size: 23px;
  color: #333333;
  font-weight: 700;
  font-family: "Unna";
  text-align: center;
}

.product-content {
  width: 80%;
  letter-spacing: 0px;
  margin: 0 auto;
  padding: 10px 0;
  height: max-content;
}


.button-read-more {
  border-radius: 23px;
  background-color: #a3a967; 
  border: #a3a967 solid 1px;
  padding: 7px 20px;
  width:max-content;
  text-align: center;  
  color: #333;
  font-size: 15px;
  font-family:'Montserrat', sans-serif;
}

.portfolio {
    border-radius: 52px;
}

.complect{
  width: 100%;
  display: flex;
  justify-content: space-between;
}


.complect-content {
  width: 50%;
  margin: 100px 0;
}

.complect-content p,
.complect-content-1 p{
  padding: 15px 0;
}

.button-read-more-1 {
  border-radius: 23px;
  background-color: #333; 
  border: #333 solid 1px;
  padding: 7px 20px;
  width:max-content;
  text-align: center;
  font-size: 15px;
  color: #efd0ca;
  font-family: 'Montserrat', sans-serif;
}


.complect-content-1 {
  width: 35%;
  margin: 100px 0;
}

.video {
  width: 60%;
  opacity: 0.5;
  border-radius: 29px;
  background-color: #000000;
  margin: 30px auto;
}

.video:hover {
  opacity: 1;
}


.video-presentation {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0px auto;
  text-align: center;
  padding: 80px 0;
}

/* FORM */

.subscription {
  display: flex;
  flex-direction: column; 
  text-align: center;
  width: 50%;
  margin-left: auto;
  
}


input {
  width: 90%;
  padding: 15px 30px;
  border: #b0b0b0 solid 1px;
  color: #999797;
  outline: none;
  margin-top: 20px;
}


fieldset {
  border: none;
}

legend {
  text-align: center;
  width: 80%;
  padding: 0;
  margin: 0 auto;
  font-size: 45px;
  line-height:120%;
  font-weight: 700;
  font-family: "Unna";
  text-transform: uppercase;
  text-align: center;
}


legend p {
  margin: 10px 0;
}

textarea {
  width: 90%;
  resize: none;
  padding: 15px 30px 80px;
  border: #b0b0b0 solid 1px;
  color: #999797;
  outline: none;
  margin-top: 20px;
}


.button-send {
  border-radius: 23px;
  background-color: #a3a967; 
  border: #a3a967 solid 1px;
  padding: 8px 20px;
  width:max-content;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

.bg-1-top{
  background: url('./images/content-bg-1-top.png') no-repeat #fdcec6;
  background-position: top center;
  background-size: 100%;
}

.bg-1-bottom{
  background: url('./images/content-bg-1-bottom.png') no-repeat;
  background-position: bottom center;
  background-size: 100%;
}

.bg-2 {
  background: url('./images/content-bg-2.png') no-repeat;
  background-position: top center;
  background-size:100%;
}


.bg-3-top {
  background: url('./images/bg-top-3.png') no-repeat #fdcec6;
  background-position: top center;
  background-size: 100%;
}


.bg-3-bottom {
  background: url('./images/bg-bottom-3.png') no-repeat;
  background-position: bottom center;
  background-size: 100%;
}

.bg-4-top {
  background: url('./images/content-bg-4-top.png') no-repeat #ececf0;
  background-position: top center;
  background-size: 100%;
  min-height: 100%;
}

.bg-4-bottom {
  background: url('./images/content-bg-4-bottom.png') no-repeat;
  background-position: bottom center;
  background-size: 100%;
  min-height: 100%;
}


/*FOOTER*/

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #424242;
  color: #fff;
}

.footer-container {
  display: flex;
  gap:18%;
}

footer li {
  list-style: none;
  padding: 5px 0;

}

footer .title {
  font-weight: bold;
  font-weight: 700;
  font-family: "Unna";
  color: #fff;
  text-align: left;
  padding-bottom: 15px;

}

footer a {
  color: #fff;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 40px;
  height: 60px;
  align-items: center;
  margin-left: auto;
}


.psd-link {
  text-align: center;
}

@media screen and (max-width:1920px) {
  
  body {
    font-size: 25px;
  }
  
  header {
    height: 100vh;
    width: 100%;
    background: url('./images/header-bg.png') no-repeat;
    background-position: top center;
    background-size:cover;
  }

  header ul {
    padding: 20px;
    
  }

  header li {
    font-size: 20px;
  }

  .logo {
    font-size: 28px;
  }

  .header-content {
    width: 42rem; 
    padding: 240px 80px 15px 170px;
}

h1 {
  font-size: 100px;
}

h2 {
  font-size: 64px;
}

.header-buttons {
  width: 90%;
  padding: 0px 0px 20px 170px;
}

.name-of-bouquet {
  padding: 7px 0 15px;
  font-size: 25px;

}

.button-pink,
  .button-read-more,
  .button-read-more-1,
  .button-send { 
    border-radius: 23px;
    padding: 10px 20px;
    font-size: 22px;
  }


.read-more {
  font-size: 22px;
}


.discount h2 {
  font-size: 64px;
  width: 20rem;
  padding: 10px 0 20px 0;
}

h3, .discount h3 {
  font-size: 64px;
}

.section {
  padding: 80px 100px;
}

.title {
  font-size: 35px;
}

.subscription{
  padding-top: 520px;
  width: 60%;
}

.portfolio {
  width: 50%;
  height: 50%;
}

.complect {

gap: 40px;
}

.complect-content {
  width: 30rem;
  margin: 110px auto 20px;

}

.complect-content-1 {
  width: 30rem;
  margin: 110px 10px 400px 20px;
}

legend {
  width: 30rem;
}

input, textarea {
  font-size: 22px;
  width: 40rem;
}

footer {
padding: 90px 100px 50px 70px;
}

footer .title {
font-size: 45px;
}

footer li {
  font-size: 22px;
}
}




@media screen and (max-width:1440px){
  
body {
  font-size: 18px;
}

  header {
    height: 100vh;
    width: 100%;
    background: url('./images/header-bg.png') no-repeat;
    background-position: top center;
    background-size:cover;
  }

  header ul {
    padding: 15px;
    
  }


  header li {
    font-size: 16px;
    
  }

  .logo {
    font-size: 25px;
  }

  .header-content {
      width: 35rem; 
      padding: 110px 80px 5px 120px;
  }

  h1 {
    font-size: 85px;
  }

  h2 {
    font-size: 54px;
  }

  .header-buttons {
    width: 100%;
    padding: 0px 0px 10px 120px;
  }


  .button-pink,
  .button-read-more,
  .button-read-more-1,
  .button-send { 
    border-radius: 23px;
    padding: 7px 15px;
    font-size: 16px;
  }
  
  .read-more{
    font-size: 18px;
  }

  .name-of-bouquet {
    padding-top: 15px;
    font-size: 18px;
  }

  h3, .discount h3 {
    font-size: 50px;
  }

  .discount h2 {
    font-size: 45px;
    width: 15rem;
    padding: 10px 0 20px 0;
  }

  .section {
    padding: 80px 100px;
  }

  .title {
    font-size: 25px;
  }

  .subscription{
    padding-top: 400px;
    width: 60%;
  }

  .portfolio {
    width: 50%;
    height: 50%;
  }

  .complect {

  gap: 40px;
  }

  .complect-content {
    width: 25rem;
    margin: 110px auto 20px;

  }

  .complect-content-1 {
    width: 25rem;
    margin: 110px 10px 150px 20px;
  }

  legend {
    width: 30rem;
  }

  input, textarea {
    font-size: 18px;
    width: 30rem;
  }

  footer {
  padding: 90px 100px 50px 70px;
  }

  footer .title {
  font-size: 30px;
  }

  footer li {
    font-size: 18px;
  }

}



@media screen and (max-width:1024px) {
  body {
    font-size: 15px; }
  
  
  header {
    background: url('./images/header-bg-small.png') no-repeat;
    background-size: 100%;
    background-position: top right;
    height: 100%;
  }

  header ul {
    padding: 10px;
    width: 95%;
  }

  header li {
    font-size: 13px;
  }

  .logo {
    font-size: 15px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 40px;
  }

  .header-content{
    width: 22rem;
    padding: 160px 40px 15px;
  }

  .header-buttons {
    width: 90%;
    padding:0 37px 15px;
  }

  .button-pink,
  .button-read-more,
  .button-read-more-1,
  .button-send { 
    border-radius: 23px;
    padding: 5px 10px;
    font-size: 14px;
  }

  .read-more {
    font-size: 14px;
    
  }

  .name-of-bouquet {
    padding: 10px 0 0;
  }

  h3 {
    font-size: 40px;
  }

  .discount {
    background-size: cover;
    text-align: center;
  }

  .discount h2 {
    width: 80%;
    font-size: 40px;
    padding: 0px 0 10px;
    
  }
  
  .discount h3 {
    width: 80%;
    font-size: 40px;
    padding: 10px 0 5px;
  }

  .products-container{
    flex-wrap: wrap;
  }

  .product {
    width: 20rem;
  }

  .caption {
    width: 22rem;
  }

  .section {
    width: 100%;
    padding: 45px 60px;
    min-height: auto;
  }

  .complect {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8%;
    justify-content: center;
  }

  .portfolio {
    max-width: 400px;
  }


  .complect-content {
    width: 23rem;
    margin: 110px auto 20px;

  }

  .complect-content-1 {
    width: 23rem;
    margin: 110px 10px 20px;
  }

  

  .video {
    width: 70%;
  }

  .subscription {
    width: 70%;
    padding-top: 280px;
  }

  legend {
    font-size: 40px;
    width: 22rem;
  }

  input {
    padding: 10px 20px;
    margin-top: 10px;
    width: 20rem;
  }

  textarea {
    padding: 10px 20px 40px;
    margin: 10px 0 15px;
    width: 20rem;
  }

  footer {
    padding: 20px;
  }

  footer ul {
    padding: 5px;
  }

  footer a {
    font-size: 14px;
  }

  footer .title {
    font-size: 18px;
  }

  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width:576px){
  
  body {
    font-size: 12px; }
  
  
  header {
    background: url('./images/header-bg-small.png') no-repeat;
    background-size: cover;
    background-position: top left;
    height: fit-content;
  }

  nav ul {
    flex-direction: column;
    border: none;
    background: none;
    margin: 8px;
  }

  nav li {
  padding: 10px;
  margin: 5px 0;
  }

  nav li a {
    color: #303030;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 25px;
  }

  .header-content {
    width: 18rem; 
    padding: 20px;
    margin-right: auto;
  }

  .header-buttons {
    width: 90%;
    padding:0 17px 15px;
  }
  
  .read-more {
    font-size: 12px;
    
  }
  
  .button-pink,
  .button-read-more,
  .button-read-more-1,
  .button-send { 
    border-radius: 23px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .name-of-bouquet{
    display: none;
  }

  .discount {
    background-size: cover;
    text-align: center;
  }

  .discount h2 {
    color: #fff;
    width: 80%;
    font-size: 25px;
    padding: 0px 0 10px;
    
  }
  
  .discount h3 {
    color: #fff;
    width: 80%;
    text-transform: none;
    font-size: 25px;
    padding: 10px 0 5px;
  }

  .section {
    width: 100%;
    padding: 25px;
    min-height: auto;
  }

  .caption {
    width: 15rem;
  }

  .products-container {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;

  }

  .product {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
  }

  .title {
    font-size: 19px;
  }

  
  .complect {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8%;
    justify-content: center;
  }

  .portfolio {
    max-width: 500px;
  }

  .complect-content {
    width: 15rem;
    margin: 10px;
  }

  .complect-content-1 {
    width: 15rem;
    margin: 95px 10px;
  }

  .bg-2 {
    background: url('./images/content-bg-2-small.png') no-repeat;
    background-size: cover;
    background-position: top left;
    
  }

  .video {
    width: 90%;
  }

  .subscription {
    margin: 0px auto;
    padding: 65px 0;
    width: 100%;
  }

  legend {
    font-size: 25px;
    width: 15rem;
  }

  input {
    font-size: 12px;
    padding: 10px 20px;
    margin-top: 10px;
    width: 90%;
  }

  textarea {
    font-size: 12px;
    padding: 10px 20px 40px;
    margin: 10px 0 15px;
    width: 90%;
  }

  footer {
    padding: 20px;
    font-size: 10px;
    
  }

  footer ul {
    padding: 5px;
  }

  footer .title {
    font-size: 17px;
    text-align: center;
  }

  footer li {
    text-align: center;
  }

  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links{
    padding: 20px 10px 0 0;
  }

}