/* ==========================================================================
   FIREWORKSMEDIA — DESIGN SYSTEM & RESPONSIVE STYLES
   Breakpoints canonical definitions (.CORE/BREAKPOINTS.md):
   SM: 0-479px (Base)
   MO: 480-768px (min-width: 480px)
   TP: 769-1024px (min-width: 769px)
   TL: 1025-1365px (min-width: 1025px)
   DE: 1366-1599px (min-width: 1366px)
   LD: 1600px+ (min-width: 1600px)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Local Fonts Definition
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/outfit-v11-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/montserrat-v26-latin-400.woff2') format('woff2');
}

:root {
  --bp-mobile: 480px;
  --bp-tablet: 769px;
  --bp-laptop: 1025px;
  --bp-desktop: 1366px;
  --bp-wide: 1600px;
  
  --font-brand: 'Outfit', sans-serif;
  --font-detail: 'Montserrat', sans-serif;
  --color-dark: #2b2b2b;
  --color-white: #ffffff;
  --color-light-gray: #cccccc;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: var(--font-detail);
  background-color: #e6e4e0;
}

/* Base Canvas & Stage */
.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/fireworksmedia_BG.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   BRACKET: SM (Small Mobile: 0 - 479px) - BASE CSS
   ========================================================================== */
.logo-container {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  width: auto;
  max-width: 95vw;
}

.logo-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-signet {
  height: 26px;
  width: auto;
  display: block;
}

.logo-title {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-dark);
  margin-top: 6px;
  margin-bottom: 6px;
  opacity: 0.8;
}

.logo-subtitle {
  font-family: var(--font-detail);
  font-weight: 400;
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  color: var(--color-dark);
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  word-spacing: normal;
}

/* Contact Info in Bottom Right */
.contact-info {
  position: absolute;
  right: 4vw;
  bottom: 3vh;
  text-align: right;
  color: var(--color-white);
  z-index: 10;
}

.contact-brand {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.contact-details {
  font-family: var(--font-detail);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  color: var(--color-light-gray);
  line-height: 1.5;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* ==========================================================================
   BRACKET: MO (Mobile: 480 - 768px)
   ========================================================================== */
@media (min-width: 480px) {
  .logo-container {
    left: 45%;
    top: 56%;
    transform: translate(-35%, -50%);
  }

  .logo-top {
    gap: 10px;
  }

  .logo-signet {
    height: 34px;
  }

  .logo-title {
    font-size: 2.2rem;
  }

  .logo-divider {
    margin-top: 8px;
    margin-bottom: 7px;
  }

  .logo-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-align: center;
    white-space: nowrap;
  }

  .contact-info {
    right: 5vw;
    bottom: 4vh;
  }

  .contact-brand {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .contact-details {
    font-size: 0.72rem;
    line-height: 1.6;
  }
}

/* ==========================================================================
   BRACKET: TP (Tablet Portrait: 769 - 1024px)
   ========================================================================== */
@media (min-width: 769px) {
  .logo-container {
    left: 38%;
    top: 59%;
    transform: translate(-25%, -50%);
  }

  .logo-top {
    gap: 12px;
  }

  .logo-signet {
    height: 44px;
  }

  .logo-title {
    font-size: 2.8rem;
  }

  .logo-divider {
    margin-top: 9px;
    margin-bottom: 8px;
  }

  .logo-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-align: center;
    white-space: nowrap;
  }

  .contact-info {
    right: 5vw;
    bottom: 5vh;
  }

  .contact-brand {
    font-size: 0.76rem;
  }

  .contact-details {
    font-size: 0.76rem;
    line-height: 1.65;
  }
}

/* ==========================================================================
   BRACKET: TL (Tablet Landscape / Small Laptop: 1025 - 1365px)
   ========================================================================== */
@media (min-width: 1025px) {
  .logo-container {
    left: 36%;
    top: 61%;
    transform: translate(-20%, -50%);
  }

  .logo-top {
    gap: 14px;
  }

  .logo-signet {
    height: 48px;
  }

  .logo-title {
    font-size: 3.1rem;
  }

  .logo-divider {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .logo-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.17em;
    text-align: center;
    white-space: nowrap;
  }

  .contact-info {
    right: 5vw;
    bottom: 5vh;
  }

  .contact-brand {
    font-size: 0.78rem;
  }

  .contact-details {
    font-size: 0.78rem;
    line-height: 1.7;
  }
}

/* ==========================================================================
   BRACKET: DE (Desktop: 1366 - 1599px)
   ========================================================================== */
@media (min-width: 1366px) {
  .logo-container {
    left: 35%;
    top: 62%;
    transform: translate(-20%, -50%);
  }

  .logo-top {
    gap: 14px;
  }

  .logo-signet {
    height: 50px;
  }

  .logo-title {
    font-size: 3.3rem;
  }

  .logo-divider {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .logo-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.17em;
    text-align: center;
    white-space: nowrap;
  }

  .contact-info {
    right: 5vw;
    bottom: 6vh;
  }

  .contact-brand {
    font-size: 0.80rem;
    margin-bottom: 8px;
  }

  .contact-details {
    font-size: 0.80rem;
  }
}

/* ==========================================================================
   BRACKET: LD (Large Desktop: 1600px+)
   ========================================================================== */
@media (min-width: 1600px) {
  .logo-container {
    left: 35%;
    top: 62%;
    transform: translate(-20%, -50%);
  }

  .logo-top {
    gap: 16px;
  }

  .logo-signet {
    height: 56px;
  }

  .logo-title {
    font-size: 3.7rem;
  }

  .logo-divider {
    margin-top: 11px;
    margin-bottom: 9px;
  }

  .logo-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.17em;
    text-align: center;
    white-space: nowrap;
  }

  .contact-info {
    right: 6vw;
    bottom: 6vh;
  }

  .contact-brand {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .contact-details {
    font-size: 0.85rem;
    line-height: 1.8;
  }
}
