:root {
  --primary: #A48D78;
  --secondary: #CBB9A4;
  --light: #E6DAC8;
  --bg: #F4F1EA;
  --white: #FAF9F6;
  --text: #3a332c;
}

/* GLOBAL */
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;

  /* image + soft overlay 
  background:
    linear-gradient(
      135deg,
      rgba(230, 218, 200, 0.65),
      rgba(203, 185, 164, 0.65)
    ),
    url("images/wovenHero.webp");*/

  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-color: #E6DAC8;

  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;

  overflow: hidden;
}

.logo {
  width: 200px;
  height: auto;
}

h1 {
  font-family: "Cinzel Decorative", cursive;
  font-weight: 400 ;
  font-size: 42px;
  text-align: center;
}

.hero p {
  margin-top: 0;
  font-size: 25px;
}

h2 {
  font-family: "Cinzel Decorative", cursive;
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 1px;
  text-align: center;
}

h3 {
  font-family: "Cinzel Decorative", cursive;
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* SECTIONS */
section {
  padding: 20px;
  max-width: 1000px;
  margin: 40px auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 across on desktop */
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: #E6DAC8;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  margin-bottom: 0;
}

.process-note {
  margin-top: 25px;
  font-style: italic;
  opacity: 0.8;
}


/* WHY CHOOSE ME */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.features h2 {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.feature-card {
  padding: 30px 24px;
  border-radius: 22px;
  background: #E6DAC8;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(164, 141, 120, 0.12);
  transition: all 0.25s ease;

  height: auto;         
  box-sizing: border-box;
  overflow: hidden;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  margin-bottom: 0;
}

/* PRICING */
.pricing {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.price-card {
  background: #E6DAC8;
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(164, 141, 120, 0.12);
  transition: 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card h3 {
  margin-bottom: 8px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card ul li {
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(164, 141, 120, 0.15);
}

.price-card ul li:last-child {
  border-bottom: none;
}

.tag {
  margin-top: 15px;
  font-style: italic;
  opacity: 0.8;
}

/* FEATURED CARD */
.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}

/* ADD ONS */
.pricing-addons {
  margin-top: 40px;
  padding: 25px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.pricing-addons ul {
  list-style: none;
  padding: 0;
}

.pricing-addons li {
  padding: 6px 0;
  font-size: 15px;
}


/* SERVICE INFO SECTION */
.service-info {
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.info-card {
  background: #E6DAC8;
  border-radius: 22px;
  padding: 26px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(164, 141, 120, 0.12);
  transition: 0.25s ease;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* PORTFOLIO CAROUSEL */
.carousel {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: center;
  cursor: grab;
  user-select: none;
  will-change: transform;
  animation: scroll 30s linear infinite;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-track img {
  width: 260px;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.03);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* YOUTUBE */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* CONTACT */
.contact {
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--light);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--light);
  color: var(--text);
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.icon {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: 0.2s ease;
}

.social-btn:hover .icon {
  fill: var(--white);
}

.email-link {
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
}

/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */

@media (max-width: 900px) {

  /* GENERAL SPACING */
  section {
    padding: 18px;
    margin: 25px 15px;
  }

  h1 {
    font-size: 32px;
  }

  .hero {
    padding: 90px 16px;
    border-radius: 0 0 30px 30px;
  }

  .hero p {
    font-size: 18px;
  }

  .logo {
    width: 150px;
  }

  /* TEXT */
  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }

  /* PROCESS → STACK IN 1 COLUMN */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* FEATURES → STACK CLEANLY */
  .features {
    grid-template-columns: 1fr;
  }

  /* PRICING → STACK */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* INFO GRID → STACK */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* CAROUSEL IMAGES */
  .carousel-track img {
    width: 200px;
  }

  /* BUTTONS */
  .btn {
    width: 100%;
    max-width: 280px;
  }

  /* SOCIAL LINKS */
  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  h1 {
    font-size: 28px;
  }

  .hero {
    padding: 70px 14px;
  }

  .carousel-track img {
    width: 170px;
  }

  section {
    border-radius: 18px;
  }
}