/* ==========================================================================
   Accure Assets - Luxury Coming Soon Design System & Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  /* Brand Palette */
  --bg-dark: #040812;
  --bg-navy: #081021;
  --bg-card: rgba(12, 22, 42, 0.6);
  --bg-card-hover: rgba(20, 35, 65, 0.75);

  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #997A15;
  --gold-metallic: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-text: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA771C 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);

  --navy-accent: #1E293B;
  --text-bright: #F8FAFC;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-bright: rgba(243, 229, 171, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --font-heading: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Background Canvas & Lighting Effects */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.ambient-light {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.light-1 {
  top: -10%;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(8, 16, 33, 0) 70%);
}

.light-2 {
  bottom: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(14, 34, 68, 0.4) 0%, rgba(4, 8, 18, 0) 70%);
}

.light-3 {
  top: 40%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(153, 122, 21, 0.1) 0%, rgba(4, 8, 18, 0) 70%);
}

/* Utility Typography Classes */
.gold-text-gradient {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-metallic-bg {
  background: var(--gold-metallic);
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--gold-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Navbar */
.site-header {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  border: 1px solid var(--border-gold);
  transition: var(--transition-smooth);
}

.brand-logo-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-bright);
}

.brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-contact:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid var(--border-gold-bright);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  margin-bottom: 28px;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-bright);
  letter-spacing: 1px;
}

.hero-heading span.highlight {
  display: block;
  font-size: 4.5rem;
}

.hero-subheading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 48px;
  letter-spacing: 0.5px;
}

.hero-subheading strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Countdown Timer */
.countdown-container {
  margin: 40px auto 56px;
  max-width: 840px;
}

.countdown-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  position: relative;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.countdown-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gold-metallic);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* CTA Action Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--gold-metallic);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.55);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-bright);
  background: rgba(15, 26, 46, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Feature Pillars Section */
.features-section {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 20px 28px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
}

.pillar-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(8, 16, 33, 0.4) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-metallic);
  border-color: var(--gold-light);
}

.pillar-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-primary);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-box svg {
  fill: var(--bg-dark);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Poster Preview Banner Section */
.poster-banner-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 5;
}

.poster-banner-card {
  background: linear-gradient(135deg, rgba(12, 22, 42, 0.9) 0%, rgba(8, 16, 33, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}

.poster-content-left {
  text-align: left;
}

.poster-content-left h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.25;
}

.poster-content-left p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.poster-preview-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.poster-preview-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
}

.poster-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 18, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.poster-preview-wrapper:hover .poster-overlay {
  opacity: 1;
}

.zoom-btn {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--gold-primary);
  border: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 14, 0.85);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: linear-gradient(180deg, #0D182E 0%, #060B16 100%);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.25);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.modal-header-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-header-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-primary);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.modal-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(4, 8, 18, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  background: rgba(8, 16, 33, 0.9);
}

/* Lightbox Modal for Poster */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 14, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-bright);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
  object-fit: contain;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0F1A2E 0%, #060C18 100%);
  border: 1px solid var(--border-gold-bright);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  color: var(--text-bright);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1200;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Site Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 5;
  background: rgba(4, 8, 18, 0.9);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
}

/* Media Queries & Responsive Design */
@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-heading {
    font-size: 2.8rem;
  }
  .hero-heading span.highlight {
    font-size: 3.2rem;
  }
  .poster-banner-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .poster-content-left {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .countdown-number {
    font-size: 2.4rem;
  }
  .nav-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
  .hero-heading span.highlight {
    font-size: 2.5rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
}
