/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #F2F2F2;
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
    background: linear-gradient(135deg, #00327D 0%, #002459 100%);
    color: #F2F2F2;
    padding: 0rem 1rem; 
    position: sticky;
    top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #F2F2F2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #4CA626;
    border-bottom: 2px solid #4CA626;
}

/* ========================================
   Hero Section
   ======================================== */
/* Hero Section Full Width */
/* Hero Section Full Width Fix */
.hero {
    background: linear-gradient(135deg, #002459 0%, #00327D 100%);
    color: #F2F2F2;
    padding: 5rem 2rem; /* top/bottom padding, horizontal small padding for content */
    text-align: center;
    width: 100%;
}

.hero .hero-content {
    max-width: 1200px; /* center content like on home page */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    background: linear-gradient(135deg, #1a3a52 0%, #244f75 100%);
    border-radius: 12px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CA626;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Container & Sections
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-child {
    border-bottom: none;
}

.section h3 {
    color: #00327D;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 35px;
    background-color: #4CA626;
    border-radius: 3px;
}

.section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #0F172A;
    max-width: 6000px;
}

/* ========================================
   Image Grid
   ======================================== */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}

.image-about {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(76, 166, 38, 0.15);
}

/* ========================================
   Buttons
   ======================================== */
.cta-button {
    background-color: #4CA626;
    color: #F2F2F2;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 166, 38, 0.3);
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #195300;
    box-shadow: 0 6px 16px rgba(25, 83, 0, 0.4);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: #002459;
    color: #F2F2F2;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 4px solid #4CA626;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

footer .copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(242, 242, 242, 0.2);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    nav ul {
        flex-direction: row;
        gap: 0.8rem;
        text-align: center;
        width: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    nav a {
        font-size: 0.85rem;
        padding-bottom: 0.25rem;
    }

    nav h1 {
        font-size: 1.5rem;
    }

    img[alt="Sizzle & Success logo"] {
        height: 80px !important;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        height: 300px;
        max-width: 100%;
    }

    .section h3 {
        font-size: 1.8rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .container {
        padding: 1rem;
    }

    .section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }

    footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.3rem 0.5rem;
    }

    nav {
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    img[alt="Sizzle & Success logo"] {
        height: 50px !important;
    }

    nav ul {
        gap: 0.3rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav li {
        width: auto;
    }

    nav a {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        padding-bottom: 0.2rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-image {
        height: 250px;
    }

    .section h3 {
        font-size: 1.4rem;
    }

    .section h3::before {
        width: 4px;
        height: 24px;
    }

    .image-placeholder {
        height: 200px;
    }

    .container {
        padding: 0.75rem;
    }

    .section {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }

    .cta-button {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 1.5rem 0.75rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}




.trailerbackground {
    background: linear-gradient(135deg, #1a3a52 0%, #244f75 100%);
    border-radius: 12px;
    height: 700px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CA626;
    font-size: 1.2rem;
}

.hero .hero-image-img {
    width: 100%;
    max-width: 2000px;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* ===== Media Sliders CSS ===== */
    .media-slider {
      position: relative;
      max-width: 1200px;
      margin: 2rem auto;
      overflow: hidden;
      border-radius: 12px;
      background-color: #002459;
    }

    .media-slider .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
    }

    .media-slider .slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .media-slider .slide img,
    .media-slider .slide video {
      max-width: 100%;
      max-height: 600px;
      border-radius: 12px;
      display: block;
    }

    .media-slider .prev,
    .media-slider .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #F2F2F2;
      background-color: rgba(0, 50, 125, 0.7);
      border: none;
      padding: 0.75rem 1rem;
      cursor: pointer;
      font-size: 1.2rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .media-slider .prev:hover,
    .media-slider .next:hover {
      background-color: #4CA626;
    }

    .media-slider .prev { left: 10px; }
    .media-slider .next { right: 10px; }

    /* Slider section title */
    .media-slider h4 {
      color: #4CA626;
      text-align: center;
      margin-bottom: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .media-slider .slide img,
      .media-slider .slide video {
        max-height: 400px;
      }
      .media-slider .prev, .media-slider .next {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .media-slider .slide img,
      .media-slider .slide video {
        max-height: 250px;
      }
      .media-slider .prev, .media-slider .next {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
      }
    }

    /* ===== Socials Page ===== */

/* ===== Socials Page ===== */

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.social-card {
  background: #002459;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Reddit specific */
.social-card.reddit {
  padding: 0.5rem;
}

.social-card iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 8px;
}

.social-card img {
  max-width: 100%;
  height: auto;
}

/* Mobile tuning */
@media (max-width: 480px) {
  .social-card iframe {
    height: 300px;
  }
}


/* Quick Facts Grid */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.fact-card {
  background: #002459;
  color: #F2F2F2;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

/* CTA Grid */
.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Hero overlay text */
.hero-image p {
  position: absolute;
  color: #4CA626;
  font-size: 1.2rem;
  font-weight: 600;
}

.steam-layout {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .steam-left {
      flex: 1 1 600px;
      min-width: 300px;
    }

    .steam-right {
      flex: 0 1 300px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-width: 250px;
      margin-top: 5rem;
    }

    .steam-right .cta-button {
      width: 100%;
      padding: 1rem;
      font-size: 1.1rem;
      text-align: center;
    }

    .cta-greyed {
      background-color: #555555;
      cursor: not-allowed;
      box-shadow: none;
    }

    /* Media Slider adjustments */
    .media-slider {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 1rem;
      background-color: #002459;
    }

    .media-slider h4 {
      color: #4CA626;
      text-align: left;
      margin: 1rem;
    }

    .media-slider .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
    }

    .media-slider .slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .media-slider .slide img,
    .media-slider .slide video {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      border-radius: 12px;
    }

    .media-slider .prev,
    .media-slider .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0,50,125,0.7);
      color: #F2F2F2;
      border: none;
      padding: 0.5rem 1rem;
      font-size: 1.2rem;
      cursor: pointer;
      border-radius: 6px;
      z-index: 10;
      transition: background 0.3s ease;
    }

    .media-slider .prev:hover,
    .media-slider .next:hover {
      background-color: #4CA626;
    }

    .media-slider .prev { left: 10px; }
    .media-slider .next { right: 10px; }

    /* Steam-style sections below */
    .steam-section {
      margin-top: 2rem;
      border-top: 1px solid #e0e0e0;
      padding-top: 2rem;
    }

    .facts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .fact-card {
      background: #002459;
      color: #F2F2F2;
      padding: 1rem;
      border-radius: 8px;
      text-align: center;
      font-weight: 500;
    }

    .section ul {
      margin-top: 1rem;
      padding-left: 1.25rem;
    }

    @media (max-width: 1024px) {
      .steam-layout {
        flex-direction: column;
      }
      .steam-left, .steam-right {
        min-width: 100%;
      }
    }

    .price-container {
      margin-top: 0.5rem;
      background: #002459;
      color: #F2F2F2;
      padding: 0.3rem 1rem;
      border-radius: 6px;
      font-size: 1.1rem;
      font-weight: 600;
      text-align: center;
    }

    .tags {
      background: #002459;
      color: #F2F2F2;
      padding: 0.3rem 3rem;
      border-radius: 6px;
      font-size: 1.1rem;
      font-weight: 600;
      text-align: center;
      margin-top: 0.5rem;
    }

    /* ========================================
   Contact Page
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #002459;
  color: #F2F2F2;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card h4 {
  color: #4CA626;
  font-size: 1.3rem;
}

.contact-meta {
  font-size: 0.95rem;
  opacity: 0.85;
  color: white;
}

.contact-muted {
  font-size: 0.9rem;
  opacity: 0.75;
  color: white;
}

.contact-link {
  color: #4CA626;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}
