/* ===========================
   CUSTOM BY KG — STYLESHEET
   Bright, bold, colorful
=========================== */

:root {
  --kg-black: #0d0d0d;
  --kg-white: #ffffff;
  --kg-yellow: #FFD93D;
  --kg-orange: #FF6B35;
  --kg-pink:   #FF3CAC;
  --kg-teal:   #00D4FF;
  --kg-green:  #06D6A0;
  --kg-purple: #784CF3;
  --bg-light:  #FFFBF5;
  --bg-dark:   #0d0d0d;
  --text-dark: #1a1a1a;
  --text-mid:  #4a4a4a;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  font-size: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--kg-yellow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.logo-custom { color: var(--kg-yellow); }
.logo-by     { color: var(--kg-white); font-size: 1.5rem; }
.logo-kg     { color: var(--kg-orange); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--kg-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--kg-yellow); }
.nav-cta {
  background: var(--kg-orange) !important;
  color: var(--kg-white) !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--kg-pink) !important; transform: scale(1.04) !important; }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--kg-yellow); font-size: 1.6rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--kg-black);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--kg-white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.82) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(255,107,53,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}
.hero-eyebrow {
  color: var(--kg-yellow);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
  margin-bottom: 24px;
}
.hero-line1 {
  display: block;
  font-size: clamp(4.5rem, 12vw, 9rem);
  color: var(--kg-white);
  -webkit-text-stroke: 2px var(--kg-white);
}
.hero-line2 {
  display: block;
  font-size: clamp(5rem, 15vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 3px var(--kg-yellow);
  text-shadow: 0 0 60px rgba(255,217,61,0.3);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-primary {
  background: linear-gradient(135deg, var(--kg-orange), var(--kg-pink));
  color: var(--kg-white);
}
.btn-outline {
  background: transparent;
  border: 2.5px solid var(--kg-white);
  color: var(--kg-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; text-align: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ====== SECTIONS ====== */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kg-orange);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--kg-yellow); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.section-title.left-align { text-align: left; }
.section-sub {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ====== PRODUCTS ====== */
.products { background: var(--bg-light); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img { transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.card-tshirts .product-img-wrap img { object-position: center 20%; }
.product-info {
  padding: 24px 28px 28px;
}
.product-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--kg-orange), var(--kg-pink));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product-tag-green {
  background: linear-gradient(135deg, var(--kg-green), var(--kg-teal)) !important;
}
.product-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.product-info p {
  color: var(--text-mid);
  line-height: 1.65;
  font-size: 0.97rem;
}

/* ====== GALLERY ====== */
.gallery-section { background: var(--bg-dark); padding-bottom: 80px; }
.gallery-section .section-title { color: var(--kg-white); }
.gallery-section .section-eyebrow { color: var(--kg-yellow); }
.gallery-section .section-header { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { transition: transform 0.4s; transform: scale(0.82); cursor: zoom-in; }
.gallery-item:hover img { transform: scale(0.90); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
  animation: lb-in 0.22s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: fixed;
  top: 1.1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#gi-cankoon-white img { transform: scale(0.70); object-position: center; }
#gi-cankoon-white:hover img { transform: scale(0.78); }
#gi-cruisin img { transform: scale(0.70); object-position: center; }
#gi-cruisin:hover img { transform: scale(0.78); }
#gi-earned img { transform: scale(0.70); object-position: center; }
#gi-earned:hover img { transform: scale(0.78); }
.gallery-item.gi-tall { grid-row: span 2; }
.gallery-item.gi-wide { grid-column: span 2; }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateY(100%);
  transition: transform 0.28s;
}
.gallery-item:hover .gallery-label { transform: translateY(0); }

/* ====== OCCASIONS ====== */
.occasions { background: var(--bg-light); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.occasion-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  border-top: 4px solid transparent;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.occasion-card:nth-child(1) { border-top-color: var(--kg-pink); }
.occasion-card:nth-child(2) { border-top-color: var(--kg-orange); }
.occasion-card:nth-child(3) { border-top-color: var(--kg-teal); }
.occasion-card:nth-child(4) { border-top-color: var(--kg-green); }
.occasion-card:nth-child(5) { border-top-color: var(--kg-purple); }
.occasion-card:nth-child(6) { border-top-color: var(--kg-yellow); }
.occasion-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.occasion-icon { font-size: 2.4rem; margin-bottom: 16px; }
.occasion-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.occasion-card p { color: var(--text-mid); line-height: 1.6; font-size: 0.95rem; }

/* ====== WHY US ====== */
.why-us {
  background: linear-gradient(135deg, #fff7ee 0%, #fff 60%, #f0fdfa 100%);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-img-col { position: relative; }
.why-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kg-orange), var(--kg-pink));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(255,107,53,0.45);
  color: #fff;
}
.why-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}
.why-badge-text {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.why-text-col { padding-right: 8px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; }
.why-check {
  font-size: 1.1rem;
  color: var(--kg-orange);
  margin-top: 2px;
  flex-shrink: 0;
}
.why-list strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.why-list p { color: var(--text-mid); line-height: 1.6; font-size: 0.95rem; }

/* ====== CONTACT ====== */
.contact {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1240 60%, #0d0d0d 100%);
  padding: 100px 0;
}
.contact-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--kg-white);
  margin-bottom: 20px;
}
.contact-sub {
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.contact-info-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: background 0.2s, border-color 0.2s;
}
.contact-card:hover { background: rgba(255,217,61,0.1); border-color: var(--kg-yellow); }
.cc-icon { font-size: 1.6rem; }
.cc-label { display: block; color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.cc-value { display: block; color: var(--kg-white); font-size: 1.05rem; font-weight: 700; }



/* ====== FOOTER ====== */
.footer {
  background: var(--kg-black);
  padding: 40px 0 28px;
  border-top: 2px solid var(--kg-yellow);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--kg-yellow); }
.footer-contact {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.footer-contact a { color: var(--kg-yellow); font-weight: 700; }
.footer-contact a:hover { color: var(--kg-orange); }
.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 64px 0; }

  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    padding: 0 12px;
  }
  .gallery-item.gi-tall { grid-row: span 1; }
  .gallery-item.gi-wide { grid-column: span 2; }
  .gallery-label { transform: translateY(0); }

  .occasions-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-img-col { display: none; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.gi-wide { grid-column: span 1; }
  .hero-line1 { font-size: 3.8rem; }
  .hero-line2 { font-size: 5rem; }
  .why-badge { display: none; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
