/* -------------------------------------------------------------
   FONTS
------------------------------------------------------------- */
@font-face {
  font-family: 'Bebas Neue Pro Bold';
  src: url('fonts/Bebas Neue Pro Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Bebas Neue Pro Book';
  src: url('fonts/Bebas Neue Pro Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Arial Narrow';
  src: url('fonts/Arial Narrow.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Arial Narrow';
  src: url('fonts/Arial Narrow Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* -------------------------------------------------------------
   RESET & VARIABLES
------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d87c28;
  --primary-hover: #b86217;
  --bg-dark: #0e1114;
  --card-bg: rgba(22, 27, 34, 0.95);
  --text-light: #ffffff;
  --text-muted: #b0b8c1;
  --border-subtle: rgba(255, 255, 255, 0.12);
}

body {
  font-family: 'Arial Narrow', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  width: 100%;
}

/* -------------------------------------------------------------
   STICKY / TOP HEADER
------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  text-align: center;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.brand-logo {
  max-width: 240px;
  width: 70%;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

/* -------------------------------------------------------------
   FULL SCREEN BANNERS
------------------------------------------------------------- */
.banner-section {
  width: 100%;
  line-height: 0; /* Prevents tiny whitespace under images */
}

.full-banner-img {
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* -------------------------------------------------------------
   SUBSCRIBE SECTION
------------------------------------------------------------- */
.subscribe-section {
  background-color: var(--bg-dark);
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
}

.subscribe-container {
  width: 100%;
  max-width: 650px;
}

.notify-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.section-title {
  font-family: 'Bebas Neue Pro Bold', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.4;
}

.form-group {
  display: flex;
  gap: 10px;
}

.form-group input {
  flex: 1;
  padding: 15px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-family: 'Arial Narrow', sans-serif;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: var(--primary-color);
}

.form-group button {
  padding: 15px 30px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: 'Bebas Neue Pro Bold', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.form-group button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 15px;
  font-size: 1.05rem;
  display: none;
  font-weight: bold;
}

.form-message.success {
  color: #4ade80;
}

.form-message.error {
  color: #f87171;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.site-footer {
  background-color: #080a0c;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
}

/* -------------------------------------------------------------
   MOBILE RESPONSIVENESS
------------------------------------------------------------- */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }

  .brand-logo {
    max-width: 170px;
  }

  /* On mobile screens, keep image aspect ratio natural so all text/graphics in the banners remain fully visible */
  .full-banner-img {
    min-height: auto;
  }

  .subscribe-section {
    padding: 40px 15px;
  }

  .notify-box {
    padding: 25px 18px;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group button {
    width: 100%;
  }
}