:root {
  --primary-color: #e3a8a1;
  --primary-color-dark: #cf9088;
  --secondary-color: #f6efe9;
  --accent-color: #f3cbbb;
  --text-color: #333333;
  --muted-color: #6c757d;
  --heading-font: "Playfair Display", serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --border-radius-lg: 1.5rem;
  scroll-padding-top: 18rem;
}

html,
body {
  scroll-behavior: smooth;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: #ffffff;
}

.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand .brand-title {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-link {
  font-weight: 500;
  color: var(--muted-color);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color-dark);
}

nav img{
   height: 96px;
   width: auto;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-dark)
  );
  border-color: var(--primary-color-dark);
  border-radius: 999px;
  padding-inline: 1.75rem;
  padding-block: 0.6rem;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(
    135deg,
    var(--primary-color-dark),
    var(--primary-color)
  );
  border-color: var(--primary-color-dark);
}

.btn-outline-secondary {
  border-radius: 999px;
  padding-inline: 1.75rem;
  padding-block: 0.6rem;
  font-weight: 500;
}

.hero-section {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: radial-gradient(
      circle at top left,
      rgba(243, 203, 187, 0.4),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(227, 168, 161, 0.25),
      transparent 50%
    );
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
  :root{
    scroll-padding-top: 8rem;
  }
}

 

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color-dark);
  background-color: rgba(243, 203, 187, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.hero-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1.1;
}

.hero-title span {
  color: var(--primary-color-dark);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-color);
}

.hero-badges span {
  font-size: 0.9rem;
  color: var(--muted-color);
}
.hero-image-wrapper {
    position: relative;
}
.hero-image-grid {
    position: relative;
    display: grid;
    max-height: 430px;
    height: calc(100vw / 636 * 430);
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    margin: 0 auto;
    overflow: hidden;
}

.hero-image-grid-item {
    width: 100%;
    height: 100%;
    background-image: url('../images/pexels-photo-8534272x.webp');
    background-repeat: no-repeat;
    background-size: 630px, 430px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-image-grid-item.visible {
    opacity: 1;
}



.hero-main-image {
  object-fit: cover;
  max-height: 430px;
  width: 100%;
}

.hero-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: auto;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  max-width: 260px;
  font-size: 0.9rem;
}

@media (max-width: 575.98px) {
  .hero-card {
    position: static;
    margin-top: 1rem;
  }
}

.bg-soft {
  background-color: var(--secondary-color);
}

.section-heading h2,
.section-heading h3 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.section-tagline {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--primary-color-dark);
}

.service-card {
  border-radius: 1.25rem;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  padding-block: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card .card-body {
  padding-inline: 1.5rem;
  padding-block: 1.5rem;
}

.service-icon {
  font-size: 1.6rem;
  color: var(--primary-color-dark);
  margin-bottom: 0.75rem;
}

.service-price {
  font-weight: 600;
  color: var(--primary-color-dark);
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.gallery-image {
  object-fit: cover;
  height: 180px;
  width: 100%;
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
}

.gallery-item .gallery-image {
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

/* Reveal animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-248px);
  transition: opacity 1s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.benefits-list {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.benefits-list .icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: rgba(243, 203, 187, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
  flex-shrink: 0;
  color: var(--primary-color-dark);
}

.benefits-list h5 {
  margin-bottom: 0.2rem;
}

.benefits-list p {
  margin-bottom: 0;
  color: var(--muted-color);
}

.testimonial-card {
  max-width: 620px;
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-color);
}

.testimonial-meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-stars {
  color: #f4b400;
}

.pricing-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-featured {
  border-width: 2px;
  border-color: var(--primary-color-dark);
  transform: translateY(-6px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.pricing-featured:hover {
  transform: translateY(-10px);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--primary-color-dark);
}

.contact-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.05);
}

.map-section {
  margin-top: -1px;
}

.footer {
  background-color: #111111;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
  color: #ffffff;
}

.footer .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background-color: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.btn-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 1030;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp:hover {
  color: white;
  background-color: #1ebe5c;
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding-inline: 1.5rem;
    padding-block: 1.7rem;
  }

  .hero-section {
    padding-top: 4.25rem;
  }
}

.corner-ribbon-container{
    position: absolute;
    padding: 0;
    top: -15px;
    right:-65px;
    transform-origin: top left;
    transform: rotateZ(45deg);
    border: 1px solid black;
}
.corner-ribbon{
    width: 150px;
    display: block;
}