/* 1xBet Blue Banner CSS */

.xbet-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 2rem;
  background: 
    linear-gradient(135deg, rgba(0, 64, 128, 0.6) 0%, rgba(0, 102, 204, 0.6) 100%),
    url('/images/1xbet-banner.webp') no-repeat center/cover;
  background-size: cover;
}

.xbet-banner {
  /* padding: 6rem 2rem; */
  min-height: 400px;
}

/* Dark overlay (optional) */
.xbet-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.xbet-banner .xbet-content {
  position: relative; /* above overlay */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  z-index: 1;
}

.xbet-text h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.xbet-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.xbet-ctas {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-primary {
  background: #fff;
  color: #004080;
}

.btn-primary:hover {
  background: #e6e6e6;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.xbet-image .image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 250px;
  background: rgba(255,255,255,0.2);
  border: 2px dashed rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 992px) {
  .xbet-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .xbet-image,
  .xbet-text {
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .xbet-text h1 {
    font-size: 2rem;
  }
  .xbet-text p {
    font-size: 1rem;
  }
  .xbet-image .image-placeholder {
    max-width: 300px;
    height: 200px;
  }
}

/* color change */

/* Apply #012550 background to every section */
section {
  background-color: #012550 !important;
}

/* If sections have inner wrappers, ensure full coverage */
section > .container,
section > .header-container,
section > .elementor-container {
  background-color: transparent !important;
}

/* Optional: Adjust text color inside sections for readability */
section,
section h1,
section h2,
section h3,
section p,
section a,
section li {
  color: #ffffff !important;
}

/* Ensure buttons and links still stand out */
section .btn,
section .btn-primary,
section .btn-secondary,
section .nav-link {
  border-color: #f5d16f !important;
  background-color: #f5d16f !important;
  color: #012550 !important;
}


.ready-header {
  background-color: #012550 !important; /* Dark blue */
}

/* Optional: Change text and link colors if needed */
.ready-header .nav-link,
.ready-header h1,
.ready-header h2,
.ready-header h3 {
  color: #ffffff; /* Keep text white for contrast */
}



footer.footer {
  background-color: #012550 !important; /* Dark blue */
  color: #ffffff; /* Text color */
}

/* Optional: Style footer links */
footer.footer a {
  color: #f5d16f; /* Gold or light color for contrast */
}

.header {
  background: linear-gradient(to right, #004575, #0077b6);
  transition: background 0.3s ease;
}

.header.sticky, /* or .scrolled, .fixed, whatever your script adds */
.header.scrolled {
  background: linear-gradient(to right, #004575, #0077b6) !important;
}


.footer {
  background: linear-gradient(to right, #004575, #0077b6);
  transition: background 0.3s ease;
}

.footer.sticky, /* or .scrolled, .fixed, whatever your script adds */
.footer.scrolled {
  background: linear-gradient(to right, #004575, #0077b6) !important;
}