/* ===== Global Styles ===== */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: url('Images/background-chakkras-lotus.png') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Bree Serif', serif;
}

/* ===== Hero Section ===== */
.hero {
  background: url('Images/paw-print-background-3.png') repeat;
  background-size: 400px;
  padding: 5rem 1rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  color: #d36f38; /* Muted Cinnamon Orange */
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* ===== Buttons ===== */
.glam-button {
  position: relative;
  background-color: #d36f38;
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.glam-button:hover {
  background-color: #f4b400; /* Muted Mustard Gold */
  transform: scale(1.1);
}

@keyframes sparkle {
  0% { transform: translateX(-50%) translateY(-5px); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(5px); opacity: 0.4; }
  100% { transform: translateX(-50%) translateY(-5px); opacity: 0.8; }
}

/* ===== Trip Section ===== */
.trip-section {
  padding: 2rem;
  text-align: center;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.trip-section img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 2rem auto 1rem auto;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(211, 111, 56, 0.6);
  animation: tripGlow 4s ease-in-out infinite;
}

@keyframes tripGlow {
  0% { box-shadow: 0 0 35px rgba(211, 111, 56, 0.3); }
  50% { box-shadow: 0 0 60px rgba(244, 180, 0, 0.6); }
  100% { box-shadow: 0 0 35px rgba(211, 111, 56, 0.3); }
}

/* ===== Features Section ===== */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  background-color: transparent;
}

.feature {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 280px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.feature > * {
  position: relative;
  z-index: 1;
}

/* Darker backgrounds for glam feature boxes only */
.feature.puppet-glam-glitter,
.feature.meditation-zen-glitter,
.feature.gallery-glam-glitter {
  background-color: rgba(80, 50, 40, 0.8); /* rich brown/plum with transparency */
  color: white;
}

.feature.puppet-glam-glitter h3,
.feature.puppet-glam-glitter p,
.feature.meditation-zen-glitter h3,
.feature.meditation-zen-glitter p,
.feature.gallery-glam-glitter h3,
.feature.gallery-glam-glitter p {
  color: #fff8dc; /* warm cream/gold */
}

/* ===== Glitter Overlays ===== */
.feature.puppet-glam-glitter::after,
.feature.meditation-zen-glitter::after,
.feature.gallery-glam-glitter::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('Images/sparkle-overlay-optimized.svg');
  background-size: 150px;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: glitterFlow 6s infinite linear;
}

@keyframes glitterFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* ===== Floating Icons ===== */

.gallery-glam-glitter .floating-camera,
.meditation-zen-glitter .floating-lotus,
.puppet-glam-glitter .floating-heart {
  position: absolute;
  font-size: 1.5rem;
  animation: floatIcons 6s infinite ease-in-out;
  pointer-events: none;
  opacity: 0.6;
}

/* Gallery Floating Cameras */
.gallery-glam-glitter .floating-camera:nth-of-type(1) { top: -10px; left: 10%; }
.gallery-glam-glitter .floating-camera:nth-of-type(2) { bottom: -10px; right: 15%; }
.gallery-glam-glitter .floating-camera:nth-of-type(3) { top: 60%; left: 85%; }
.gallery-glam-glitter .floating-camera:nth-of-type(4) { top: 20%; left: 25%; }
.gallery-glam-glitter .floating-camera:nth-of-type(5) { bottom: 20%; right: 30%; }
.gallery-glam-glitter .floating-camera:nth-of-type(6) { top: 10%; left: 60%; }
.gallery-glam-glitter .floating-camera:nth-of-type(7) { bottom: 10%; left: 10%; }
.gallery-glam-glitter .floating-camera:nth-of-type(8) { top: 45%; right: 20%; }

/* Meditation Floating Lotuses */
.meditation-zen-glitter .floating-lotus:nth-of-type(1) { top: -10px; left: 10%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(2) { bottom: -10px; right: 15%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(3) { top: 50%; left: 85%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(4) { top: 20%; left: 25%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(5) { bottom: 20%; right: 30%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(6) { top: 10%; left: 60%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(7) { bottom: 10%; left: 10%; }
.meditation-zen-glitter .floating-lotus:nth-of-type(8) { top: 45%; right: 20%; }

/* Puppet Floating Hearts */
.puppet-glam-glitter .floating-heart:nth-of-type(1) { top: -10px; left: 20%; }
.puppet-glam-glitter .floating-heart:nth-of-type(2) { bottom: -10px; right: 10%; }
.puppet-glam-glitter .floating-heart:nth-of-type(3) { top: 60%; left: 80%; }
.puppet-glam-glitter .floating-heart:nth-of-type(4) { top: 20%; left: 30%; }
.puppet-glam-glitter .floating-heart:nth-of-type(5) { bottom: 20%; right: 25%; }
.puppet-glam-glitter .floating-heart:nth-of-type(6) { top: 10%; left: 60%; }
.puppet-glam-glitter .floating-heart:nth-of-type(7) { bottom: 10%; left: 10%; }
.puppet-glam-glitter .floating-heart:nth-of-type(8) { top: 45%; right: 20%; }

@keyframes floatIcons {
  0% { transform: translateY(120%) rotate(0deg); opacity: 0.2; }
  25% { transform: translateY(80%) rotate(15deg); opacity: 0.4; }
  50% { transform: translateY(0%) rotate(-10deg); opacity: 0.6; }
  75% { transform: translateY(-60%) rotate(10deg); opacity: 0.3; }
  100% { transform: translateY(-120%) rotate(-5deg); opacity: 0.1; }
}
  50% { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-100%); opacity: 0.1; }
} {
  0% { transform: translateY(100%); opacity: 0.1; }
  50% { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-100%); opacity: 0.1; }
}

/* ===== Quote Section ===== */
.quote-section {
  font-style: italic;
  font-size: 1.2rem;
  padding: 1.5rem;
  background-color: transparent;
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
  z-index: 1;
}

/* ===== Animations for Hero Text ===== */
.fade-zoom {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoom 1.5s ease-out forwards;
}

.fade-zoom.delay {
  animation-delay: 0.75s;
}

@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.back-button {
  display: block;
  text-align: center;
  margin: 2rem auto;
  font-size: 1.1rem;
  padding: 0.6rem 1.5rem;
  background-color: #C3BFD9;
  color: #4B3C4E;
  border: 2px solid #4B3C4E;
  border-radius: 2rem;
  font-family: 'Bree Serif', serif;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #E6D3A3;
  color: #fff;
  border-color: #D8A7B1;
}


/* ===== Footer ===== */
footer {
  clear: both;
  width: 100%;
  background-color: #5e473e; /* Soft Walnut / Slate Plum mix */
  color: white;
  padding: 1.5rem;
  text-align: center;
  box-sizing: border-box;
}

/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 90%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
