/* -----------------------------
   GOOGLE FONT
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* -----------------------------
   RESET & GLOBAL
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0e1320;
  color: #fff;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

h1, h2, h3 {
  font-weight: 700;
}
/* ===========================
   NAVBAR — EXACT MATCH
=========================== */

.pwl-navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 14px 0;
  background: linear-gradient(90deg, #0c1020 0%, #101632 50%, #0b1020 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo img {
  height: 52px;
  width: 70px;
  border-radius: 6px;
  user-select: none;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 42px;
  align-items: center;
}

.nav-menu li a {
  font-size: 15px;
  text-decoration: none;
  color: #dcdcdc;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: 0.2s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #ffb13c;
}

/* For perfect centering on large screens */
@media (min-width: 1650px) {
  .nav-container {
    max-width: 1500px;
  }
}

/* -----------------------------
   CONTAINER
------------------------------ */
.container {
  width: min(1400px, 90%);
  margin: 0 auto;
}

/* -----------------------------
   HEADER NAV
------------------------------ */
.site-header {
  background: rgba(10, 13, 25, 0.85);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .brand {
  font-size: 1.4rem;
  font-weight: 800;
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  justify-content: center;
  margin-top: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #d8d8d8;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffb742;
}



/* -----------------------------
   CARD GRID (THE MAIN FIX)
------------------------------ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* ================================
   TEAMS & FORMAT — EXACT MATCH
================================ */

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
}

.section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    width: 35px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #6aff4d, #2bff00);
}

/* Container spacing */
#teams.section {
    padding-top: 80px;
}

/* GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
    margin-top: 30px;
}

/* ================================
   CARD — EXACT PREMIUM VERSION
================================ */

.team-card {
    background: #121729;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* TITLE OVERLAY */
.team-card h3 {
    position: absolute;
    top: 165px;
    left: 25px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.9);
}

/* CARD BODY */
.team-card p {
    margin: 75px 25px 15px 25px;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #d7d7d7;
}

/* BUTTON BAR (frosted glass) */
.team-card .btn-bar {
    margin: 20px 25px 30px 25px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    text-align: center;
}

.team-card .btn-bar:hover {
    background: rgba(255,255,255,0.1);
}

/* BUTTON TEXT */
.team-card .btn-bar a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

/* GRADIENT BORDER BOTTOM — EXACT FROM REFERENCE */
.team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
        #ff9100,
        #ff4800,
        #ff007b,
        #6100ff);
}
/* ======================================================
   STAR WRESTLERS — FULL WIDTH BACKGROUND + OVERLAY
====================================================== */

#stars {
    width: 100vw;                          
    margin-left: 50%;
    transform: translateX(-50%);            /* Full-width breakout */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
#stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b101b;
    z-index: 1;
}

/* Keep content above overlay */
#stars * {
    position: relative;
    z-index: 2;
}

/* Optional: Add blur-glass effect to the wrestlers grid */
.card-grid {
    backdrop-filter: blur(6px);
    padding: 10px 0;
    border-radius: 14px;
}

/* -----------------------------
   STAR WRESTLER CARDS FIXED
------------------------------ */
.star-card {
  background: #141a2b;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.star-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
}

.star-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* -----------------------------
   BUTTONS
------------------------------ */
.btn {
  display: inline-block;
  background: #ff9d10;
  color: #000;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 18px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff9d10;
  color: #ff9d10;
}

/* -----------------------------
   FORMS
------------------------------ */
form {
  background: #141a2b;
  padding: 24px;
  border-radius: 14px;
}

.form-row {
  margin-bottom: 16px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  margin-top: 6px;
  background: #0f1322;
  color: #fff;
}

/* -----------------------------
   FOOTER
------------------------------ */
.site-footer {
  background: #0b101b;
  padding: 40px 0;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
/* ==========================================
   ABOUT SECTION — BACKGROUND + OVERLAY
========================================== */

.about-bg {
  position: relative;
  background: url("../images/About_bg_image.jpeg") center/cover no-repeat;
  padding-top: 80px;
  padding-bottom: 200px;
  overflow: hidden;
}

/* Dark overlay for readability */
.about-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* adjust darkness */
  z-index: 1;
}

/* Ensure content stays above overlay */
.about-bg * {
  position: relative;
  z-index: 2;
}

/* --------------------------------------
   ABOUT SECTION ORIGINAL STYLES
--------------------------------------- */
#about.section {
  padding-top: 100px;
  padding-bottom: 80px;
}

#about .grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

#about p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* STAT CARDS */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.stat.card {
  background: #141a2b;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #ffb742;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 4px;
}


/* ================================
   HERO — EXACT MATCH TO REFERENCE
=================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark-overlay gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(8, 10, 22, 0.75),
    rgba(8, 10, 22, 0.95)
  );
  z-index: 2;
}

/* Content container */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding-top: 40px;
}

/* HERO TITLE */
.hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 10px;
}

/* PRO (orange) */
.title-pro {
  font-size: 4rem;
  color: #ff8a00;
  font-weight: 900;
}

/* WRESTLING (white + green gradient) */
.title-wrestling {
  font-size: 4.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff 20%, #c8ff5b 60%);
  background-clip: text;             /* Standard (ignored by most browsers) */
  -webkit-background-clip: text;     /* Required for actual effect */
  color: transparent;                /* Standard equivalent of -webkit-text-fill-color */
  -webkit-text-fill-color: transparent;
}


/* LEAGUE (outline text) */
.title-league {
  font-size: 4.2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  letter-spacing: 3px;
}

/* 2026 (big orange box) */
.title-yr {
  font-size: 4.2rem;
  background: #ff7a1b;
  padding: 6px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  display: inline-block;
  margin: 0 auto;
}

/* SUBTEXT */
.hero-sub {
  font-size: 1.1rem;
  margin-top: 16px;
}

.hero-tag {
  font-size: 1rem;
  margin-top: 4px;
  opacity: 0.8;
}

/* BUTTON GROUP */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* BUY TICKETS BUTTON */
.btn-buy {
  padding: 14px 30px;
  background: linear-gradient(90deg, #ff9a3e, #ff5e1b);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}

/* GLASS BUTTON */
.btn-glass {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
}

/* COUNTDOWN BOX */
.countdown-box {
  margin-top: 40px;
  background: rgba(255,255,255,0.06);
  padding: 20px 30px;
  border-radius: 16px;
  display: inline-block;
  backdrop-filter: blur(8px);
}

.count-label {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
/* ======================================================
   SEASON SECTION — FULL WIDTH BACKGROUND + OVERLAY
====================================================== */

.schedule-section {
    width: 100vw;                         /* full width */
    margin-left: 50%;                      
    transform: translateX(-50%);           /* breakout from container */
    padding: 120px 0;
    background: url("../images/Schedule_bg_image.jpeg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* DARK OVERLAY */
.schedule-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.schedule-section * {
    position: relative;
    z-index: 2;
}

/* Make inner card area slightly translucent */
.schedule-container {
    background: rgba(20, 25, 40, 0.78) !important;
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    max-width: 1000px;
    margin: 0 auto;
}

/* ===============================
   SEASON SCHEDULE — PRO LEVEL
   Matches reference design
   =============================== */

.schedule {
  background: linear-gradient(90deg, #1e2230, #1d2333 40%, #1a1f2e);
  padding: 40px;
  border-radius: 14px;
  margin-top: 40px;
  margin-bottom: 0px;
  border: 1px solid rgba(255,255,255,0.06);
}

.schedule h4 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.schedule li {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.04);
  padding: 22px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* TAG (small category labels) */
.schedule li::before {
  content: attr(data-tag);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #e7b100;
  letter-spacing: 0.6px;
}

/* DATE text styling */
.schedule li span {
  font-size: 0.95rem;
  color: #cbd1e0;
}

/* Hover effect */
.schedule li:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
  transition: 0.25s ease;
}

/* ==========================
   SEASON SCHEDULE SECTION (FINAL FIXED VERSION)
   ========================== */

.schedule-section {
  margin-top: 90px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
}

.schedule-container {
  width: 100%;                     /* SAME AS OTHER SECTIONS */
  max-width: 100%;              /* SAME AS OTHER SECTIONS */
  padding: 40px;
  border-radius: 22px;

  background: linear-gradient(90deg, #1b2235, #121826);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.schedule-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.schedule-icon {
  font-size: 30px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.schedule-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.schedule-label {
  color: #ffb347;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.schedule-card h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.schedule-card p {
  color: #bfc5d2;
  font-size: 14px;
}

/* ======================================================
   SPONSOR SECTION — FULL-WIDTH BACKGROUND + OVERLAY
====================================================== */

.sponsor-wrapper {
    width: 100vw;                        /* full-width breakout */
    margin-left: 50%;
    transform: translateX(-50%);         /* center it */
    padding: 120px 0;
   background: url("../images/Partner_bg_image.jpeg") center/cover no-repeat !important;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.sponsor-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Ensure all content stays above overlay */
.sponsor-wrapper * {
    position: relative;
    z-index: 2;
}
/* ======================================================
   SPONSOR SECTION — EXACT MATCH TO REFERENCE
   ====================================================== */

.sponsor-wrapper {
    padding: 100px 0;
    background: transparent;   /* Keep your dark page background */
}

.sponsor-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.sponsor-left h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sponsor-left p {
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 20px;
}

.sponsor-points {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sponsor-points li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.sponsor-points li::before {
    content: "•";
    color: #ff9d10;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.sponsor-btn {
    display: inline-block;
    background: #0d1321;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* RIGHT SIDE CARDS */
.sponsor-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sponsor-card {
    background: #ffffff;
    color: #0e1320;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
    border-left: 6px solid #000;
}

.sponsor-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.sponsor-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* COLORED LEFT BORDERS (Reference Exact) */
.sponsor-card.orange {
    border-color: #ff8a00;
}

.sponsor-card.green {
    border-color: #00b74a;
}

.sponsor-card.blue {
    border-color: #2d53ff;
}

/* Responsive */
@media (max-width: 900px) {
    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   OWNERS / FRANCHISE SECTION — BACKGROUND IMAGE
========================================== */

.owners-section {
  width: 100vw;                 /* full width of viewport */
  margin-left: 50%;
  transform: translateX(-50%);  /* force full-page breakout */
  padding: 120px 0;
  background: url("../images/Owner_bg_image.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.owners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.owners-section * {
  position: relative;
  z-index: 2;
}

/* ==========================================
   OWNERS BOX — INNER GLASS CARD
========================================== */

.owners-box {
  width: 90%;
  max-width: 1400px;
  background: rgba(15, 20, 35, 0.78); /* glass effect background */
  border-radius: 28px;
  padding: 60px 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  margin: 0 auto;
}

/* LEFT COLUMN */
.owners-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.owners-left p {
  font-size: 1rem;
  color: #cdd3e5;
  margin-bottom: 35px;
  line-height: 1.6;
}

.owners-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ff8a1e;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.95rem;
}

/* RIGHT COLUMN HEADER */
.owners-right-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.owners-right-header span {
  font-size: 0.85rem;
  color: #b8bfd3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.owners-year {
  color: #ffffff;
  font-weight: 700;
}

/* PROCESS STEPS */
.owners-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.owners-step:last-child {
  border-bottom: none;
}

/* BADGE NUMBER */
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1rem;
}

.step-num.orange { background: #ff8a1e; }
.step-num.grey   { background: #5f697d; }
.step-num.green  { background: #54d66a; }

/* STEP TEXT */
.owners-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.owners-step p {
  font-size: 0.9rem;
  color: #c3c9d7;
}


/* =============================
   GLOBAL HOVER & ANIMATIONS
   High-Energy Option B
============================= */

* {
  transition: 0.28s ease;
}

/* -----------------------------
   NAVBAR HOVER
------------------------------ */
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #ffb13c;
  text-shadow: 0 0 10px rgba(255, 177, 60, 0.9);
  transform: translateY(-1px);
}

/* -----------------------------
   BUTTON HOVER EFFECTS
------------------------------ */

.btn,
.sponsor-btn,
.btn-buy,
.btn-glass,
.owners-btn {
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover,
.sponsor-btn:hover,
.btn-buy:hover,
.btn-glass:hover,
.owners-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(255, 160, 50, 0.7);
}

/* Shine effect */
.btn:hover::after,
.sponsor-btn:hover::after,
.btn-buy:hover::after,
.btn-glass:hover::after,
.owners-btn:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  transform: skewX(-25deg);
  background: rgba(255, 255, 255, 0.25);
  animation: shine 0.6s forwards;
}

@keyframes shine {
  0% { left: -120%; }
  100% { left: 140%; }
}

/* -----------------------------
   CARD HOVER EFFECTS
------------------------------ */

.team-card,
.star-card,
.sponsor-card,
.schedule-card {
  transition: 0.3s ease;
}

.team-card:hover,
.star-card:hover,
.schedule-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

/* Sponsor cards (white) special glow */
.sponsor-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 22px rgba(255, 136, 0, 0.5);
}

/* Animated colored left border glow */
.sponsor-card.orange:hover {
  border-left-color: #ff7b00;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
}
.sponsor-card.green:hover {
  border-left-color: #00ff66;
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
}
.sponsor-card.blue:hover {
  border-left-color: #4a6bff;
  box-shadow: 0 0 25px rgba(70, 90, 255, 0.5);
}

/* -----------------------------
   STAR WRESTLER CARDS
------------------------------ */
.star-card:hover {
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 15px rgba(255, 140, 20, 0.4);
}

/* -----------------------------
   OWNER / FRANCHISE BOX HOVER
------------------------------ */

.owners-box {
  transition: 0.35s ease;
}

.owners-box:hover {
  transform: scale(1.01);
  box-shadow: 0 0 45px rgba(255, 140, 20, 0.35);
}

/* Step number hover */
.step-num:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255,255,255,0.45);
}

/* -----------------------------
   FORM FIELDS
------------------------------ */
input:hover, textarea:hover {
  background: #151d33;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

input:focus, textarea:focus {
  background: #182341;
  box-shadow: 0 0 18px rgba(255,255,255,0.35);
  transform: scale(1.02);
}

/* -----------------------------
   HERO BUTTONS
------------------------------ */
.btn-buy:hover {
  box-shadow: 0 0 25px rgba(255, 110, 20, 0.75),
              0 0 12px rgba(255, 110, 20, 0.95) inset;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255,255,255,0.45);
}

/* Countdown box hover */
.countdown-box:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(255,255,255,0.3);
}

/* -----------------------------
   SCHEDULE CARDS
------------------------------ */

.schedule-card:hover {
  border-color: rgba(255, 180, 50, 0.7);
  box-shadow: 0 0 20px rgba(255, 140, 20, 0.55);
}

/* ======================================
   ABOUT SECTION STAT CARDS — HOVER FIX
====================================== */

.stat.card {
  transition: 0.28s ease;
}

.stat.card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 22px rgba(255, 193, 70, 0.45);
  border-color: rgba(255, 193, 70, 0.6);
}

/* Number glow on hover */
.stat.card:hover .stat-num {
  color: #ffca52;
  text-shadow: 0 0 12px rgba(255, 190, 60, 0.9);
}

/* Label soft glow */
.stat.card:hover .stat-label {
  opacity: 1;
  color: #ffd27a;
}


/* ==========================================
   SPONSOR BUTTON — MATCH OWNERS BUTTON EXACTLY
========================================== */

.sponsor-btn {
  display: inline-block;
  padding: 14px 32px;                /* same as owners */
  background: #ff8a1e !important;    /* same yellow */
  color: #000 !important;            /* black text */
  font-weight: 700;                  /* bold same */
  text-decoration: none;
  border-radius: 10px;               /* same rounding */
  font-size: 0.95rem;                /* same size */
  border: none;
  position: relative;
  overflow: hidden;
  transition: 0.28s ease;            /* same animation speed */
}

/* HOVER — EXACT SAME AS OWNERS */
.sponsor-btn:hover {
  transform: scale(1.08);  
  box-shadow: 0 0 18px rgba(255, 160, 50, 0.7);
}

/* SHINE EFFECT — SAME AS OWNERS */
.sponsor-btn:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  transform: skewX(-25deg);
  background: rgba(255, 255, 255, 0.25);
  animation: shine 0.6s forwards;
}
/* SOCIAL MEDIA LOGO & COLOR */
.social a {
  font-size: 24px;
  text-decoration: none;
  transition: 0.25s;
}

/* Default brand colors */
.social a.instagram i {
  color: #d62976; /* Instagram magenta */
}

.social a.youtube i {
  color: #FF0000;
}

.social a.twitter i {
  color: #1DA1F2;
}

.social a.facebook i {
  color: #1877F2;
}

/* Hover turns icons white */
.social a:hover i {
  color: #ffffff;
}

/* PRO WRESTLING LEAGUE FOOTER */
/* HERO TITLE */
.hero-title-foot {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 10px;
}

/* PRO (orange) */
.title-pro-foot {
  font-size: 1.3rem;
  color: #ff8a00;
  font-weight: 900;
}

/* POPUP FORM */
/* Popup Background */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #ffffff;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}

/* Close Button */
.close {
  float: right;
  font-size: 25px;
  cursor: pointer;
}

/* Form Inputs */
.popup-content input,
.popup-content button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.popup-content button {
  background: #4a4aff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.popup-content button:hover {
  background: #3a3ad9;
}

.popup-content {
  position: relative; /* Needed so the X positions correctly */
}

.popup-content .close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: 0.2s ease;
}

.popup-content .close:hover {
  color: #e63946; /* red hover */
}

.form-status {
  margin-top: 8px;
  font-size: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-status.show {
  opacity: 1;
}

.check {
  color: #00ff85;   /* neon green checkmark */
  margin-left: 6px;
  font-weight: bold;
}

.hidden {
  display: none;
}


/* ===========================================
   📱 MOBILE + TABLET RESPONSIVE FIXES
   Works for screens below 1024px & 768px
=========================================== */

/* --- GLOBAL --- */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  .nav-menu li a {
    font-size: 14px;
  }
}

/* --- MOBILE NAVBAR --- */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-menu {
    display: none; /* Hide menu – you can add hamburger later */
  }

  .nav-logo img {
    height: 45px;
    width: 55px;
  }
}

/* --- MOBILE HERO --- */
@media (max-width: 768px) {

  .hero-title .title-pro,
  .hero-title .title-wrestling,
  .hero-title .title-league,
  .hero-title .title-yr {
      font-size: 2.2rem !important;
  }

  .hero-sub {
      font-size: 0.9rem;
  }

  .hero-buttons {
      flex-direction: column;
      gap: 12px;
  }
}

/* --- CARD GRID MOBILE --- */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .team-card img {
    height: 180px;
  }

  .team-card h3 {
    top: 140px;
    font-size: 1.1rem;
  }

  .team-card p {
    margin-top: 65px;
  }
}

/* --- ABOUT (GRID TO SINGLE COLUMN) --- */
@media (max-width: 900px) {
  #about .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* --- SCHEDULE SECTION (3 → 1 COLUMN) --- */
@media (max-width: 1024px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SPONSOR SECTION MOBILE --- */
@media (max-width: 768px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sponsor-card {
    padding: 18px;
  }
}

/* --- OWNERS SECTION (GRID TO SINGLE COLUMN) --- */
@media (max-width: 950px) {
  .owners-box {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }

  .owners-left h2 {
    font-size: 1.7rem;
  }
}

/* --- FORMS --- */
@media (max-width: 768px) {
  form {
    padding: 18px;
  }

  input, textarea {
    font-size: 0.9rem;
  }
}

/* --- FOOTER GRID --- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* =======================================================
   FULL RESPONSIVE FIXES FOR MOBILE + TABLET
   MUST BE ADDED AT THE END OF style2.css
======================================================= */


/* ---------------------------
   FIX FULL-WIDTH SECTIONS
---------------------------- */
@media (max-width: 900px) {

  #stars,
  .schedule-section,
  .sponsor-wrapper,
  .owners-section {
    width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
    overflow: visible !important;
    padding: 80px 0 !important;
  }

  .schedule-container,
  .owners-box {
    width: 90% !important;
    max-width: 100% !important;
    padding: 20px !important;
  }
}


/* ---------------------------
   MOBILE NAVBAR + HAMBURGER
---------------------------- */

/* Default: hide menu on mobile */
@media (max-width: 768px) {

  .nav-menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    padding: 18px 20px;
    border-radius: 12px;
    gap: 15px;
    z-index: 9999;
  }

  /* Show menu when active */
  .nav-menu.active {
    display: flex !important;
  }

  /* Mobile menu text */
  .nav-menu li a {
    font-size: 16px !important;
    padding: 6px 0 !important;
  }

  /* Hamburger icon */
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 30px;
    color: white;
    margin-right: 15px;
    user-select: none;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}


/* ---------------------------
   HERO RESPONSIVE FIX
---------------------------- */
@media (max-width: 768px) {

  .hero-title .title-pro,
  .hero-title .title-wrestling,
  .hero-title .title-league,
  .hero-title .title-yr {
    font-size: 2.4rem !important;
  }

  .hero-sub {
    font-size: 0.9rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }
}


/* ---------------------------
   CARD GRID FIX
---------------------------- */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ---------------------------
   ABOUT SECTION FIX
---------------------------- */
@media (max-width: 900px) {
  #about .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .stats {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr !important;
  }
}


/* ---------------------------
   SCHEDULE SECTION FIX
---------------------------- */
@media (max-width: 1024px) {
  .schedule-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 700px) {
  .schedule-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ---------------------------
   SPONSOR SECTION FIX
---------------------------- */
@media (max-width: 768px) {
  .sponsor-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}


/* ---------------------------
   OWNERS SECTION FIX
---------------------------- */
@media (max-width: 900px) {
  .owners-box {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
    gap: 35px !important;
  }
}


/* ---------------------------
   FOOTER FIX
---------------------------- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

#contact {
  scroll-margin-top: 120px; /* adjust this value if needed */
  padding-top: 40px;        /* adds visual spacing */
}

