/* COLORS: Adjust these variables to match your brand */
:root {
  --header-text: #7b5a5a;   /* Main text color */
  --button-color: #faa;     /* Button background */
  --button-hover: #b17c7c;  /* Hover background */
}

* {
  box-sizing: border-box;

}

body {
  margin: 0;
  padding: 0;
  background-color: #FFF7F3;
}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
}
/* BACKGROUND IMAGE: Replace with your own image './images/YOUR_BACKGROUND_IMAGE.jpg'. Your can name it the same and replace in the image folder */ 
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/background.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1);
}


.hero__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  background-color: rgba(255, 240, 245, 0.2); 
  padding: 30px 30px;
  border-radius: 10px;
  opacity: 0; /* for GSAP fade */
  color: var(--header-text);
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.form__btn {
  text-decoration: none;
  background-color:  var(--button-color);
  color: #644848;
  font-weight: 600;
  padding: 15px 25px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  border: none;
}

.form__btn:hover {
  background-color: var(--button-hover);
  color: #fff;
  transition: background-color 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 30px;
}

.nav__list {
  list-style-type: none;
}

.nav_item {
  text-decoration: none;
  color:  rgb(134, 132, 132);
}

.nav_item.active {
  font-weight: bold;
  color: #b08989;
  opacity: 0.8;
  pointer-events: none;
}

.nav {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 10;
}

.nav__menu {
  display: flex;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_item {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #7b5a5a;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav_item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 100%;
  background-color: var(--button-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav_item:hover {
  color: #b08989;
}

.nav_item:hover::after {
  transform: scaleX(1);
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  animation: fadeSlideUp 1.2s ease-out forwards;
  opacity: 0;
}

/* gallery section */
.gallery-section {
  padding: 80px 20px;
  background-color: #fffaf7;
  text-align: center;
}


.gallery__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--header-text);
  margin-bottom: 10px;
}

.gallery__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #b08989;
  margin-bottom: 40px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.gallery__grid img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  object-position: 25%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* footer */
.footer {
  background-color: #fffaf7;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #f0e2dd;
  font-family: "Poppins", sans-serif;
}

.footer__content p {
  color: #b08989;
  font-size: 0.6rem;
  opacity: 0.6;
  margin-bottom: 10px;
}

.footer__socials a {
  display: inline-block;
  margin: 0 15px;
  color: #b08989;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer__socials a:hover {
  color: var(--header-text);
}

/* back to top button*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--button-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.back-to-top:hover {
  transform: scale(1.1);
  background-color: var(--button-hover);
}

/* order file */
/* BACKGROUND IMAGE: Replace with your own image */
.order-page {
  position: relative;
  background-image: url('./images/background-2.jpg'); /* or your chosen image */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px;
  min-height: 100vh;
  overflow-x: hidden;
}


.order-form-container {
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  background-color: #fffaf7;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 2;
}

.order__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--header-text);
  text-align: center;
  margin-bottom: 10px;
}

.order__subtitle {
  text-align: center;
  font-size: 1rem;
  color: #b08989;
  margin-bottom: 30px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-form label {
  font-weight: 600;
  color: #7b5a5a;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 12px 15px;
  border: 1px solid #e8dccb;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.order-form textarea {
  resize: none;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  border-color: var(--button-color); /* soft pink border */
  background-color: #fffaf7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 169, 167, 0.2); /* gentle glow */
}

.order-form select {
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 9L13 1' stroke='%237b5a5a' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
  border: 1px solid #e8dccb;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #7b5a5a;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: #b08989;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  opacity: 0.7;
}

.order_footer {
  text-align: center;
  color:#7B5A5A;
  position: relative;
  z-index: 2;
}
/* modal*/
/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 250, 247, 0.96);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.modal__img {
  max-width: 90%;
  max-height: 70vh;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal__caption {
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #7b5a5a;
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: #b08989;
  cursor: pointer;
}

.modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.modal__btn {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--button-color);
  color: #7b5a5a;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  transition: background-color 0.3s ease;
}

.modal__btn:hover {
  background-color: var(--button-hover);
  color: #fff;
}

/* Thank You Page */
.thankyou-page {
  position: relative;
  background-color: #fffaf7;
  background-image: url('./images/background-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;

  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-color: rgba(255, 245, 245, 0.75);
  z-index: 0;
}

.thankyou {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: center;
}

.thankyou__header {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #7b5a5a;
  margin-bottom: 20px;
}

.thankyou__text {
  font-size: 1.1rem;
  color: #7e5f5f;
  margin-bottom: 10px;
}

.thankyou__subtext {
  font-size: 0.95rem;
  color: #7b6464;
  margin-bottom: 30px;
}

.thankyou__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.socials a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.6rem;
  color: #7c5d5d;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #ba6c6c;
}

/* Optional variation for pricing button if used separately */
.pdf-guide {
  background-color: #fff2f2;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pricing__btn {
  background-color: var(--button-color);
  color: #7B5A5A;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.pricing__btn:hover {
  background-color: var(--button-hover);
  color: #fff;
}

.pdf-note {
  margin-top: 12px;
  color: #a08383;
  font-size: 0.8rem;
}

.nav__logo {
  color: #7b5a5a;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  font-family: "Playfair Display", serif;
  margin-right: auto;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #7b5a5a;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 100px;
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    display: none;
    border-top: 1px solid #f0e2dd;
    z-index: 10;
    background-color: #fffaf7;
  }

  .nav__menu.show {
    display: flex;
    width: 100%;
    height: 100vh;
  }

  .nav__list {
    text-align: center;
    padding: 15px 0;
  }

  .nav__toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #7b5a5a;
    cursor: pointer;
    z-index: 20;
  }

  .nav__menu.show {
    display: flex;
    height: 100dvh;
  }

  .back_home {
    display: block;
  }
}

/* contact form */
.contact-section {
  background-color: #fffaf7;
  padding: 80px 20px;
  text-align: center;
}

.contact__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--header-text);
  margin-bottom: 10px;
}

.contact__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #b08989;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #e8dccb;
  border-radius: 6px;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--button-color);
  background-color: #fffaf7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 169, 167, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  opacity: 0.5;
}

.btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.btns .form__btn {
  flex: 1;
  text-align: center;
}

/*feature*/

.features__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
  background-color: #fffaf7;
  text-align: center;
  
}

.feature {
  margin-top: 100px;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(255, 170, 170, 0.5);
  border-radius: 23px;
  padding-block: 20px;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 170, 170, 0.35);
  transition: all 0.3s ease;
}

.feature img {
  width: 60px;
  margin-bottom: 20px;
}

.feature h3 {
  font-family: "Playfair Display", serif;
  color: var(--header-text);
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature p {
  font-family: "Poppins", sans-serif;
  color: #7b5a5a;
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width:768px) {
  .features__grid {
    flex-direction: column;
    gap: 10px;
  }
}

/* testimonials*/
.testimonials {
  padding: 80px 20px;
  background-color: #fff7f3;
  text-align: center;
}

.testimonials__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--header-text);
  margin-bottom: 40px;
}

.testimonials__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial {
  background: #fffaf7;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(255, 170, 170, 0.25);
}

.testimonial__text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #7b5a5a;
  margin-bottom: 15px;
  line-height: 1.5;
}

.testimonial__author {
  font-weight: 600;
  color: #a27575;
  font-size: 0.85rem;
}

/*info block*/
.info-block {
  display: flex;
  justify-content: center;
  gap: 50px;
  background-color: #fff2f2;
  padding: 40px 20px;
  text-align: center;
  flex-wrap: wrap;
  border-top: 1px solid #f0e2dd;
}

.info-item {
  font-family: "Poppins", sans-serif;
  color: #7b5a5a;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--button-color);
}

@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
  }
}