/* Base Colors */
:root {
  --brand-blue: #255184;
  --brand-red: #880026;
  --dark-bg: #221f1f;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
}

/* Reset & Layout */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background-color: var(--brand-blue);
}
header img {
  border-bottom: 5px solid var(--brand-red);
}

/* Navbar */
.navbar {
  background-color: var(--black) !important;
  padding: 0.75rem 1rem;
}
.navbar .navbar-brand img {
  height: 50px;
}
.navbar .navbar-brand + img {
  height: 30px;
}
.navbar-nav {
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url('https://kseblobstorage.blob.core.windows.net/sitefiles/Avalanchetix/menu.png') !important;
}
.nav-link,
.nav-link-custom {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  border-radius: 4px;
}
.nav-link:hover,
.nav-link:focus,
.nav-link-custom:hover,
.nav-link-custom:focus {
  color: var(--white) !important;
  background-color: var(--brand-blue);
}
.nav-link-custom.active {
  background-color: var(--brand-blue);
  color: var(--white) !important;
}

/* Dropdown */
.dropdown-menu {
  background-color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 0;
}
.dropdown-item {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown-item:hover {
  background-color: #222;
  color: var(--brand-blue);
}

/* Logo + Wordmark alignment */
.navbar .d-flex.align-items-center.gap-2 img:last-of-type {
  height: 30px;
}

/* Responsive navbar tweaks */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0.5rem;
    align-items: flex-start;
  }
  .navbar .navbar-brand img {
    height: 40px;
  }
  .navbar .navbar-brand + img {
    height: 26px;
  }
}

/* Headings */
h1, h2, h3, h4 {
  color: var(--brand-red);
  font-weight: bold;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3, h4 { font-size: 2rem; }

/* Section Styling */
.section-title {
  color: var(--brand-blue);
  margin-bottom: 1rem;
  font-weight: bold;
}
.section-content {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  color: var(--dark-bg);
}
hr {
  border: 0;
  border-top: 2px solid var(--brand-red);
  margin: 2rem 0;
}

/* Benefits Section */
.benefits-wrapper {
  background-color: var(--brand-blue);
  padding: 2rem;
  color: var(--white);
  width: 100vw;
  margin-left: calc(-100vw / 2 + 50%);
  margin-right: calc(-100vw / 2 + 50%);
}
.benefits-section {
  max-width: 1366px;
  margin: 0 auto;
}
.benefit-card {
  background-color: var(--light-bg);
  color: var(--dark-bg);
  border: 1px solid var(--brand-red);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.benefit-icon {
  font-size: 2.25rem;
  color: var(--brand-red);
  margin: 1rem 0;
}
.benefit-title {
  font-size: 1.5rem;
  color: var(--brand-blue);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.benefit-description {
  font-size: 1.125rem;
  color: var(--dark-bg);
}
.why-join-content {
  font-size: 1.125rem;
}

/* Accordion */
.accordion-button {
  background-color: var(--brand-blue);
  color: var(--white);
  border: none;
}
.accordion-button:not(.collapsed) {
  background-color: var(--white);
  color: var(--brand-blue);
}
.accordion-body {
  background-color: var(--light-bg);
  color: var(--black);
}

/* Parallax */
.parallax-section {
  width: 100vw;
  height: 350px;
  background-image: url('https://kseblobstorage.blob.core.windows.net/sitefiles/avalanche-a-list-fy24-25/a-list-design-1.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: calc(-100vw / 2 + 50%);
  margin-right: calc(-100vw / 2 + 50%);
  padding: 0;
  position: relative;
}
.parallax-content {
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
.parallax-content h2 {
  margin: 0;
  font-size: 2rem;
}
.parallax-content p {
  margin: 10px 0 0;
  font-size: 1.2rem;
}

/* Carousel Button */
.carousel-caption .btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  max-width: 200px;
  text-align: center;
  margin: auto;
}

/* Social Media */
.social-icon {
  font-size: 2rem;
  color: var(--white);
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
  color: var(--brand-blue);
  transform: scale(1.2);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 25px 0;
  margin-bottom: 0;
  flex-shrink: 0;
}
.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--brand-blue);
}
	  
.membership-featured-section-fullwidth {
  background-color: var(--brand-blue);
  color: var(--white);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.membership-featured-container {
  max-width: 1366px;
  margin: 0 auto;
}

.membership-featured-section-fullwidth h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--white); /* Swapped from red */
}

.membership-featured-section-fullwidth p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--white);
}

.ticket-hub-section {
  background-color: transparent !important;
}

.ticket-hub-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brand-blue);
  font-weight: bold;
}

.ticket-tile {
  background-color: var(--white);
  border: 1px solid var(--brand-blue);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ticket-tile h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.ticket-tile p {
  font-size: 1.125rem;
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
}

.ticket-tile .btn {
  background-color: var(--brand-red);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  padding: 0.75rem 1.25rem;
}

.ticket-tile .btn:hover {
  background-color: #a2002e;
}

.ticket-tile.featured {
  border: 2px solid var(--brand-red);
  background-color: #fef2f4;
}
	  
.ticket-graphic-tile {
  text-align: center;
}

.ticket-graphic-tile img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.ticket-graphic-tile img:hover {
  transform: scale(1.02);
}

.ticket-graphic-tile .btn {
  background-color: var(--brand-red);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  color: white;
}

.ticket-graphic-tile .btn:hover {
  background-color: #a2002e;
}
	  
.fan-experience-tile {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.fan-experience-tile:hover {
  transform: scale(1.02);
}

.fan-experience-tile img {
  width: 100%;
  height: auto;
  display: block;
}

.fan-tile-content {
  background-color: #002147; /* Avalanche navy */
  color: #fff;
  padding: 20px;
}

.fan-tile-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.fan-tile-content p {
  font-size: 1rem;
  margin: 0;
  color: #e0e0e0;
}

body {
  background: #f4f6fa;
}

#welcome-section {
  background: linear-gradient(135deg, #ffffff 0%, #f3f7fc 100%);
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

#welcome-section .col-lg-6:last-child {
  padding: 20px 30px;
}

#welcome-section h2 {
  color: #8a1538;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

#welcome-section h3 {
  color: #8a1538;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

#welcome-section p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 20px;
}

.ticket-hub-section,
.fan-experience-section {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 20px 36px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 36px;
}

.ticket-graphic-tile,
.fan-experience-tile {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-graphic-tile:hover,
.fan-experience-tile:hover {
  transform: translateY(-6px);
}

.ticket-graphic-tile img,
.fan-experience-tile img {
  overflow: hidden;
}

.fan-experience-section h2 {
  color: #8a1538;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 28px;
  position: relative;
}

.fan-experience-section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #8a1538;
  margin: 12px auto 0;
  border-radius: 999px;
}

.btn.btn-primary {
  background: #8a1538;
  border-color: #8a1538;
  border-radius: 10px;
  font-weight: 700;
  padding: 12px 20px;
  box-shadow: 0 8px 18px rgba(138, 21, 56, 0.2);
  transition: all 0.2s ease;
}

.btn.btn-primary:hover {
  background: #6f102d;
  border-color: #6f102d;
  transform: translateY(-2px);
}

hr {
  border-top: 1px solid rgba(138, 21, 56, 0.15);
  margin: 20px 0 36px;
}	  
	  
#welcome-section .col-lg-6:last-child {
  background: rgba(255,255,255,0.72);
  border-radius: 18px;
}	  
	  
	  
	  
/* =========================================================
   Avalanche Brand Button Overrides (kept)
========================================================= */
.btn-primary {
  background-color: #6F263D !important;
  border-color: #6F263D !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #501C2D !important;
  border-color: #501C2D !important;
}
.btn-success {
  background-color: #236192 !important;
  border-color: #236192 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #1A466E !important;
  border-color: #1A466E !important;
  color: #ffffff !important;
}	
	  
	  
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}

.social-icon i,
.social-icon svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

.social-icon svg {
  fill: currentColor;
  position: relative;
  top: 7px; /* tweak up/down 1–2px if needed */
}