/* Maelo Enterprises LLC - Minimalist Luxury Coming Soon */

:root {
  --bg-onyx: #07080a;
  --bg-card: rgba(16, 18, 24, 0.7);
  --gold-300: #f6e2a8;
  --gold-400: #e5c378;
  --gold-500: #cba258;
  --text-pure: #ffffff;
  --text-muted: #94a3b8;
  --border-gold: rgba(203, 162, 88, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);
  --font-serif: 'Cinzel', serif, -apple-system;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  height: 100%;
  background-color: var(--bg-onyx);
  color: var(--text-pure);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere */
.bg-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 162, 88, 0.22) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* Main Container */
.coming-soon-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.card-container {
  max-width: 680px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 56px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(203, 162, 88, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.logo-box {
  margin-bottom: 24px;
}

.brand-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(203, 162, 88, 0.3));
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(203, 162, 88, 0.1);
  border: 1px solid var(--border-gold);
  padding: 6px 18px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #ffffff 20%, #f6e2a8 60%, #cba258 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Contact Area */
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-top: 1px solid var(--border-glass);
  padding-top: 28px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-300);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-email svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

.contact-email:hover {
  background: rgba(203, 162, 88, 0.15);
  border-color: var(--gold-400);
  color: var(--text-pure);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203, 162, 88, 0.2);
}

/* Footer */
.footer {
  margin-top: 32px;
  font-size: 0.8rem;
  color: #475569;
}

@media (max-width: 600px) {
  .card-container {
    padding: 40px 24px;
  }
  
  .brand-logo {
    width: 160px;
    height: 160px;
  }

  .headline {
    letter-spacing: 2px;
  }
}
