/* =============================================
   HOME PAGE STYLES

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
.slides-wrapper { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(1.03);
}
.slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.slide.prev { opacity: 0; transform: scale(0.97); z-index: 1; }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,8,8,0.85) 40%, rgba(212,168,83,0.08) 100%);
  z-index: 1;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-1-img {
  background: linear-gradient(120deg, rgba(8,8,8,0.5) 40%, rgba(212,168,83,0.08) 100%);
}
.slide-2-img {
  background: linear-gradient(120deg, rgba(8,8,8,0.5) 40%, rgba(212,168,83,0.08) 100%);
}
.slide-3-img {
  background: linear-gradient(120deg, rgba(8,8,8,0.5) 40%, rgba(212,168,83,0.08) 100%);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-1 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(212,168,83,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,83,0.08) 0%, transparent 50%);
}
.slide-2 {
  background: linear-gradient(135deg, #080808 0%, #121218 50%, #080808 100%);
  background-image: radial-gradient(ellipse at 80% 30%, rgba(100,120,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 60%, rgba(212,168,83,0.1) 0%, transparent 50%);
}
.slide-3 {
  background: linear-gradient(135deg, #0a0806 0%, #1a1210 50%, #060808 100%);
  background-image: radial-gradient(ellipse at 60% 40%, rgba(212,168,83,0.12) 0%, transparent 60%);
}

/* Film grain */
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 8%;
  max-width: 900px;
}
.slide-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: none;
}
.slide.active .slide-label {
  animation: fadeInUp 0.8s 0.2s forwards;
}
.slide-content h1 {
  opacity: 0;
  animation: none;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
.slide.active .slide-content h1 {
  animation: fadeInUp 0.9s 0.4s forwards;
}
.slide-sub {
  font-size: 1.1rem;
  max-width: 550px;
  opacity: 0;
  animation: none;
  color: rgba(245,240,232,0.75);
  margin-bottom: 2.5rem;
}
.slide.active .slide-sub {
  animation: fadeInUp 0.9s 0.6s forwards;
}
.slide.active .btn-hero {
  animation: fadeInUp 0.9s 0.8s forwards;
  opacity: 0;
}

/* HERO CONTROLS */
.hero-controls {
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.slide-btn {
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.slide-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.slide-dots { display: flex; gap: 0.6rem; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 0;
  background: rgba(212,168,83,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  width: 28px;
  background: var(--gold);
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  right: 4%;
  bottom: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transform: rotate(90deg);
  transform-origin: right center;
}
.hero-scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ABOUT TEASER */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: center;
  background: var(--dark);
  padding: 7rem 8%;
}
.about-visual { display: flex; justify-content: center; }
.about-frame {
  position: relative;
  width: 340px; height: 420px;
  border: 2px solid rgba(212,168,83,0.3);
}
.about-frame::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 1px solid rgba(212,168,83,0.15);
  z-index: 0;
}
.about-img-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #1a1208 0%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.big-letter {
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(212,168,83,0.08);
  line-height: 1;
  user-select: none;
}
.film-strip {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 36px;
  background: var(--dark3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  z-index: 2;
}
.film-hole {
  width: 16px; height: 16px;
  border: 2px solid rgba(212,168,83,0.4);
}
.film-center {
  font-size: 1.2rem;
  color: var(--gold);
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  font-family: var(--font-display);
}

.about-text h2 { margin: 0.5rem 0 1.5rem; }
.about-text p { margin-bottom: 1.2rem; }
.about-text .btn-outline { margin-top: 1rem; }

/* SERVICES TEASER */
.services-teaser {
  padding: 7rem 6%;
  background: var(--black);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.scard {
  background: var(--dark2);
  border: 1px solid rgba(212,168,83,0.1);
  padding: 2.5rem 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.scard::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.scard:hover { background: var(--dark3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.scard:hover::before { transform: scaleX(1); }
.scard-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1.5rem; }
.scard h3 { margin-bottom: 0.8rem; color: var(--white); font-size: 1.1rem; }
.scard p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.scard a { color: var(--gold); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; font-family: var(--font-heading); }
.scard a:hover { text-shadow: 0 0 10px rgba(212,168,83,0.5); }

/* PORTFOLIO TEASER */
.portfolio-teaser { background: var(--dark); padding: 7rem 6%; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.pgrid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark3);
}
.pgrid-large {
  grid-row: 1 / 3;
  min-height: 500px;
  background: linear-gradient(135deg, #1a1208, #0a0a0a);
  background-image: url(../media/weeding\ thumbnail.png);
  background-size: cover;
  background-position: center;   
}
.pgrid-sm { min-height: 240px; background: linear-gradient(135deg, #0a0a12, #0a0a0a); 
background-image: url(../media/brand\ video.webp);
background-size: cover;
background-position: center; 
}
.pgrid-sm1 { min-height: 240px; background: linear-gradient(135deg, #0a0a12, #0a0a0a); 
background-image: url(../media/music\ video.webp);
background-size: cover;
background-position: center; 
}
.pgrid-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.12), transparent 70%);
  z-index: 0;
}
.pgrid-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.6);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
  z-index: 0;
}
.pgrid-item:hover .pgrid-overlay { background: rgba(8,8,8,0.3); }
.pgrid-overlay p {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}
.pgrid-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.pgrid-overlay a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-family: var(--font-heading);
  transition: var(--transition);
}
.pgrid-overlay a:hover { background: var(--gold); color: var(--black); }

/* CTA */
.cta-section {
  padding: 7rem 5%;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.12) 0%, var(--dark2) 70%);
  border-top: 1px solid rgba(212,168,83,0.15);
  border-bottom: 1px solid rgba(212,168,83,0.15);
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { margin: 0.5rem 0 1.5rem; }
.cta-inner p { margin-bottom: 2.5rem; font-size: 1.1rem; }

/* RESPONSIVE HOME */
@media (max-width: 1200px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-teaser { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
  .about-visual { display: none; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pgrid-large { min-height: 350px; grid-row: auto; }
}
@media (max-width: 480px) {
  .service-cards { grid-template-columns: 1fr; }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Optional: Hide text on mobile to keep it a simple circle */
@media screen and (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    .whatsapp-icon {
        margin-right: 0;
    }
}