/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #a07d3f;
  --cream: #f5f0e8;
  --dark: #0a0a0a;
  --dark-overlay: rgba(0, 0, 0, 0.55);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  background: var(--dark);
}

/* ========== VIDEO BACKGROUND ========== */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.1);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* ========== MAIN CONTAINER ========== */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ========== HEADER / NAV ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  animation: fadeSlideDown 1s var(--transition-smooth) forwards;
  opacity: 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
}

.logo-text span {
  color: var(--gold);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-contact a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-contact a:hover {
  color: var(--gold);
}

.header-contact a svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* ========== HERO / MAIN CONTENT ========== */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 2rem;
}

.decorative-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  animation: fadeIn 1.2s 0.3s var(--transition-smooth) forwards;
  opacity: 0;
}

.decorative-line::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.5rem;
  background: transparent;
  padding: 0 8px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeSlideUp 1s 0.5s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 3px;
  color: var(--cream);
  animation: fadeSlideUp 1s 0.7s var(--transition-smooth) forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  line-height: 1.8;
  animation: fadeSlideUp 1s 0.9s var(--transition-smooth) forwards;
  opacity: 0;
}

/* ========== COUNTDOWN / STATUS ========== */
.status-section {
  animation: fadeSlideUp 1s 1.1s var(--transition-smooth) forwards;
  opacity: 0;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 3rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.countdown {
  display: flex;
  gap: 1.5rem;
}

.countdown-item {
  text-align: center;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  min-width: 60px;
}

.countdown-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 0.4rem;
  display: block;
}

.countdown-separator {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 0.2rem;
  animation: pulse 1.5s infinite;
}

.divider-vertical {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.status-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 240, 232, 0.8);
  letter-spacing: 1px;
}

.status-text .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 10px;
  animation: glowPulse 2s infinite;
  vertical-align: middle;
}

/* ========== NOTIFY FORM ========== */
.notify-section {
  animation: fadeSlideUp 1s 1.3s var(--transition-smooth) forwards;
  opacity: 0;
  margin-top: 0.5rem;
}

.notify-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 480px;
  margin: 0 auto;
  transition: border-color 0.3s ease;
}

.notify-form:focus-within {
  border-color: var(--gold);
}

.notify-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  outline: none;
}

.notify-form input::placeholder {
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 1px;
}

.notify-form button {
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  letter-spacing: 3px;
}

.notify-hint {
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

/* ========== FOOTER ========== */
.footer {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  animation: fadeSlideUp 1s 1.5s var(--transition-smooth) forwards;
  opacity: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(245, 240, 232, 0.6);
}

.footer-location svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.footer-contact-links {
  display: flex;
  gap: 1.5rem;
}

.footer-contact-links a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-contact-links a:hover {
  color: var(--gold);
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--cream);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-link:hover svg {
  opacity: 1;
  fill: var(--gold);
}

/* ========== FLOATING PARTICLES ========== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 9s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 11s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 10s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 8s; }
.particle:nth-child(8) { left: 60%; animation-delay: 7s; animation-duration: 14s; }

/* ========== TOAST NOTIFICATION ========== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1rem 2rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  z-index: 100;
  opacity: 0;
  transition: all 0.5s var(--transition-smooth);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 4px #4ade80, 0 0 8px #4ade80; opacity: 1; }
  50%      { box-shadow: 0 0 8px #4ade80, 0 0 16px #4ade80; opacity: 0.7; }
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { opacity: 0.3; }
  90%  { opacity: 0; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .header-contact {
    gap: 1rem;
  }

  .header-contact a {
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }

  .glass-card {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-value {
    font-size: 2rem;
    min-width: 45px;
  }

  .divider-vertical {
    width: 80%;
    height: 1px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .notify-form input {
    text-align: center;
    padding: 1rem;
  }

  .notify-form button {
    padding: 1rem;
    border-radius: 0;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .footer-left {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .countdown-separator {
    display: none;
  }

  .countdown {
    gap: 0.75rem;
  }

  .countdown-value {
    font-size: 1.6rem;
    min-width: 38px;
  }

  .hero-tagline {
    font-size: 0.85rem;
  }
}
