/* ============================================================
   UM-AREX — Where Time Meets Elegance
   style.css — Complete Luxury Theme Stylesheet
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --gold-light:    #f5d780;
  --gold-main:     #d4a520;
  --gold-deep:     #b8860b;
  --gold-gradient: linear-gradient(135deg, #f5d780 0%, #d4a520 40%, #b8860b 100%);
  --gold-text-gradient: linear-gradient(135deg, #f5d780 0%, #e8c040 50%, #d4a520 100%);
  --bg-black:      #0a0a0a;
  --bg-dark:       #111111;
  --bg-card:       #161616;
  --text-white:    #f0ece4;
  --text-muted:    #a89878;
  --border-gold:   rgba(212,165,32,0.35);
  --shadow-gold:   0 0 40px rgba(212,165,32,0.25);
  --font-display:  'Playfair Display', serif;
  --font-body:     'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---------- PAGE WRAPPER ---------- */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(180,130,10,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(180,130,10,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 50%, #080808 100%);
}

/* Subtle noise/texture overlay */
.bg-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 60px 0 20px;
}

/* ---- LEFT COLUMN ---- */
.left-col {
  padding: 40px 60px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo */
.logo-wrap {
  margin-bottom: 8px;
}

.brand-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(212,165,32,0.5));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(212,165,32,0.4)); }
  50%       { filter: drop-shadow(0 0 28px rgba(212,165,32,0.75)); }
}

/* Brand Name */
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}

/* Tagline row */
.tagline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tagline-line {
  flex: 1;
  max-width: 55px;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.7;
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin: 0;
  white-space: nowrap;
}

/* Coming Soon Heading */
.coming-soon-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 18px;
  position: relative;
}

/* Animated underline on "COMING SOON" */
.coming-soon-heading::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  margin-top: 6px;
  animation: underlineGrow 1.8s 0.5s ease forwards;
}

@keyframes underlineGrow {
  to { width: 100%; }
}

/* Sub paragraph */
.sub-paragraph {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  font-weight: 300;
  color: #c8b890;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Dot separator */
.dot-sep {
  color: var(--gold-main);
  font-size: 1.4rem;
  margin-bottom: 20px;
  line-height: 1;
}

/* ---- NOTIFY FORM ---- */
.notify-form { width: 100%; max-width: 440px; }

.input-group {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group:focus-within {
  border-color: var(--gold-main);
  box-shadow: 0 0 0 3px rgba(212,165,32,0.2), inset 0 0 12px rgba(212,165,32,0.06);
}

.input-icon {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: transparent;
  color: var(--gold-main);
  font-size: 1.25rem;
  border-right: 1px solid var(--border-gold);
  flex-shrink: 0;
}

.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.notify-input::placeholder {
  color: #7a6b50;
  font-size: 0.83rem;
}

.notify-btn {
  background: var(--gold-gradient);
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a1000;
  transition: filter 0.25s, transform 0.18s, box-shadow 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.notify-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.notify-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,165,32,0.45);
}

.notify-btn:hover::before {
  background: rgba(255,255,255,0.08);
}

.notify-btn:active {
  transform: translateY(0px);
  filter: brightness(0.95);
}

/* Form message */
.form-message {
  font-size: 0.8rem;
  margin-top: 8px;
  min-height: 20px;
  letter-spacing: 0.02em;
  transition: opacity 0.4s;
}
.form-message.success { color: #7ec87e; }
.form-message.error   { color: #e07070; }

/* ---- RIGHT COLUMN — Watch ---- */
.right-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 40px 20px;
  overflow: visible;
}

.watch-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Radial glow behind watch */
.watch-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190,140,10,0.22) 0%, rgba(140,100,5,0.12) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%       { transform: scale(1.07); opacity: 1;   }
}
.watch-wrap:hover .watch-img {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.6));
}

.watch-img {
  position: relative;
  z-index: 1;
  width: clamp(300px, 42vw, 560px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(-30px 20px 50px rgba(0,0,0,0.85))
    drop-shadow(0 0 30px rgba(190,145,10,0.3));
  animation: watchFloat 7s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes watchFloat {
  0%, 100% { transform: translateY(0px)   rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(-1.2deg); }
}

/* ---- FALLBACK WATCH (CSS-only placeholder) ---- */
.watch-placeholder {
  position: relative;
  z-index: 1;
  width: clamp(260px, 38vw, 500px);
  height: clamp(260px, 38vw, 500px);
  border-radius: 50%;
  border: 6px solid var(--gold-main);
  background:
    radial-gradient(circle at 30% 30%, #2a2200, #0d0900),
    conic-gradient(from 0deg, var(--gold-deep), #0d0900 60%, var(--gold-deep));
  box-shadow:
    0 0 60px rgba(212,165,32,0.35),
    inset 0 0 40px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: watchFloat 7s ease-in-out infinite;
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */
.categories-section {
  position: relative;
  z-index: 1;
  padding: 24px 60px 28px;
  border-top: 1px solid rgba(212,165,32,0.15);
  background: linear-gradient(180deg, transparent 0%, rgba(20,14,2,0.4) 100%);
}

/* Section title row */
.cat-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cat-line {
  flex: 0 0 auto;
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.65;
}

.cat-title {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.1vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-align: center;
  white-space: nowrap;
}

/* Category items row */
.cat-items-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* Vertical divider */
.cat-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--border-gold) 40%, var(--border-gold) 60%, transparent);
  align-self: center;
  flex-shrink: 0;
}

/* Each category item */
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  cursor: pointer;
  transition: transform 0.28s ease, filter 0.28s ease;
  position: relative;
}

.cat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: transform 0.3s ease;
}

.cat-item:hover {
  transform: translateY(-5px) scale(1.06);
}

.cat-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cat-item:hover .cat-icon-wrap {
  color: var(--gold-light);
  filter: drop-shadow(0 0 12px rgba(245,215,128,0.7));
}

/* Icon wrapper */
.cat-icon-wrap {
  font-size: 1.75rem;
  color: var(--gold-main);
  transition: color 0.28s, filter 0.28s;
  line-height: 1;
}

/* Category label */
.cat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #a89870;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.45;
  margin: 0;
  transition: color 0.28s;
}

.cat-item:hover .cat-label { color: var(--gold-light); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 16px 30px 22px;
  text-align: center;
  border-top: 1px solid rgba(212,165,32,0.1);
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.social-sep {
  color: var(--border-gold);
  font-size: 1rem;
  line-height: 1;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--gold-main);
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.22s;
}

.social-link:hover {
  background: var(--gold-gradient);
  color: #1a1000;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(212,165,32,0.4);
  transform: translateY(-3px) scale(1.1);
}

.copyright {
  font-family: var(--font-body);
  font-size: 0.73rem;
  color: #5a4d36;
  letter-spacing: 0.06em;
  margin: 0;
}

/* =========================================
   ANIMATIONS — ENTRY FADE-IN
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.90s; }

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 991.98px) {

  .hero-section { padding: 40px 0 16px; }

  .left-col {
    padding: 30px 40px 20px;
    align-items: center;
    text-align: center;
  }

  .tagline-row { justify-content: center; }

  .notify-form { max-width: 480px; margin: 0 auto; }

  .right-col {
    padding: 20px 40px 20px;
    order: -1; /* Watch above content on tablet */
  }

  .watch-img {
    width: clamp(240px, 55vw, 380px);
  }

  .watch-glow {
    width: 360px;
    height: 360px;
  }

  .categories-section { padding: 20px 30px 24px; }

  .cat-items-row { gap: 4px; }

  .cat-item { padding: 10px 18px; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 767.98px) {

  .hero-section { padding: 30px 0 10px; }

  .left-col {
    padding: 20px 24px 16px;
    align-items: center;
    text-align: center;
    order: 2;
  }

  .brand-logo { width: 80px; }

  .coming-soon-heading { font-size: clamp(2.2rem, 11vw, 3rem); }

  .right-col {
    padding: 16px 24px 8px;
    order: 1;
  }

  .watch-img {
    width: clamp(200px, 72vw, 320px);
    animation: watchFloatMobile 6s ease-in-out infinite;
  }

  @keyframes watchFloatMobile {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50%       { transform: translateY(-10px) rotate(-0.8deg); }
  }

  .watch-glow {
    width: 280px;
    height: 280px;
  }

  .categories-section { padding: 16px 16px 20px; }

  .cat-title { font-size: 0.65rem; letter-spacing: 0.14em; }

  .cat-items-row {
    gap: 0;
    row-gap: 12px;
  }

  .cat-divider {
    display: none; /* Remove vertical dividers on mobile */
  }

  .cat-item {
    flex: 0 0 33%;
    padding: 8px 4px;
  }

  .cat-icon-wrap { font-size: 1.4rem; }
  .cat-label { font-size: 0.56rem; letter-spacing: 0.1em; }

  .notify-input { font-size: 0.78rem; padding: 12px 10px; }
  .notify-btn { padding: 12px 14px; font-size: 0.72rem; }
}

@media (max-width: 420px) {
  .left-col { padding: 16px 16px 12px; }
  .brand-name { font-size: 1.8rem; }
  .tagline { font-size: 0.7rem; }
  .notify-form { max-width: 100%; }
}
