@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #d4a373;
  --secondary-color: #fefae0;
  --dark-color: #283618;
  --text-color: #333333;
  --bg-color: #fcfbfa;
}

/* Opciones de fondos para probar */
.bg-floral-gradient {
  /* Gradiente muy sutil entre el amarillo del header (#fefae0) y un tono muy claro derivado del verde del footer */
  background: linear-gradient(180deg, var(--secondary-color) 0%, #e4e7d3 100%) !important;
  background-attachment: fixed !important;
}

.bg-floral-pattern {
  /* Patrón de puntos visible y elegante (Polka dot) */
  background-color: #fefae0 !important;
  background-image: radial-gradient(rgba(209, 70, 116, 0.4) 2px, transparent 2px), radial-gradient(rgba(209, 70, 116, 0.4) 2px, transparent 2px) !important;
  background-size: 40px 40px !important;
  background-position: 0 0, 20px 20px !important;
  background-attachment: fixed !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 3rem 1rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

header img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  border: 4px solid white;
}

#SHEN {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark-color);
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  #SHEN {
    font-size: 3rem;
  }
}

.titulo2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #606c38;
  margin: 0;
  font-style: italic;
}

h1, h2, h3, h4, h5, h6, .font-playfair {
  font-family: 'Playfair Display', serif !important;
}

nav {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3rem;
  flex-wrap: wrap;
}

nav li {
  margin: 0.5rem 0;
}

nav a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

nav a:hover::after {
  width: 100%;
}

/* NUEVA CLASE PARA DESTACAR EL ENLACE DE PEDIDO */
nav a.nav-highlight {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
}

nav a.nav-highlight::after {
  display: none;
}

nav a.nav-highlight:hover {
  background-color: #c09060;
  color: white;
  transform: translateY(-2px);
}

body>img[alt="banner"] {
  width: 100% !important;
  height: 450px;
  object-fit: cover;
  display: block;
}

section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

/* ==========================================================================
   UTILIDADES REUTILIZABLES
   ========================================================================== */

/* Imágenes */
.img-carousel { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.img-card-custom { height: 250px; object-fit: cover; }
.img-feature-intro { max-height: 350px; object-fit: cover; }
.img-feature-showcase { max-height: 400px; object-fit: cover; }
.img-feature-shadow { max-height: 380px; object-fit: cover; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Textos y Colores */
.text-brand-pink { color: #d14674 !important; }
.text-brand-pink-alt { color: #e83e8c !important; }
.text-footer-light { color: #fefae0 !important; opacity: 0.8; }
.text-primary-custom { color: var(--primary-color) !important; }
.text-dark-theme { color: var(--dark-color) !important; }

/* Tipografía y Espaciado adicionales */
.subtitle-form { font-size: 0.75rem; letter-spacing: 0.08em; }
.list-spaced { line-height: 1.8; }
.icon-huge { font-size: 4rem; }
.text-md-custom { font-size: 1.1rem; }

.home-experiencias .experiencia-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-experiencias .experiencia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.home-experiencias .experiencia-card .card-img-top {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background-color: #fff7f4;
  padding: 0.5rem;
}

.home-experiencias .experiencia-card .card-text {
  line-height: 1.6;
}

footer {
  background-color: var(--dark-color);
  color: #fefae0;
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 5rem;
  border-top: 5px solid var(--primary-color);
}

footer p {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
}