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

body {
  font-family: "Lato", sans-serif;
  color: #27272799;
  font-size: 18px;
  font-weight: 400;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  color: #272727;
}

/* Some elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.primary-btn {
  background-color: #e55473;
  color: #ffffff;
  padding: 20px 43px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background-color: transparent;
  color: #e55473;
  border-color: #e55473;
}

.section-title {
  width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
}

.section-title p {
  color: #27272799;
}

/* Header */
header {
  height: 100vh;
  max-height: 850px;
  background-color: #e554731a;
}

.banner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.banner-text,
.banner-img {
  flex-basis: 50%;
}

.banner-text {
  flex-basis: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding-left: 30px;
}

.banner-text h1 {
  font-size: 65px;
}

.banner-text p {
  padding-right: 65px;
}

.banner-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 50px;
}

.banner-img img {
  width: 400px;
}

/* Featured */
section#feature {
  padding: 170px 0 120px;
}

.feature-flower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  text-align: center;
  margin-top: 50px;
}

.feature-item {
  flex-basis: 33%;
}

.flower-img {
  height: 450px;
  padding: 110px 75px 0;
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
  border-radius: 300px 300px 0 0;
}

.feature-item p {
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  color: #272727;
  text-decoration-line: underline;
}

.flower-img.one {
  background-color: #a7216226;
}

.flower-img.two {
  background-color: #0597a026;
  padding-bottom: 50px;
}

.flower-img.three {
  background-color: #477d1126;
}

.feature-item p a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
  color: #272727;
  display: inline-block;
  padding-top: 32px;
}

/* Service */
section#service-container {
  padding-bottom: 125px;
}

.service-area {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  background-color: #2727270d;
  padding: 85px 40px;
  border-radius: 8px;
  gap: 40px;
}

.service-item img {
  margin-bottom: 15px;
}

.service-item p,
.service-item figcaption {
  font-size: 18px;
  color: #272727;
}
section#hot-deal {
  background-color: #e554730d;
  border-radius: 8px;
  padding: 100px 0px;
}

.deal-content {
  display: flex;
  align-items: center;
  text-align: center;
}

.deal-description {
  flex-basis: 55%;
  padding-left: 100px;
}

.deal-description h2 {
  font-size: 35px;
  margin-bottom: 25px;
}

.deal-description h2 span {
  color: #e55473;
}

.deal-description p {
  padding: 25px 0 30px;
}

.deal-img {
  flex-basis: 45%;
  display: flex;
  justify-content: center;
}

/* instagram */
section#instagram {
  padding: 120px 0 150px;
}

.instagram-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
  text-align: center;
}
.instagram-post img {
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transition: 0.3s;
}
.instagram-post img:hover {
  transform: scale(1.05);
}
/* Subscribe */
section#subscribe {
  padding-bottom: 120px;
}
.subscription-detail {
  background: url(images/Rectangle\ 9.png) center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.subscription-detail h2 {
  font-size: 35px;
}
.subscription-detail p {
  margin: 15px 0 40px;
  max-width: 600px;
  color: #27272799;
}
.subscription-detail form {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}
.subscription-detail form input[type="email"] {
  padding: 20px 25px;
  font-size: 18px;
  border: 2px solid #e55473;
  border-radius: 8px;
  width: 700px;
}
.subscription-detail form input[type="email"]::placeholder {
  color: #27272799;
}
.subscription-detail form input[type="email"]:focus {
  outline: none;
  border-color: #272727;
}
.subscription-detail form input[type="button"] {
  cursor: pointer;
}

/* Footer */
footer {
    background-color: #111010;
    text-align: center;
    padding: 125px 0;
    margin-top: 100px;
}

.footer-content {
    width: 625px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-content h2 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.footer-content h2 span {
    color: #E55473;
}

.footer-content p {
    color: #FFFFFFE5;
}

.footer-content p.copy-right {
    font-size: 16px;
    margin-top: 32px;
    color: #FFFFFF66;
}