/* ==========================================================================
   AZZU.IN - Mohammad Azharuddin Coming Soon Page
   Strict Viewport 100vh Desktop & 100% Fluid Mobile Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,600&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #fbf9f5;
  --bg-tertiary: #f4ede2;
  
  --navy-deep: #050d1a;
  --navy-dark: #0a192f;
  --navy-medium: #112847;
  --navy-accent: #1e3a63;
  
  --gold-primary: #c59b3f;
  --gold-light: #fef1b8;
  --gold-metallic: linear-gradient(135deg, #c59b3f 0%, #fae69e 28%, #a27521 54%, #fae8a8 78%, #93681a 100%);
  --gold-sheen: linear-gradient(90deg, #b8860b 0%, #e6ca65 30%, #fff4c2 50%, #e6ca65 70%, #b8860b 100%);
  --gold-border: linear-gradient(135deg, rgba(197, 155, 63, 0.6) 0%, rgba(254, 241, 184, 0.9) 50%, rgba(162, 117, 33, 0.6) 100%);
  
  --text-dark: #121820;
  --text-muted: #5a6676;
  --text-gold: #9d7328;
  --text-light: #ffffff;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-royal: 'Cinzel', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Glass */
  --shadow-subtle: 0 6px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 12px 30px rgba(5, 13, 26, 0.12);
  --shadow-gold: 0 8px 25px rgba(197, 155, 63, 0.25);

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  position: relative;
  line-height: 1.4;
}

/* Ambient Canvas Particles */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Main Container Wrapper - Desktop Strictly 100vh No-Scroll */
.page-wrapper {
  position: relative;
  z-index: 2;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #faf8f5;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 244, 0.85) 60%),
    linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 45%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0.85) 100%),
    url('../images/cricket-bg.jpg');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}

/* Top Navigation Bar */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3.5rem 0.3rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  flex-shrink: 0;
}

.nav-left-monogram {
  display: flex;
  align-items: center;
}

.monogram-seal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-royal);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  background: linear-gradient(135deg, #ffffff 0%, #fdf8eb 100%);
  box-shadow: 0 4px 12px rgba(197, 155, 63, 0.15);
}

.nav-center-tags {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--navy-medium);
  text-transform: uppercase;
}

.nav-center-tags span {
  margin: 0 0.75rem;
  color: var(--gold-primary);
  opacity: 0.6;
}

.nav-right-domain {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--navy-dark);
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(197, 155, 63, 0.35);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.nav-right-domain:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==========================================================================
   Hero Stage (Left Portrait | Center Branding)
   ========================================================================== */
.hero-stage {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(6vw, 4.5rem);
  width: 100%;
  flex: 1;
  min-height: 0;
}

/* Left Hero Column: Portrait, Signature & Quote */
.hero-column.left-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.portrait-container {
  position: relative;
  height: min(40vh, 290px);
  width: auto;
  aspect-ratio: 240 / 290;
  max-width: 240px;
  margin-bottom: 0.4rem;
  border-radius: 14px;
  padding: 5px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(245, 235, 215, 0.85));
  box-shadow: 0 15px 35px -10px rgba(5, 13, 26, 0.15), 0 0 0 1px rgba(197, 155, 63, 0.35);
  transition: var(--transition-smooth);
}

.portrait-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(5, 13, 26, 0.2), 0 0 0 2px var(--gold-primary);
}

.portrait-inner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #0d1e38;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.portrait-overlay-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, transparent 60%, rgba(5, 13, 26, 0.2) 100%);
  pointer-events: none;
}

.signature-wrapper {
  margin: 0.1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signature-photo-img {
  height: min(5.5vh, 48px);
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(17, 40, 71, 0.15));
  transition: transform 0.3s ease;
}

.signature-photo-img:hover {
  transform: scale(1.05);
}

.leader-name-tag {
  font-family: var(--font-royal);
  font-size: min(1.8vh, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.quote-left-box {
  margin-top: 0.3rem;
  position: relative;
  padding: 0 0.5rem;
}

.quote-left-box p {
  font-family: var(--font-serif);
  font-size: min(1.7vh, 0.82rem);
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.quote-divider-line {
  width: 36px;
  height: 2px;
  background: var(--gold-sheen);
  margin: 0.25rem auto 0;
  border-radius: 2px;
}

/* Center Hero Column: Brand Logo, AZZU, Coming Soon */
.hero-column.center-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

/* 3D 'A' Logo Emblem with Metallic Cricket Ball */
.brand-identity-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.4rem;
}

.emblem-3d-wrapper {
  position: relative;
  height: min(11vh, 85px);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emblem-img-logo {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(197, 155, 63, 0.3));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.emblem-img-logo:hover {
  transform: scale(1.06);
}

.brand-title-azzu {
  font-family: var(--font-royal);
  font-size: min(5.5vh, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  background: linear-gradient(180deg, #1c2e4a 0%, #081426 60%, #050e1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-top: 0.1rem;
}

.brand-full-name {
  font-family: var(--font-royal);
  font-size: min(2vh, 1rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--navy-dark);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.brand-triad-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
  width: 100%;
  max-width: 380px;
}

.triad-line {
  flex: 1;
  height: 1px;
  background: var(--gold-sheen);
  opacity: 0.7;
}

.triad-text {
  font-family: var(--font-sans);
  font-size: min(1.6vh, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-tagline-motto {
  font-family: var(--font-sans);
  font-size: min(1.6vh, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Coming Soon Headline Section */
.coming-soon-header-block {
  margin: min(2vh, 1.2rem) 0 min(1vh, 0.5rem);
  position: relative;
}

.sub-label-website {
  font-family: var(--font-royal);
  font-size: min(2vh, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--navy-medium);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.title-coming-soon {
  font-family: var(--font-serif);
  font-size: min(5vh, 3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(197, 155, 63, 0.35));
  line-height: 1.1;
}

.tagline-legacy {
  font-family: var(--font-sans);
  font-size: min(1.8vh, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--navy-accent);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ==========================================================================
   Bottom Luxury Navy Ribbon & Footer
   ========================================================================== */
.footer-ribbon {
  background: linear-gradient(180deg, #07152b 0%, #030a16 100%);
  position: relative;
  color: #ffffff;
  padding: 0.8rem 2rem 0.6rem;
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-sheen);
  box-shadow: 0 0 10px rgba(197, 155, 63, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.powered-by-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 440px;
}

.powered-by-tag .ribbon-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 155, 63, 0.8), transparent);
}

.powered-by-tag span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #f7e6ab;
  text-transform: uppercase;
  white-space: nowrap;
}

.gold-highlight {
  color: #ffffff;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.copyright-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #7d8b9e;
  letter-spacing: 0.05em;
}

.copyright-text a {
  color: #c59b3f;
  text-decoration: none;
}

.copyright-text a:hover {
  color: #fae69e;
}

/* ==========================================================================
   Fluid Mobile & Tablet Styling (Prevents Any Cutoffs or Horizontal Bugs)
   ========================================================================== */
@media (max-width: 992px) {
  html, body {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .page-wrapper {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
  }

  .top-nav {
    padding: 1rem 1.2rem 0.5rem !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
    justify-content: space-between !important;
  }

  .nav-center-tags {
    order: 3 !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.16em !important;
    margin-top: 0.3rem !important;
  }

  .nav-center-tags span {
    margin: 0 0.4rem !important;
  }

  .nav-right-domain {
    font-size: 0.74rem !important;
    letter-spacing: 0.14em !important;
    padding: 0.25rem 0.65rem !important;
  }

  .hero-stage {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.8rem !important;
    padding: 1.5rem 1rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-column.left-pillar {
    order: 1 !important;
  }

  .hero-column.center-pillar {
    order: 2 !important;
    width: 100% !important;
    max-width: 480px !important;
  }

  .portrait-container {
    height: 250px !important;
    width: 200px !important;
    max-width: 85% !important;
  }

  .signature-photo-img {
    height: 42px !important;
    max-width: 150px !important;
  }

  .leader-name-tag {
    font-size: 0.8rem !important;
    letter-spacing: 0.16em !important;
  }

  .quote-left-box p {
    font-size: 0.76rem !important;
    letter-spacing: 0.05em !important;
  }

  .emblem-3d-wrapper {
    height: 70px !important;
  }

  .brand-title-azzu {
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
    letter-spacing: 0.18em !important;
    text-indent: 0.18em !important;
  }

  .brand-full-name {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem) !important;
    letter-spacing: 0.18em !important;
  }

  .brand-triad-tags {
    max-width: 90% !important;
  }

  .triad-text {
    font-size: 0.65rem !important;
    letter-spacing: 0.14em !important;
  }

  .brand-tagline-motto {
    font-size: 0.68rem !important;
    letter-spacing: 0.18em !important;
  }

  .sub-label-website {
    font-size: 0.95rem !important;
    letter-spacing: 0.24em !important;
  }

  .title-coming-soon {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
    letter-spacing: 0.08em !important;
  }

  .tagline-legacy {
    font-size: 0.74rem !important;
    letter-spacing: 0.14em !important;
  }

  .footer-ribbon {
    padding: 1.2rem 1rem 1rem !important;
  }

  .powered-by-tag {
    max-width: 95% !important;
    gap: 0.5rem !important;
  }

  .powered-by-tag span {
    font-size: 0.7rem !important;
    letter-spacing: 0.14em !important;
  }

  .copyright-text {
    font-size: 0.68rem !important;
  }
}
