* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.text-white {
  color: white;
  background-color: white;
  width: 100%;
  margin: 20px 10px;
  opacity: 0.3;
}

.title-common {
  margin: 10px 0;
  font-size: 50px;
}

.Cormorant-Garamond-font {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1px;
}

.Josefin-Sans-font {
  font-family: "Josefin Sans", sans-serif;
}

body,
html {
  height: 100%;
}

.landing-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: white;
}


.logo img {

  height: 70px;

  cursor: pointer;

}

.custom-footer-header {
    display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 25px;
}

.custom-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 25px;

  position: absolute;

  width: 100%;

  background: transparent;

  z-index: 1;

}

.custom-logo {

  width: 200px;
cursor: pointer;
margin-bottom: 30px;
}



.custom-nav {

  display: flex;

  gap: 60px;

  align-items: center;

}

.contact-us {

  font-weight: 500;

  cursor: pointer;

}



.home {

  font-weight: 200;

  opacity: 0.7;

  cursor: pointer;

}



.custom-nav-link {

  text-decoration: none;

  color: #fff;

  font-size: 16px;

}



.contact-us-button {

  padding: 10px 10px;

  border: 1px solid #fff;

}



.mobile-menu-icon {

  display: none;

}



@media (max-width: 768px) {

  .custom-header {

    justify-content: space-between;

  }



  .custom-hero-content {

    padding: 20px;

    margin-left: 20px;

  }



  .common-title {

    letter-spacing: 2px;

    font-size: 40px;

  }



  .custom-nav {

    display: none;

    flex-direction: column;

    gap: 42px;

    background-color: rgba(0, 0, 0, 0.8);

    position: absolute;

    top: 100px;

    right: 20px;

    padding: 20px;

  }



  .mobile-menu-icon {

    display: block;

    cursor: pointer;

  }



  .custom-title {

    font-size: 32px;

  }



  .hero-text{

    z-index: 0 !important;

  }

}



.menu-icon {

  width: 30px;

  height: 2px;

  background: white;

  position: relative;

}



.menu-icon::before,

.menu-icon::after {

  content: "";

  width: 30px;

  height: 2px;

  background: white;

  position: absolute;

  left: 0;

}



.menu-icon::before {

  top: -8px;

}



.menu-icon::after {

  top: 8px;

}

.hero {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.501) 41%,
    rgba(255, 91, 69, 0) 55%,
    rgba(0, 0, 0, 0) 79%
  );
}

.hero .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 20px;
  margin-bottom: 66px;
}

.arrow-title {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.arrow-title-text {
  font-size: 25px !important;
}
.hero-text p:first-of-type {
  font-size: 24px;
  letter-spacing: 3px;
}

.hero-text h1 {
  margin: 10px 0;
  font-size: 60px;
}

.hero-text p:last-of-type {
  font-size: 14px;
  word-spacing: 2px;
}

.explore-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  color: white;
  border: 1px solid white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .landing-page {
    height: auto;
  }
  .arrow-title {
    gap: 10px;
  }
  .arrow-image {
    width: 30%;
    height: auto;
  }
  .nav-links {
    display: none;
  }
  .categories-logo {
    font-size: 28px !important;
  }
  .grid-title {
    font-size: 28px !important;
    padding: 15px 0 !important;
    margin: 10px 0 !important;
  }

  .hero-text {
    max-width: 90%;
    margin-bottom: 50px;
    margin-top: 250px;
  }

  .hero-text p:first-of-type {
    font-size: 16px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p:last-of-type {
    font-size: 12px;
  }
  .hero {
    height: auto;
  }
}

/* section 2 css */

.section2-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #f8e7d1;
  position: relative;
}

.section2-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/Isolation_Mode.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.image-left-1 {
  flex: 1;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.image-right-2 {
  flex: 1;
  padding: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.image-left-1 img {
  width: 70%;
  height: auto;
  padding-bottom: 100px;
  padding-top: 20px;
}

.image-right-2 img {
  width: 70%;
  height: auto;
}
.content {
  flex: 2;
  text-align: center;
  padding: 10px;
  margin-top: 80px;
}

.section-2-title {
  margin: 0.5em 0;
}

.section-2-subtitle {
  font-size: 1.5em;
  margin: 0;
}

.section-2-paragraph {
  font-size: 1.2em;
  margin: 0.5em 0;
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  .section2-container {
    display: flex;
    flex-direction: column;
  }
  .content {
    margin: 20px 0;
  }

  .image-left-1 img .image-right-2 img {
    width: 52%;
  }

  .image-left-1 img {
    padding-top: 30px;
    padding-bottom: 5px;
  }

  .image-left-1 {
    width: 100%;
    padding: 0;
  }
  .image-right-2 {
    width: 100%;
    padding: 0;
  }

  .section-2-title {
    font-size: 1.5em;
  }

  .section-2-subtitle {
    font-size: 1.2em;
  }

  .section-2-paragraph {
    font-size: 0.8em;
  }
}

/* section 3 css */
.categories-section {
  margin: 0 auto;
  text-align: center;
  color: white;
  background-color: #1b0606;
}
.category-title-main {
  padding-top: 30px;
}
.categories-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.categories-logo {
  margin-bottom: -25px;
  font-size: 60px;
}

.categories-main {
  display: flex;
  margin: 20px 0;
  padding: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.category-item {
  flex: 0 0 25%;
  max-width: 25%;
  margin: 0;
  position: relative;
}

.category-image {
  width: 100%;
  display: block;
}

.category-img {
  height: auto;
  width: 35px;
}

.category-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 51px;
  align-items: center;
}

.category-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Cormorant Garamond", serif;
}

.categories-footer {
  margin-top: 20px;
  padding-bottom: 30px;
}

.explore-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
}

@media (max-width: 480px) {
  .category-item {
    flex: 0 0 50%; /* Two items per row on mobile devices */
    max-width: 50%;
  }

  /* Show the category text for all items on mobile devices */
  .categories-main .category-text {
    gap: 14px;
  }
}

/* section -grid */
.grid-section {
  background-color: #ffeed0;
  color: #170809;
  padding: 20px 0 0 0;
}

.grid-title {
  padding: 30px 0;
  margin: 10px 0;
  font-size: 60px;
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 200px;
}
.grid-item img {
  width: 100%;
  height: auto;
}
.image-grid {
  width: 400px;
  height: 500px;
}
.grid-item {
  margin-bottom: 10px;
}
.caption {
  margin: 10px 0 0;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
}
.section-2button-container {
  text-align: center;
  padding: 20px 0 50px 0;
  font-family: "Josefin Sans", sans-serif;
}
.section-2-explore-button {
  border: 1px solid #170809;
  padding: 10px 20px;
  text-decoration: none;
  color: #170809;
}

@media (max-width: 480px) {
  .grid {
    padding: 0 30px;
  }
  .image-grid {
    height: 200px;
    width: 150px;
  }
  .arrow-title-text {
    font-size: 14px !important;
    letter-spacing: 1px;
  }
}

/* footer section */

.custom-footer-bg {
  background: url("../assets/images/footer-home.png") no-repeat center center
    fixed;
  background-size: cover;
  color: white;
  padding: 40px 0;
}

.custom-footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.custom-header .custom-logo {
  width: 150px;
  margin-bottom: 35px;
}

.custom-main-content .custom-description {
  max-width: 546px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.custom-social-media .custom-social-link img {
  width: 40px;
  margin: 20px 10px;
}

.custom-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 86px;
}

.custom-footer .custom-nav-footer {
  margin-bottom: 10px;
}

.custom-footer .custom-nav-link {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .custom-main-content .custom-description {
    max-width: 100%;
    text-align: center;
    padding: 0 30px;
  }
  .custom-header .custom-logo {
    width: 80px;
    margin-bottom: 15px;
  }

  .custom-social-media .custom-social-link img {
    width: 30px;
    margin: 20px 5px;
  }
  .custom-nav-footer {
    display: flex;
    flex-direction: column;
  }
  .custom-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .custom-footer .custom-nav-link {
    margin: 20px 10px;
  }

  .custom-logo {
     width: 130px;
     cursor: pointer;
     margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  .category-title {
    font-size: 14px !important;
  }
  .category-text {
    padding: 5px;
  }
  .image-grid {
    height: 150px;
    width: 130px;
  }
  .categories-main .category-text {
    gap: 20px;
  }
  .category-img {
    height: auto;
    width: 30px;
  }
}

