:root {
  --orange: #ff4d00;
  --orange-light: #ff7a3d;
  --orange-dark: #d93f00;
  --gold: #facc15;
  --cream: #eae4d5;
  --cream-soft: #f7efe3;
  --white: #ffffff;
  --dark: #151515;
  --text: #4c4c4c;
  --muted: #707070;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--cream) 0%, #f6ecdc 100%);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: "Baloo 2", cursive;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 14px;
}

p {
  color: var(--text);
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-tag.light {
  color: #fff2d8;
}

/* HERO */
.gallery-hero {
  position: relative;
  padding: 110px 20px 90px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(250,204,21,0.32), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,77,0,0.18), transparent 30%),
    linear-gradient(135deg, #fff6ed 0%, #ffe9d7 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.gallery-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  margin-bottom: 18px;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags span {
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  border: 1px solid rgba(255,77,0,0.1);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.hero-tags span:hover {
  background-color:var(--orange-light);
  color: white;
  transform: translateY(-3px);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.shape-1 {
  width: 240px;
  height: 240px;
  background: var(--gold);
  top: -70px;
  right: -70px;
}

.shape-2 {
  width: 190px;
  height: 190px;
  background: rgba(255,77,0,0.18);
  bottom: -50px;
  left: -50px;
}

/* INTRO */
.gallery-intro {
  padding: 40px 0 20px;
}

.intro-box {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,77,0,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.info-pill {
  background: linear-gradient(135deg, #fff5e9, #ffffff);
  color: var(--orange-dark);
  border: 1px solid rgba(255,77,0,0.1);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.info-pill:hover {
  background: linear-gradient(135deg, #ff4d00, #ff7a00);
  color: white;
  transform: translateY(-3px);
}

/* FILTERS */
.filter-section {
  padding: 22px 0 10px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  background: white;
  color: var(--dark);
  border: 1px solid rgba(255,77,0,0.1);
  border-radius: 999px;
  padding: 11px 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
}

/* GALLERY GRID */
.main-gallery {
  padding: 28px 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  background: white;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: white;
}

.overlay span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #ffd9b8;
}

.overlay h3 {
  font-size: 1.35rem;
}

/* MEMORY STRIP */
.memory-strip {
  padding: 30px 0 40px;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.memory-card {
  background: linear-gradient(135deg, #fff8f0, #ffffff);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,77,0,0.08);
}

.memory-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* VIDEO */
.video-highlight {
  padding: 30px 0 70px;
}

.video-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fff2e6, #fffaf5);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.video-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.video-placeholder {
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255,77,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 700;
  background: white;
}

/* CTA */
.gallery-cta {
  padding: 0 0 80px;
}

.cta-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 48px 28px;
  box-shadow: var(--shadow-md);
}

.cta-box h2,
.cta-box p {
  color: white;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 24px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-light {
  background: white;
  color: var(--orange-dark);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-box,
  .video-box,
  .memory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .gallery-hero {
    padding: 90px 14px 70px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .video-preview {
    grid-template-columns: 1fr;
  }

  .memory-grid {
    grid-template-columns: 1fr;
  }
}


/* ============ 💎 PREMIUM CLIENT-LEVEL BUTTON SYSTEM ============ */
/* Targets ALL buttons: .btn, .btn-light, .btn-outline, .filter-btn, .hero-tags span, .info-pill */

/* 🔧 BASE SETUP - Enhanced foundation */
.btn,
.btn-light,
.btn-outline,
.filter-btn,
.hero-tags span,
.info-pill {
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 🚀 1. SOPHISTICATED 3D LIFT */
.btn:hover,
.btn-light:hover,
.btn-outline:hover,
.filter-btn:hover,
.hero-tags span:hover,
.info-pill:hover {
  transform: translateY(-10px) translateZ(15px) scale(1.025);
  
  /* Real-world multi-depth shadow stack */
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.22),
    0 18px 35px rgba(0,0,0,0.16),
    0 10px 22px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.40),
    0 0 0 1px rgba(255,255,255,0.30);
}

/* ✨ 2. CINEMATIC SHIMMER EFFECT */
.btn::before,
.btn-light::before,
.btn-outline::before,
.filter-btn::before,
.hero-tags span::before,
.info-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 140%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.50) 40%,
    rgba(255,255,255,0.75) 50%,
    rgba(255,255,255,0.50) 60%,
    transparent 100%
  );
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 4;
  pointer-events: none;
}

.btn:hover::before,
.btn-light:hover::before,
.btn-outline:hover::before,
.filter-btn:hover::before,
.hero-tags span:hover::before,
.info-pill:hover::before {
  left: 140%;
}

/* 💧 3. ADVANCED RIPPLE WAVES */
.btn::after,
.btn-light::after,
.btn-outline::after,
.filter-btn::after,
.hero-tags span::after,
.info-pill::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  transform: translate(-50%, -50%);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 5;
  pointer-events: none;
}

.btn:active::after,
.btn-light:active::after,
.btn-outline:active::after,
.filter-btn:active::after,
.hero-tags span:active::after,
.info-pill:active::after {
  width: 500px;
  height: 500px;
}

/* 🌟 4. INTELLIGENT EDGE GLOW */
.btn,
.btn-light,
.btn-outline,
.filter-btn,
.hero-tags span,
.info-pill {
  border: 1px solid transparent;
}

.btn:hover,
.btn-light:hover,
.btn-outline:hover,
.filter-btn:hover,
.hero-tags span:hover,
.info-pill:hover {
  border-color: rgba(255,255,255,0.50);
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.40),
    0 30px 60px rgba(0,0,0,0.22),
    0 18px 35px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.40);
}

/* 📜 5. TYPOGRAPHY ELEVATION */
.btn *,
.btn-light *,
.btn-outline *,
.filter-btn *,
.hero-tags span *,
.info-pill * {
  position: relative;
  transition: transform 0.35s ease;
}

.btn:hover *,
.btn-light:hover *,
.btn-outline:hover *,
.filter-btn:hover *,
.hero-tags span:hover *,
.info-pill:hover * {
  transform: translateY(-3px);
}

/* 🧊 6. OUTLINE BUTTON - Frosted glass upgrade */
.btn-outline:hover {
  backdrop-filter: blur(15px);
  border-width: 2px;
  box-shadow: 
    0 0 0 12px rgba(255,255,255,0.10),
    0 30px 60px rgba(0,0,0,0.22);
}

/* 🎨 7. LIGHT BUTTON - Golden aura */
.btn-light:hover {
  box-shadow: 
    0 0 0 6px rgba(250,204,21,0.25),
    0 30px 60px rgba(255,77,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.60);
}

/* 🔮 8. FILTER BUTTON - Active state enhancement */
.filter-btn.active {
  box-shadow: 
    0 0 0 4px rgba(255,77,0,0.20),
    0 20px 45px rgba(255,77,0,0.30);
}

/* 🖱️ 9. PHYSICAL PRESS FEEDBACK */
.btn:active,
.btn-light:active,
.btn-outline:active,
.filter-btn:active,
.hero-tags span:active,
.info-pill:active {
  transform: translateY(-4px) scale(0.96);
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ♿ 10. PROFESSIONAL FOCUS STATES */
.btn:focus,
.btn-light:focus,
.btn-outline:focus,
.filter-btn:focus,
.hero-tags span:focus,
.info-pill:focus {
  outline: none;
  box-shadow: 
    0 0 0 5px rgba(255,77,0,0.30),
    0 0 0 10px rgba(255,255,255,0.60),
    0 30px 60px rgba(0,0,0,0.22);
}

/* 📱 11. TOUCH-OPTIMIZED MOBILE */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .btn-light:hover,
  .btn-outline:hover,
  .filter-btn:hover,
  .hero-tags span:hover,
  .info-pill:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 
      0 22px 45px rgba(0,0,0,0.20),
      0 12px 25px rgba(0,0,0,0.14),
      inset 0 1px 0 rgba(255,255,255,0.35);
  }
}

/* 🎪 12. PILL BUTTON MICRO-ANIMATIONS */
.hero-tags span,
.info-pill {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-tags span:hover,
.info-pill:hover {
  animation: pillPulse 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pillPulse {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
  100% { transform: translateY(-10px) scale(1.025); }
}
/* =========================================================
   PRINCIPAL SECTION
========================================================= */

.principal-section{
  padding: 100px 20px;
  background: linear-gradient(135deg,#fdf6ef,#f8ebdf);
  position: relative;
  overflow: hidden;
}

/* WATERMARK LOGO */
.principal-section::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url("assets/logo-no-background.png") 
              no-repeat center center;
  background-size: contain;
  opacity: 0.07;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.principal-container{
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;

  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.principal-content{
  max-width: 720px;
}

.principal-tag{
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #ffd3b2;
  color: #ff6a00;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  background: rgba(255,255,255,0.4);
}

.principal-content h2{
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.1;
  font-weight: 700;
  color: #2a1105;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.principal-content h2 span{
  display: block;
  color: #ff5a00;
  font-size: clamp(28px, 3vw, 50px);
  margin-top: 8px;
  line-height: 1.15;
}

.principal-content p{
  font-size: 20px;
  line-height: 2;
  color: #6d4c41;
  margin-bottom: 24px;
  max-width: 760px;
}

/* IMAGE SIDE */
.principal-image-box{
  position: relative;
  display: flex;
  justify-content: center;
}

.principal-image-box img{
  width: 100%;
  max-width: 420px;
  height: 680px;
  object-fit: cover;

  border-radius: 40px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* FLOATING BADGE */
.principal-badge{
  position: absolute;
  bottom: -25px;
  right: -20px;

  background: white;
  border-radius: 24px;

  padding: 18px 24px;

  display: flex;
  align-items: center;
  gap: 15px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.principal-badge img{
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.principal-badge h4{
  margin-top: 5px;
  font-size: 28px;
  color: #a84300;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 992px){

  .principal-container{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .principal-content{
    text-align: center;
    margin: auto;
  }

  .principal-content p{
    margin-inline: auto;
  }

  .principal-image-box img{
    height: 520px;
  }

  .principal-badge{
    right: 50%;
    transform: translateX(50%);
  }

}

@media (max-width: 576px){

  .principal-section{
    padding: 70px 15px;
  }

  .principal-content h2{
    font-size: 52px;
  }

  .principal-content p{
    font-size: 17px;
    line-height: 1.8;
  }

  .principal-image-box img{
    height: 430px;
    border-radius: 28px;
  }

  .principal-badge{
    padding: 14px 18px;
    gap: 10px;
  }

  .principal-badge h4{
    font-size: 20px;
  }

}