/*
 * Quick Coming Soon — Main Stylesheet
 * =====================================
 * All design tokens are defined as CSS Custom Properties in :root.
 * Edit values there first before touching anything else.
 */

/* ─── Design Tokens ─────────────────────────────────────────────────── */
:root {
  /* Typography */
  --font-primary: "Mooli", sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --letter-spacing-h2: 4px;
  --line-height-body: 1.5;

  /* Fluid font sizes (clamp: min | preferred | max)
       Scales smoothly between mobile and desktop. */
  --font-size-h1: clamp(40px, 10vw, 80px);
  --font-size-h2: clamp(15px, 3vw, 30px);
  --font-size-body: clamp(18px, 3.5vw, 24px);

  /* Colors */
  --color-bg: #000000;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-text-light: #ffffff;
  --color-text-dark: #000000;
  --color-middle-bg: #ffffff;
  --color-accent: #e63b4d;
  --color-sep: #ffffff;
  --color-shadow: rgba(0, 0, 0, 0.5);

  /* Spacing */
  --spacing-wrapper-gap: 50px; /* gap between header / middle / footer */
  --spacing-wrapper-pad: 20px; /* left/right padding on all sections   */
  --spacing-header-gap: 15px; /* gap between h1 and h2 inside header  */
  --spacing-middle-pad-v: 10px; /* top/bottom padding inside notice bar */

  /* Separator bars */
  --sep-width: 60px;
  --sep-height: 1px;
  --sep-top: 15px;
  --sep-one-offset: -80px;
  --sep-two-offset: 15px;

  /* Social icons */
  --social-icon-size: 62px;
  --social-icon-gap: 28px;

  /* Transitions */
  --transition-icon: background-position 0.2s ease;
}

/* ─── Modern Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
dfn,
th,
var {
  font-style: normal;
  font-weight: var(--font-weight-normal);
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: var(--font-weight-normal);
}

/* ─── Base ──────────────────────────────────────────────────────────── */
html,
body {
  height: 100%;
  background-color: var(--color-bg);
}

body {
  color: var(--color-text-light);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 100px var(--color-shadow);
  position: relative;
}

/* ─── Overlay ───────────────────────────────────────────────────────── */
.black {
  background-color: var(--color-overlay);
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left: 0 */
}

/* ─── Layout ────────────────────────────────────────────────────────── */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-wrapper-gap);
  padding: var(--spacing-wrapper-pad) 0;
}

/* ─── Header ────────────────────────────────────────────────────────── */
#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-header-gap);
  padding: 0 var(--spacing-wrapper-pad);
}

h1 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-h2);
}

/* Separator bars flanking the tagline */
h2 strong.sep-one,
h2 strong.sep-two {
  width: var(--sep-width);
  height: var(--sep-height);
  background: var(--color-sep);
  position: absolute;
  margin-top: var(--sep-top);
}

h2 strong.sep-one {
  margin-left: var(--sep-one-offset);
}

h2 strong.sep-two {
  margin-left: var(--sep-two-offset);
}

/* ─── Middle Notice ─────────────────────────────────────────────────── */
#middle {
  background: var(--color-middle-bg);
  padding: var(--spacing-middle-pad-v) var(--spacing-wrapper-pad);
}

#middle p {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-dark);
  line-height: var(--line-height-body);
  width: 100%;
  margin: 0px auto;
  max-width: 900px;
}

#middle p span {
  color: var(--color-accent);
}

/* ─── Footer ────────────────────────────────────────────────────────── */
#footer {
  padding: 0 var(--spacing-wrapper-pad);
}

/* ─── Social Icons ──────────────────────────────────────────────────── */
ul.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--social-icon-gap);
  height: var(--social-icon-size);
  padding: 0;
}

ul.social li {
  background: url(../images/social.png) left top no-repeat;
  width: var(--social-icon-size);
  height: var(--social-icon-size);
  position: relative;
  transition: var(--transition-icon);
}

ul.social li a {
  display: block;
  width: var(--social-icon-size);
  height: var(--social-icon-size);
}

/* Facebook */
ul.social li.facebook {
  background-position: 0 0;
}
ul.social li.facebook:hover {
  background-position: 0 calc(-1 * var(--social-icon-size));
}

/* Twitter */
ul.social li.twitter {
  background-position: -90px 0;
}
ul.social li.twitter:hover {
  background-position: -90px calc(-1 * var(--social-icon-size));
}

/* YouTube */
ul.social li.youtube {
  background-position: -180px 0;
}
ul.social li.youtube:hover {
  background-position: -180px calc(-1 * var(--social-icon-size));
}

/* ─── Responsive ────────────────────────────────────────────────────── */
/*
 * Font sizes are fluid via clamp() and need no overrides here.
 * Only layout tokens and structural tweaks change at small screens.
 */
@media screen and (max-width: 568px) {
  :root {
    --letter-spacing-h2: 2px;
    --spacing-wrapper-gap: 30px;
    --sep-width: 30px;
    --sep-one-offset: -40px;
    --sep-two-offset: 10px;
    --sep-top: 7px;
  }
  h2 strong.sep-one,
  h2 strong.sep-two {
    display: none;
  }
}
