/* =========================
   FADE-IN ON SCROLL
========================= */

.fade {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   GLOBAL
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background:
    linear-gradient(
      to bottom,
      #f9f1ea 0%,
      #f6ebe2 100%
    );
  color: #5a3b36;
  overflow-x: hidden;
}

/* Elegant selection */
::selection {
  background: #e6b8b1;
  color: white;
}

/* Soft luxury glow background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(230,184,177,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.45), transparent 35%);
  z-index: -1;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 55px 80px 90px;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

/* LOGO */
.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #5a3b36;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8b5d56;
  position: relative;
  transition: color 0.35s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #d8a49d;
  transition: width 0.35s ease;
}

.menu a:hover {
  color: #5a3b36;
}

.menu a:hover::after {
  width: 100%;
}

/* HERO CONTENT */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/* HERO TEXT */
.hero-text {
  flex: 1;
  max-width: 560px;
}

.hero-text h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 22px;
  color: #5a3b36;
  animation: fadeText 1s ease;
}

.subtext {
  font-size: 15px;
  letter-spacing: 0.6px;
  color: #8b5d56;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      #e6b8b1,
      #dba49b
    );
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow:
    0 12px 28px rgba(219,164,155,0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 35px rgba(219,164,155,0.35);
}

/* HERO IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 470px;
  height: 620px;
  object-fit: cover;

  /* SHARP EDGES */
  border-radius: 0;

  box-shadow:
    0 28px 55px rgba(0,0,0,0.12);

  transition:
    transform 0.7s ease,
    box-shadow 0.7s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow:
    0 35px 70px rgba(0,0,0,0.16);
}

/* =========================
   ABOUT
========================= */

.about {
  display: flex;
  align-items: center;
  gap: 90px;
  padding: 120px 80px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: 620px;
  object-fit: cover;

  /* SHARP EDGES */
  border-radius: 0;

  box-shadow:
    0 24px 55px rgba(0,0,0,0.1);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.about-image img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 70px rgba(0,0,0,0.14);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #5a3b36;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.95;
  color: #7a5b56;
}

/* SIGNATURE */
.signature {
  font-family: 'Great Vibes', cursive;
  font-size: 30px !important;
  margin-top: 40px;
  line-height: 1;
  color: #5a3b36;
}

/* INSTAGRAM BUTTON */
.instagram-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 34px;
  border: 1px solid #dba49b;
  color: #8b5d56;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    all 0.35s ease;
}

.instagram-btn:hover {
  background: #e6b8b1;
  color: white;
  transform: translateY(-2px);
}

/* =========================
   REVIEWS BUTTON SECTION
========================= */

.reviews-button-section {
  text-align: center;
  padding: 20px 80px 80px;
}

.reviews-btn {
  display: inline-block;
  padding: 20px 52px;
  border: 1px solid #dba49b;
  color: #8b5d56;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    all 0.35s ease;

  box-shadow:
    0 12px 28px rgba(219,164,155,0.12);
}
.reviews-btn:hover {
  background: #e6b8b1;
  color: white;
  transform: translateY(-2px);
}

/* =========================
   REVIEWS POPUP
========================= */

.review-popup {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(219,164,155,0.25);
}

.review-popup:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-popup p {
  font-size: 15px;
  line-height: 2;
  color: #7a5b56;
  font-style: italic;
  margin-bottom: 16px;
}

.review-popup span {
  font-family: 'Great Vibes', cursive;
  font-size: 34px;
  color: #8b5d56;
}
/* =========================
   PRICING
========================= */

.pricing {
  text-align: center;
  padding: 120px 80px;
}

.pricing h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 54px;
  margin-bottom: 55px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background:
    rgba(255,255,255,0.78);

  backdrop-filter: blur(10px);

  padding: 38px 32px;
  width: 270px;

  border-radius: 0;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.06);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 45px rgba(0,0,0,0.1);
}

.card h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
  font-size: 22px;
  color: #5a3b36;
}

.card p {
  margin-bottom: 18px;
  color: #8b5d56;
  line-height: 1.7;
}

.card span {
  font-size: 20px;
  font-weight: 600;
}

.pricing-note {
  margin-top: 32px;
  font-size: 14px;
  color: #8b5d56;
}


/* =========================
   PORTFOLIO
========================= */

.portfolio {
  padding: 130px 80px;
  background:
    linear-gradient(
      to bottom,
      #f7ede3 0%,
      #f3e6dc 100%
    );
}

.portfolio h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  text-align: center;
  margin-bottom: 70px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.portfolio-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;

  /* SHARP EDGES */
  border-radius: 0;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease,
    filter 0.6s ease;

  cursor: pointer;
}

.portfolio-grid img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 28px 55px rgba(0,0,0,0.14);
  filter: brightness(1.03);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background-color: #f3e6dc;
  padding: 100px 80px 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 55px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h4 {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.9;
  color: #7a5b56;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #8b5d56;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d8a49d;
}

.footer-contact a {
  text-decoration: none;
  color: #8b5d56;
}

.footer-social a {
  display: inline-block;
  border: 1px solid #dba49b;
  padding: 12px 28px;
  text-decoration: none;
  color: #5a3b36;
  transition:
    all 0.35s ease;
}

.footer-social a:hover {
  background: #e6b8b1;
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 70px;
  font-size: 13px;
  color: #8a6a5a;
}
/* =========================
   FOOTER LINK FIX
========================= */

/* all footer links */
.site-footer a {
  text-decoration: none;
  color: #8b5d56;
  font-size: 14px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

/* hover */
.site-footer a:hover {
  color: #d8a49d;
}

/* footer navigation layout */
.footer-content a {
  display: block;
  margin-bottom: 14px;
}

/* email styling */
.footer-contact a {
  color: #8b5d56;
  text-decoration: none;
}

/* remove blue visited links */
.site-footer a:visited,
.site-footer a:active {
  color: #8b5d56;
}

/* =========================
   MODAL UPGRADE (TERMS + PRIVACY)
========================= */

/* smoother overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(90, 59, 54, 0.55);
  backdrop-filter: blur(6px);
  padding: 20px;
}

/* main popup box */
.modal-content {
  background: #f7ede3;
  color: #5a3b36;
  max-width: 650px;
  max-height: 78vh;
  overflow-y: auto;

  margin: 6% auto;
  padding: 55px 45px;

  border-radius: 0; /* sharp luxury edges */
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);

  position: relative;

  animation: modalPop 0.45s ease;
}

/* heading */
.modal-content h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* underline accent */
.modal-content h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #e6b8b1;
  margin: 16px auto 0;
}

/* text styling */
.modal-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #7a5b56;
  margin-bottom: 18px;
}

/* close button */
.close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  color: #8b5d56;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.close:hover {
  color: #e6b8b1;
  transform: rotate(90deg);
}

/* animation */
@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 600px) {
  .modal-content {
    margin: 18% auto;
    padding: 40px 22px;
    max-height: 72vh;
  }

  .modal-content h3 {
    font-size: 40px;
  }
}
/* =========================
   ANIMATIONS
========================= */

@keyframes softPopup {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeText {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .hero,
  .about,
  .pricing,
  .portfolio,
  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content,
  .about {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .about-text {
    max-width: 100%;
  }

  .hero-image img,
  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .hero {
    padding: 30px 22px 70px;
  }

  .top-bar {
    flex-direction: column;
    gap: 22px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .menu a {
    margin: 0;
    font-size: 11px;
  }

  .hero-content {
    gap: 45px;
  }

  .hero-text h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .subtext {
    font-size: 14px;
  }

  .hero-image img {
    width: 100%;
    height: 470px;
  }

  .about {
    padding: 85px 22px;
    gap: 50px;
  }

  .about-text h3,
  .pricing h3,
  .portfolio h3 {
    font-size: 42px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .signature {
    font-size: 75px;
  }

  .pricing {
    padding: 90px 22px;
  }

  .card {
    width: 100%;
  }
.reviews-button-section {
  padding: 10px 22px 70px;
}
.reviews {
  padding: 90px 22px;
}

.reviews h3 {
  font-size: 42px;
}

.review-card {
  padding: 38px 24px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.9;
}
  .portfolio {
    padding: 90px 22px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-grid img {
    height: 420px;
  }

  .site-footer {
    padding: 80px 22px 35px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .modal-content {
    margin: 18% auto;
    padding: 38px 24px;
    max-height: 72vh;
  }

  .modal-content h3 {
    font-size: 42px;
  }
}
