/* =========================================================
   BLINK FRAME PHOTOGRAPHY — LUXURY UNDER MAINTENANCE THEME
   Wedding Photography & Films
   ========================================================= */

:root {
  --bg-core: #070709;
  --bg-surface: #0e0e13;
  --bg-surface-elevated: rgba(20, 20, 28, 0.82);
  --bg-glass: rgba(18, 18, 25, 0.65);
  
  --gold-300: #faebb3;
  --gold-400: #e5c365;
  --gold-500: #d4af37;
  --gold-600: #b89125;
  --gold-700: #8c6d17;
  
  --gold-gradient: linear-gradient(135deg, #fff0c2 0%, #e5c365 30%, #d4af37 60%, #9a7318 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --gold-glow-intense: 0 0 40px rgba(212, 175, 55, 0.65);
  
  --text-main: #f0f0f5;
  --text-muted: #a4a4b2;
  --text-dim: #6d6d7d;
  
  --accent-whatsapp: #25d366;
  --accent-whatsapp-dark: #128c7e;
  
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-digital: 'Orbitron', 'Space Grotesk', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-core);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 18%, #191924 0%, #0a0a0f 45%, #050507 100%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Canvas Background for Golden Bokeh Particles */
#bokehCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.65;
}

/* =========================================================
   CAMERA FLASH INTERACTION
   ========================================================= */

.interactive-flash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 99998;
  transition: opacity 0.3s ease;
}

.interactive-flash.firing {
  opacity: 0.85;
}

/* =========================================================
   CAMERA VIEWFINDER FRAME
   ========================================================= */

.pointer-events-none {
  pointer-events: none;
}

.viewfinder-frame {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
}

.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(212, 175, 55, 0.45);
}

.corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* =========================================================
   MAIN WRAPPER & CONTAINER
   ========================================================= */

.main-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 3.5rem 1.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* =========================================================
   HERO / BRANDING SECTION
   ========================================================= */

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.logo-wrapper {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.logo-spotlight {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.05) 55%, transparent 75%);
  animation: spotlightBreathe 4s infinite alternate ease-in-out;
  pointer-events: none;
}

.logo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
  animation: rotateRing 30s linear infinite;
  pointer-events: none;
}

.brand-logo {
  width: 185px;
  height: 185px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-500);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.35);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.logo-wrapper:hover .brand-logo {
  transform: scale(1.04);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 45px rgba(212, 175, 55, 0.55);
}

/* Focus brackets around logo */
.focus-brackets {
  position: absolute;
  inset: -14px;
  pointer-events: none;
}

.focus-brackets span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold-400);
  border-style: solid;
  border-width: 0;
  transition: all 0.3s ease;
}

.fb-tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.fb-tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.fb-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.fb-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.logo-wrapper:hover .focus-brackets span {
  transform: scale(0.9);
  border-color: #ffffff;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 5px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 15px rgba(212, 175, 55, 0.3));
}

.brand-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--gold-300);
  text-transform: uppercase;
  opacity: 0.95;
}

/* =========================================================
   NOTICE & 7-DAY COUNTDOWN CARD
   ========================================================= */

.notice-card {
  position: relative;
  background: var(--bg-surface-elevated);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem 2.6rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 10px var(--gold-400);
  animation: pulseGold 1.5s infinite alternate;
}

.notice-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.notice-subtext {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.4rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* COUNTDOWN CONTAINER */
.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  flex-wrap: nowrap;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.digital-box {
  position: relative;
  width: 96px;
  height: 90px;
  background: linear-gradient(180deg, #1d1d26 0%, #0d0d12 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.digital-box.highlight {
  border-color: var(--gold-400);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.2);
}

.digital-number {
  font-family: var(--font-digital);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.split-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.digital-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-muted);
}

.countdown-colon {
  font-family: var(--font-digital);
  font-size: 2.4rem;
  color: var(--gold-500);
  margin-top: -1.4rem;
  animation: blinkColon 1s infinite;
}

/* PROGRESS BAR */
.launch-progress-wrapper {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

#progressPercent {
  color: var(--gold-300);
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.progress-bar {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  position: relative;
  transition: width 0.6s ease;
}

.progress-glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  background: #ffffff;
  filter: blur(4px);
  opacity: 0.7;
}

/* =========================================================
   ONLY WHATSAPP CONTACT SECTION
   ========================================================= */

.contact-whatsapp-block {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.contact-lead-text {
  font-size: 0.95rem;
  color: var(--gold-300);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.btn-whatsapp-pure {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 1.15rem 2.6rem;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35), 0 0 20px rgba(37, 211, 102, 0.2);
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.btn-whatsapp-pure:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.55), 0 0 25px rgba(37, 211, 102, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
}

.wa-icon {
  font-size: 2.2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.wa-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wa-sub {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  opacity: 0.92;
  text-transform: uppercase;
}

.wa-number {
  font-family: var(--font-sans), system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.2;
}

.wa-arrow {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-left: 0.4rem;
  transition: transform var(--transition-fast);
}

.btn-whatsapp-pure:hover .wa-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

/* =========================================================
   FOOTER (COPYRIGHT & DEVELOPER CREDIT)
   ========================================================= */

.page-footer {
  text-align: center;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.copyright-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-main);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.developer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.developer-link {
  color: var(--gold-400);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: all var(--transition-fast);
  padding-bottom: 1px;
}

.developer-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON (MOBILE FRIENDLY)
   ========================================================= */

.floating-whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.floating-whatsapp-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulseWhatsapp 2.2s infinite;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(14, 14, 18, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   ANIMATIONS & KEYFRAMES
   ========================================================= */

@keyframes pulseGold {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.2); }
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes reticlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes blinkFast {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

@keyframes blinkColon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spotlightBreathe {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

@keyframes flashBurst {
  0% { opacity: 0; }
  25% { opacity: 1; }
  100% { opacity: 0; }
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */

@media (max-width: 680px) {
  .viewfinder-frame {
    top: 8px; left: 8px; right: 8px; bottom: 8px;
  }

  .logo-wrapper {
    width: 170px;
    height: 170px;
  }

  .brand-logo {
    width: 150px;
    height: 150px;
  }

  .countdown-container {
    gap: 0.45rem;
  }

  .digital-box {
    width: 70px;
    height: 72px;
  }

  .digital-number {
    font-size: 1.85rem;
  }

  .countdown-label {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }

  .countdown-colon {
    font-size: 1.6rem;
    margin-top: -1rem;
  }

  .notice-card {
    padding: 2.2rem 1.25rem;
  }

  .btn-whatsapp-pure {
    padding: 1rem 1.6rem;
    gap: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .wa-number {
    font-size: 1.25rem;
  }

  .floating-whatsapp-container {
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 400px) {
  .digital-box {
    width: 58px;
    height: 62px;
  }

  .digital-number {
    font-size: 1.5rem;
  }

  .countdown-colon {
    display: none;
  }
}
