/* ================================================
   HOME VIEW CSS — Priya's Spize Works
   ================================================ */

/* ---- HERO ---- */
#view-home .hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-bottom: 80px;
}
#view-home .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
#view-home .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.68) 0%, rgba(10,10,10,0.80) 60%, rgba(10,10,10,0.97) 100%);
}
#view-home .hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 1.5rem; }
#view-home .hero-content h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1rem; letter-spacing: -0.01em; }
#view-home .hero-content h1 em { font-style: italic; color: var(--gold); }
#view-home .hero-content p { font-size: clamp(1rem, 2vw, 1.1rem); font-weight: 300; line-height: 1.8; max-width: 620px; margin: 0 auto 1.5rem; color: rgba(255,255,255,0.85); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
#view-home .hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
#view-home .hero-scroll::after {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(200,169,81,0.8), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- INTRO BAND ---- */
.intro-band { background: var(--gold); color: var(--black); padding: 2rem; text-align: center; }
.intro-band p { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-style: italic; }

/* ---- SERVICE CARDS ---- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem 2rem;
}
.service-card-number { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.5rem; }
.service-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 1.2rem; }
.service-card-link {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.5rem;
}
.service-card-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .service-card-link::after { transform: translateX(5px); }

/* ---- ABOUT STRIP ---- */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.about-strip-image { height: 600px; overflow: hidden; background: #111; }
.about-strip-image img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-content { padding: 5rem; background: var(--cream); color: var(--black); }
.about-strip-content .section-label { color: var(--gold); }
.about-strip-content .section-title { color: var(--black); }
.about-strip-content .divider { background: var(--gold); }
.about-strip-content p { font-size: 0.95rem; line-height: 1.9; color: rgba(10,10,10,0.7); margin-bottom: 1.5rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,81,0.2); padding: 2.5rem 2rem; position: relative; }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; opacity: 0.5; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; font-style: italic; margin-top: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: var(--black); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-event { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ---- GALLERY GRID ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 4px; margin-top: 3rem; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform 0.5s ease; }
.gallery-item:first-child img { aspect-ratio: auto; height: 100%; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(200,169,81,0.0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(200,169,81,0.2); }
.gallery-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-tag { opacity: 1; }

/* ---- CTA SECTION ---- */
.cta-section { position: relative; padding: 8rem 2rem; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: url('../images/image000007.jpg'); background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.85); }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; margin-bottom: 1.5rem; }
.cta-content p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .service-card:last-child { grid-column: span 2; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-image { height: 400px; }
  .about-strip-content { padding: 3rem 2rem; }
  .testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .service-card:last-child { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}
