@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-around;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  width: 100%;
  height: auto;
  max-width: 800px; /* Optional: limits the size to which the SVG can grow */
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 31px;
}
header nav ul li {
  list-style-type: none;
  position: relative;
  padding: 0;
}
header nav ul li a {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #292f36;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
header nav ul li a:hover::after, header nav ul li a:focus::after {
  transform: scaleX(1);
}

.hero-section {
  background: url("./Assets/Picture1.jpg") no-repeat center center;
  background-size: cover;
  height: 94.2vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-left: 10%;
  position: relative;
  color: white;
  border-bottom-left-radius: 25%;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-bottom-left-radius: 25%;
}
.hero-section .hero-content {
  max-width: 600px;
  z-index: 2;
  padding: 2rem;
}
.hero-section .hero-content h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(41, 47, 54, 0.5);
  position: relative;
  display: inline-block;
}
.hero-section .hero-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.hero-section .hero-content h1:hover::after, .hero-section .hero-content h1:focus::after {
  transform: scaleX(1);
}
.hero-section .hero-content p {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(41, 47, 54, 0.5);
}
.hero-section .hero-content .btn-get-started {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #292f36;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-content .btn-get-started .arrow {
  color: #cda274;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.hero-section .hero-content .btn-get-started:hover {
  background-color: #131619;
}
.hero-section .hero-content .btn-get-started:hover .arrow {
  transform: translateX(5px);
}

.stylish-living-section {
  display: flex;
  height: 100vh;
  color: #292f36;
}
.stylish-living-section .content {
  flex-basis: 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.stylish-living-section .content h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: inline-block;
}
.stylish-living-section .content h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.stylish-living-section .content h1:hover::after, .stylish-living-section .content h1:focus::after {
  transform: scaleX(1);
}
.stylish-living-section .content p {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.stylish-living-section .content .contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.stylish-living-section .content .contact-info .phone-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
  background-color: #f4f0ec;
  color: #cda274;
  padding: 1rem;
  border-radius: 50%;
  font-weight: 100;
}
.stylish-living-section .content .contact-info .phone-number {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.stylish-living-section .content .btn-get-estimate {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #292f36;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stylish-living-section .content .btn-get-estimate .arrow {
  color: #cda274;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.stylish-living-section .content .btn-get-estimate:hover {
  background-color: #131619;
}
.stylish-living-section .content .btn-get-estimate:hover .arrow {
  transform: translateX(5px);
}
.stylish-living-section .image-container {
  flex-basis: 50%;
  background: url("./Assets/Picture2.jpg") no-repeat center center/cover;
  border-top-right-radius: 25vh;
  border-bottom-left-radius: 25vh;
  overflow: hidden;
  position: relative;
}

.why-choose-us-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 2rem;
  text-align: center;
  background-color: #f8f8f8;
}
.why-choose-us-section .section-title {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  color: #292f36;
  margin-top: 0;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}
.why-choose-us-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.why-choose-us-section .section-title:hover::after, .why-choose-us-section .section-title:focus::after {
  transform: scaleX(1);
}
.why-choose-us-section .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  justify-content: center;
}
.why-choose-us-section .cards .card {
  width: 30%;
  background: #ffffff;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-choose-us-section .cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.why-choose-us-section .cards .card h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: #292f36;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.why-choose-us-section .cards .card h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.why-choose-us-section .cards .card h3:hover::after, .why-choose-us-section .cards .card h3:focus::after {
  transform: scaleX(1);
}
.why-choose-us-section .cards .card h3 i {
  color: #cda274;
  padding: 1rem;
}
.why-choose-us-section .cards .card p {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #292f36;
  margin-bottom: 2rem;
}
.why-choose-us-section .cards .card a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #292f36;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.why-choose-us-section .cards .card a:hover {
  color: black;
}
@media (max-width: 991px) {
  .why-choose-us-section .cards .card {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .why-choose-us-section .cards .card {
    width: 100%;
  }
}

.what-we-buy-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f4f0ec;
  padding: 2rem;
  text-align: center;
}
.what-we-buy-section .section-title {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  color: #292f36;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.what-we-buy-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.what-we-buy-section .section-title:hover::after, .what-we-buy-section .section-title:focus::after {
  transform: scaleX(1);
}
.what-we-buy-section .item-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* This will center all items */
  gap: 2rem;
  padding: 10px;
  width: 100%;
  max-width: 1200px;
}
.what-we-buy-section .item-list li {
  flex: 1 1 250px; /* Flex items with a basis of 250px, but allow them to grow */
  max-width: 250px; /* Ensuring items do not grow beyond 250px */
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #292f36;
  color: #cda274;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.what-we-buy-section .item-list li:hover {
  transform: translateY(-5px);
  background-color: #131619;
}
.what-we-buy-section .item-list li i {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.what-we-buy-section .item-list li h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.what-we-buy-section .item-list li h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.what-we-buy-section .item-list li h3:hover::after, .what-we-buy-section .item-list li h3:focus::after {
  transform: scaleX(1);
}
.what-we-buy-section .item-list li p {
  color: #f4f0ec;
}

.contact-us-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 4rem;
  color: #292f36;
}
.contact-us-section .section-heading {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
.contact-us-section .section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #cda274;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}
.contact-us-section .section-heading:hover::after, .contact-us-section .section-heading:focus::after {
  transform: scaleX(1);
}
.contact-us-section .contact-info {
  flex-basis: 50%;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}
.contact-us-section .contact-info h2 {
  text-align: center;
}
.contact-us-section .contact-info .contact-details {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  background-color: #f4f0ec;
}
.contact-us-section .contact-info .contact-details p {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 1rem 0;
}
.contact-us-section .contact-info .contact-details p i {
  margin-right: 0.5rem;
  background-color: white;
  padding: 0.5rem;
  border-radius: 50%;
}
.contact-us-section .contact-info .contact-details .social-icons {
  display: flex;
  justify-content: space-around;
}
.contact-us-section .contact-info .contact-details .social-icons i {
  font-size: 1.5rem;
  margin: 0.5rem;
  transition: color 0.3s ease;
}
.contact-us-section .contact-info .contact-details .social-icons i:hover {
  color: #cda274;
}
.contact-us-section .contact-form {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-us-section .contact-form input,
.contact-us-section .contact-form textarea {
  border: none;
  border-bottom: 2px solid #292f36;
  background-color: transparent;
  padding: 0.5rem 0;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.contact-us-section .contact-form input::-moz-placeholder, .contact-us-section .contact-form textarea::-moz-placeholder {
  color: #292f36;
}
.contact-us-section .contact-form input::placeholder,
.contact-us-section .contact-form textarea::placeholder {
  color: #292f36;
}
.contact-us-section .contact-form input:hover, .contact-us-section .contact-form input:focus,
.contact-us-section .contact-form textarea:hover,
.contact-us-section .contact-form textarea:focus {
  border-bottom-color: #cda274;
  outline: none;
}
.contact-us-section .contact-form textarea {
  resize: none;
}
.contact-us-section .contact-form button {
  padding: 1rem 2rem;
  background-color: #292f36;
  color: #f4f0ec;
  border: none;
  border-radius: 2rem;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-us-section .contact-form button .arrow {
  color: #cda274;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.contact-us-section .contact-form button:hover {
  background-color: #131619;
}
.contact-us-section .contact-form button:hover .arrow {
  transform: translateX(5px);
}
.contact-us-section .divider {
  height: 1px;
  background-color: #d8cabc;
  margin: 2rem 0;
}
.contact-us-section .footer {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem 0;
}

.hidden {
  opacity: 0;
  transform: translateY(20px); /* Elements move up slightly */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0px); /* Elements settle into their natural position */
}

/* Extra small devices (phones, 320px to 479px) */
@media (min-width: 320px) and (max-width: 479px) {
  h1,
  h2,
  h3,
  p,
  a {
    font-size: calc(100% + 0.2vw); /* Slightly increase font size as the screen grows */
  }
  header nav ul {
    gap: 5px;
  }
  .hero-section,
  .stylish-living-section,
  .why-choose-us-section,
  .what-we-buy-section,
  .contact-us-section {
    padding: 10px; /* Adjust padding for smaller screens */
    margin-bottom: 200px; /* Additional bottom margin to prevent overlap */
  }
  .why-choose-us-section,
  .what-we-buy-section {
    margin-bottom: 350px;
  }
  .what-we-buy-section {
    height: -moz-fit-content;
    height: fit-content;
  }
  .hero-content,
  .content,
  .cards,
  .contact-info,
  .contact-form {
    flex-direction: column; /* Stack elements vertically */
  }
  .btn-get-started,
  .btn-get-estimate {
    padding: 0.8rem 1.6rem; /* Adjust button padding */
  }
}
/* Small devices (phones, 480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .hero-section,
  .stylish-living-section,
  .why-choose-us-section,
  .what-we-buy-section,
  .contact-us-section {
    padding: 15px; /* Slightly more padding */
    margin-bottom: 150px; /* Increase bottom margin to prevent overlap */
  }
  .what-we-buy-section {
    height: -moz-fit-content;
    height: fit-content;
  }
}
/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 2.5rem; /* Larger font size for tablets */
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
  .cards .card {
    width: 48%; /* Two cards per row, suitable for tablets */
  }
  .hero-section,
  .stylish-living-section,
  .why-choose-us-section,
  .what-we-buy-section,
  .contact-us-section {
    padding: 20px; /* More padding */
    margin-bottom: 100px; /* Increased bottom margin for clear animation visibility */
  }
  .what-we-buy-section {
    height: -moz-fit-content;
    height: fit-content;
  }
}
/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section,
  .stylish-living-section,
  .why-choose-us-section,
  .what-we-buy-section,
  .contact-us-section {
    padding: 20px 40px; /* Adequate padding for desktops */
    margin-bottom: 50px; /* Larger bottom margin to accommodate animations */
  }
  .cards .card {
    width: 30%; /* Three cards per row */
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content,
  .content,
  .cards,
  .contact-info,
  .contact-form {
    flex-direction: row; /* Horizontal layout for larger screens */
    justify-content: space-between; /* Space out elements effectively */
  }
  .hero-section,
  .stylish-living-section,
  .why-choose-us-section,
  .what-we-buy-section,
  .contact-us-section {
    padding: 50px; /* Generous padding for very large screens */
    margin-bottom: 60px; /* Maximize bottom margin for clear animations */
  }
}/*# sourceMappingURL=style.css.map */