@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --color-primary: #FFFFFF;
  --color-secondary: #FFD1DC;
  /* Pink Pastel */
  --color-accent: #D4AF37;
  /* Gold Metallic */
  --color-text-dark: #2C2C2C;
  --color-text-light: #F9F9F9;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------
   UTILITY CLASSES
---------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: #b5952f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

/* ----------------------------------
   NAVIGATION
---------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-links li a {
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: var(--color-accent);
}

.lang-switch {
  font-weight: 700;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-dark);
}

/* ----------------------------------
   HERO SECTION (Parallax)
---------------------------------- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* We will inject the parallax image via HTML inline style or JS, but providing a base class */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Extra height for parallax */
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 209, 220, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

/* ----------------------------------
   SERVICES (Slide Animations)
---------------------------------- */
.service-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  /* For lateral animations */
}

.service-reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.service-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  z-index: -1;
}

.service-reverse .service-image::before {
  right: auto;
  left: -20px;
}

/* Animation Classes (Triggered by JS) */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ----------------------------------
   PRODUCTS (Golden Glow)
---------------------------------- */
.products-bg {
  background-color: #fafafa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-primary);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* Stronger shadow on hover */
}

.product-card:hover::before {
  opacity: 1;
  /* Golden glow reveal */
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.product-image img {
  max-height: 100%;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.product-price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   CONTACT
---------------------------------- */
.contact-section {
  background-color: var(--color-secondary);
  position: relative;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-primary);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fcfcfc;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ----------------------------------
   WHATSAPP WIDGET
---------------------------------- */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* Standard WA green, but we will make it elegant/gold */
  background: linear-gradient(135deg, var(--color-accent) 0%, #b5952f 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 1000;
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* ----------------------------------
   FOOTER
---------------------------------- */
.footer {
  background-color: var(--color-text-dark);
  color: var(--color-text-light);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ----------------------------------
   RESPONSIVE DESIGN (Mobile First / Queries)
---------------------------------- */
@media (max-width: 992px) {
  .service-section {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .service-reverse {
    flex-direction: column;
  }

  .service-image::before {
    display: none;
    /* Hide decorative border on small screens to save space */
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {

  /* Mobile Menu */
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease;
    gap: 3rem;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-container {
    padding: 2rem 1.5rem;
  }
}