/* ============================================
   THE BEATLES ONE - WEBSITE STYLES
   ============================================ */

/* ============================================
   GLOBAL STYLES & FONTS
   ============================================ */

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-size: 100%;
}

@font-face {
  font-family: "bebas_neueregular";
  src: url("Files/Fonts/bebasneue-webfont.eot");
  src: url("Files/Fonts/bebasneue-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("Files/Fonts/bebasneue-webfont.woff") format("woff"),
    url("Files/Fonts/bebasneue-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SEGOEUIL";
  src: url("Files/Fonts/SEGOEUIL.eot");
  src: url("Files/Fonts/SEGOEUIL.eot?#iefix") format("embedded-opentype"),
    url("Files/Fonts/SEGOEUIL.woff"), url("Files/Fonts/SEGOEUIL.ttf");
}

/* ============================================
   NAVIGATION - DESKTOP & MOBILE
   ============================================ */

ul {
  list-style-type: none;
}

ul a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-family: "bebas_neueregular", Helvetica, Arial;
  font-size: 2em;
}

ul a:hover {
  text-decoration: none;
}

/* Desktop Navbar Styling */
.navbar-inverse {
  background: linear-gradient(
    135deg,
    #2c3136 0%,
    #3c4248 25%,
    #4a5258 50%,
    #3c4248 75%,
    #2c3136 100%
  ) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  position: relative;
}

.navbar-inverse::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

.navbar-inverse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

/* Desktop Navbar Links */
.navbar-inverse .navbar-nav > li > a {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  position: relative;
  padding: 15px 20px !important;
}

.navbar-inverse .navbar-nav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transform: translateY(-2px);
}

.navbar-inverse .navbar-nav > li > a:hover::before,
.navbar-inverse .navbar-nav > li > a:focus::before {
  width: 80%;
}

/* Brand/Logo Link Special Styling */
.navbar-inverse .navbar-nav > li > a#brand {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  font-size: 2.2em !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.navbar-inverse .navbar-nav > li > a#brand:hover {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
}

/* Mobile brand/logo link styling */
.navbar-inverse .navbar-nav > li > a#brand-mobile {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  font-size: 1.8em !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  border-bottom: 2px solid rgba(255, 153, 0, 0.3) !important;
  margin-bottom: 10px !important;
}

.navbar-inverse .navbar-nav > li > a#brand-mobile:hover {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
  transform: none !important; /* Don't slide the brand name */
}

.navbar-inverse .navbar-nav > li > a#brand-mobile::before {
  display: none;
}

/* Social Icons in Desktop Navbar */
.navbar-inverse .navbar-nav.navbar-right > li > a {
  padding: 10px 15px !important;
  transition: all 0.3s ease !important;
}

.navbar-inverse .navbar-nav.navbar-right > li > a:hover {
  transform: translateY(-3px) scale(1.1);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  ) !important;
}

/* Animations */
@keyframes brand-glow {
  0% {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
      0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2);
  }
  100% {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 153, 0, 1),
      0 0 45px rgba(255, 153, 0, 0.7), 0 0 65px rgba(255, 153, 0, 0.4);
  }
}

/* ============================================
   TYPOGRAPHY & GLOBAL ELEMENTS
   ============================================ */

img {
  max-width: 100%;
  display: block;
}

p {
  font-family: "SEGOEUIL", Helvetica, Arial;
}

h1 {
  color: white !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 46px !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

h2 {
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
}

h3 {
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
}

iframe {
  border: 0 !important;
}

/* ============================================
   BACKGROUND IMAGES & PARALLAX
   ============================================ */

#background-release {
  background-color: black;
}

.background-midia {
  background-image: url("Files/The-Beatles-Cover-The-Beetles-One-British-Flag-Background.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.background-midia-mobile {
  background-color: black;
}

.background-tour {
  background-image: url("Files/tour.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-size: contain;
  max-width: 101%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============================================
   ABOUT THE BAND SECTION - DESKTOP & MOBILE
   ============================================ */

#release-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#contato {
  background-color: black;
}

#background-mobile {
  background-color: black;
}
#toTop img {
  width: 50px;
}

#toTop img:hover {
  cursor: pointer;
}

.move {
  top: -60px;
}

#brand {
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-family: "bebas_neueregular", Helvetica, Arial;
  font-size: 2em;
}

#contact-picture {
  display: inline-block;
  position: relative;
}
#cont-text {
  color: white;
  text-align: center;
  font-family: "sen-regular", Helvetica, Arial;
  letter-spacing: 0.1em;
  font-size: 1.5em;
  margin-top: 2.5%;
}
#cont-text-xs {
  color: white;
  text-align: center;
  font-family: "SEGOEUIL", Helvetica, Arial;
  letter-spacing: 0.1em;
}
#cont-text a {
  color: white;
  text-align: center;
  font-family: "SEGOEUIL", Helvetica, Arial;
  letter-spacing: 0.1em;
  font-size: 1em;
}
#cont-text-xs a {
  color: white;
  text-align: center;
  font-family: "SEGOEUIL", Helvetica, Arial;
  letter-spacing: 0.1em;
  font-size: 0.9em;
}
#tour-art {
  margin-top: -1.5%;
}
#setlist-background {
  z-index: -1;
  opacity: 0.1;
}
#release-picture {
  position: absolute;
  top: -1em;
}
#release-text {
  text-align: justify;
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-size: 1.5em;
}
#release-text a {
  color: #cfcfcf;
}
#release-text-quote {
  font-size: 1.2em;
  margin-top: 2rem; /* Replace <br> */
}
#release-text-xs {
  text-align: justify;
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-size: 1.5em;
}
#release-text-xs-quote {
  font-style: italic;
  margin-top: 2rem; /* Replace <br> */
}
#header-release-mobile {
  color: white !important;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 1) !important;
}
#logo-xs {
  padding: 2%;
}
#logo-xs img {
  width: 100%;
  height: 100%;
}

/* ============================================
   UTILITY CLASSES & HELPERS
   ============================================ */

#bit-events td.bit-description-links,
#bit-events th.bit-description-links,
#bit-events th.bit-date,
#bit-events th.bit-venue,
#bit-events th.bit-location,
#bit-events th.bit-tickets {
  display: none;
}
.center-pills {
  display: inline-block;
}

.bit-header-links {
  display: none;
}
.bit-events th,
.bit-events td {
  padding: 0 !important;
}
.bit-date {
  font-size: 1.5em;
  font-family: "SEGOEUIL", Helvetica, Arial;
}
.bit-venue {
  font-size: 1.5em;
  font-family: "SEGOEUIL", Helvetica, Arial;
}
.bit-location {
  font-size: 1.5em;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-weight: 100 !important;
}
.bit-rsvp {
  display: none;
}
.social-icons {
  width: 25px;
  height: 25px;
}
.social-icons:hover {
  opacity: 0.8;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o--transition: all 0.5s;
  -ms--transition: all 0.5s;
  transition: all 0.5s;
}
#logo-embrashow {
  width: 100%; /* Increased from 16% */
  margin: 2rem auto;
  opacity: 0.7;
}
#logo-embrashow-mobile {
  width: 80%; /* Increased from 60% */
  height: auto; /* Changed from 40% to auto for proper aspect ratio */
  margin: 2rem auto;
  opacity: 0.7;
}
.picture-hover-property img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70); /*For IE*/
}
.show-img {
  margin-bottom: 20%;
}
.margin-picture-session {
  margin-bottom: 10%;
}
.setlist-inline {
  display: inline;
}
.margin-setlist {
  margin-left: 8%;
  margin-right: 8%;
}

/* ============================================
   VIDEOS SECTION - DESKTOP & MOBILE
   ============================================ */

/* Enhanced Video Section Styling */

/* Video Section Background and Layout */
.background-midia {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.background-midia::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.background-midia-mobile {
  background-image: url("Files/The-Beatles-Cover-The-Beetles-One-British-Flag-Background.jpg");
  background-position: center center;
  background-attachment: scroll; /* Changed from fixed for better mobile performance */
  background-size: cover;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.background-midia-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Video Section Headers */
.background-midia h1,
.background-midia-mobile h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5em !important;
  margin-bottom: 60px !important;
  text-align: center;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 153, 0, 0.4),
    0 0 40px rgba(255, 153, 0, 0.2) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

.background-midia h1::after,
.background-midia-mobile h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
  border-radius: 2px;
}

/* Enhanced Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 153, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 153, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  min-height: 280px; /* Increased minimum height for desktop */
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 153, 0, 0.05) 50%,
    transparent 100%
  );
  border-radius: 13px;
  z-index: -1;
}

.video-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 153, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 153, 0, 0.4);
}

.video-container:hover::before {
  background: linear-gradient(
    45deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.15) 50%,
    rgba(255, 153, 0, 0.1) 100%
  );
}

/* Video iframe styling */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  transition: all 0.3s ease;
  border: none;
}

/* Desktop Video Layout */
.videos-desktop-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.videos-desktop-layout .video-item {
  flex: 1;
  max-width: 650px;
  width: 100%;
}

/* Mobile Video Layout */
.videos-mobile-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.videos-mobile-layout .video-item-mobile {
  width: 100%;
  max-width: 600px;
}

.videos-mobile-title {
  margin-bottom: 40px !important;
  font-size: 2.8em !important;
}

/* Video Spacing Classes */
.video-margin-top {
  margin-top: 20px;
}

.video-margin-bottom {
  margin-bottom: 80px;
}

.video-margin-top-mobile {
  margin-top: 0;
}

.video-margin-bottom-mobile {
  margin-bottom: 60px;
}

/* Legacy video classes for compatibility */
.video {
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: 100%;
}

.videobox-mobile {
  background: transparent;
  padding: 0;
  box-shadow: none;
  margin-bottom: 40px;
}

.video figure {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.video img {
  width: 100%;
  opacity: 1;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.video img:hover,
.video img:active,
.video img:focus {
  opacity: 0.8;
  transform: scale(1.02);
}

.video-title {
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  font-size: 1.8em !important;
  margin-top: 15px !important;
  text-align: center !important;
}

.video-title-mobile {
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  font-size: 2em !important;
  margin-top: 15px !important;
  text-align: center !important;
}

.contato-title {
  font-family: "SEGOEUIL", Helvetica, Arial;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .videos-desktop-layout {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
  }

  .videos-desktop-layout .video-item {
    max-width: 800px; /* Increased for tablet view */
  }
}

@media (max-width: 768px) {
  .video-container {
    margin-bottom: 30px;
    border-radius: 12px;
    min-height: 180px;
  }

  .video-container:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .background-midia-mobile h1 {
    font-size: 2.8em !important;
    margin-bottom: 40px !important;
  }

  .videos-mobile-layout {
    gap: 30px;
    padding: 0 15px;
  }

  .videos-desktop-layout {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .video-container {
    border-radius: 10px;
    margin-bottom: 25px;
    min-height: 150px;
  }

  .background-midia-mobile h1 {
    font-size: 2.4em !important;
  }

  .videos-mobile-layout {
    gap: 25px;
    padding: 0 10px;
  }

  .videos-desktop-layout {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .video-container {
    min-height: 120px;
  }

  .videos-mobile-layout .video-item-mobile {
    max-width: 100%;
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  ul a {
    font-size: 1.4em;
  }
}
@media (max-width: 768px) {
  #myNavbar {
    background-color: #222;
    width: 100%;
    padding-left: -15%;
    height: 100%;
  }
  #myNavbar ul {
    text-align: center;
  }
  #myNavbar ul li a {
    display: block;
  }

  .form-control {
    width: 23rem !important;
  }
  .btn-submit {
    width: 23rem !important;
  }

  .social-icons {
    width: 28px !important; /* Increased from 20px */
    height: 28px !important; /* Increased from 20px */
  }
}
@media only screen and (max-width: 650px) {
  .shows-outer,
  .show-mobile {
    width: 100%;
    min-width: 100px;
  }
}
@media (max-width: 500px) {
  .date-mobile {
    font-size: 1.5em !important;
  }
  .venue-mobile {
    font-size: 1.5em !important;
  }
}

/* ============================================
   TOUR/AGENDA SECTION - DESKTOP & MOBILE
   ============================================ */

/* Improved background overlay for better text contrast */
.background-tour::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 30%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.75) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.background-tour {
  position: relative;
  padding: 80px 0;
}

/* Legacy styles for compatibility */
#agenda-title {
  float: right;
  font-family: "bebas_neueregular";
  font-size: 4em;
}
#agenda-title-mobile {
  float: right;
  font-family: "bebas_neueregular";
  font-size: 3.5em;
}

/* Consistent title styling matching VIDEOS and ABOUT sections */
#shows-outer-agenda {
  position: relative;
  z-index: 2;
  float: right;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 3.5em !important;
  color: #ffffff !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 153, 0, 0.3) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 60px !important;
  text-align: right;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 20px 30px 25px 30px !important;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 0, 0.2);
}

#shows-outer-agenda::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 30px;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
  border-radius: 2px;
}

#shows-outer-agenda-mobile {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 2.8em !important;
  color: #ffffff !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 153, 0, 0.3) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 40px !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 18px 25px 23px 25px !important;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 0, 0.2);
}

#shows-outer-agenda-mobile::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
  border-radius: 2px;
}

/* Enhanced shows container */
.shows-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 100px;
  padding: 0;
  margin: 0;
}

/* Refined tour date containers with rounded borders */
.show {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(20, 20, 20, 0.85) 100%
  ) !important;
  border: 2px solid rgba(255, 153, 0, 0.4) !important;
  border-radius: 16px !important;
  clear: right;
  float: right;
  width: 160% !important;
  margin: 18px 0 !important;
  padding: 28px 32px !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 153, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.show::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.6) 20%,
    rgba(255, 153, 0, 0.8) 50%,
    rgba(255, 153, 0, 0.6) 80%,
    transparent 100%
  );
  border-radius: 16px 16px 0 0;
}

.show:hover {
  transform: translateY(-2px) translateX(-2px) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(25, 25, 25, 0.9) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.6) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 153, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.show-mobile {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(20, 20, 20, 0.85) 100%
  ) !important;
  border: 2px solid rgba(255, 153, 0, 0.4) !important;
  border-radius: 16px !important;
  width: 100% !important;
  margin: 15px 0 !important;
  padding: 24px !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 153, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.show-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.6) 20%,
    rgba(255, 153, 0, 0.8) 50%,
    rgba(255, 153, 0, 0.6) 80%,
    transparent 100%
  );
  border-radius: 16px 16px 0 0;
}

.show-mobile:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(25, 25, 25, 0.9) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.6) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 153, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Enhanced text styling with better contrast */
.date {
  color: #ffffff !important;
  float: left;
  font-size: 2.3em !important;
  text-align: left;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 600 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 1.2px !important;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.date-mobile {
  color: #ffffff !important;
  font-size: 2.5em !important;
  text-align: center;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 600 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 1.2px !important;
  line-height: 1.1;
  margin: 0 0 12px 0 !important;
  padding: 0;
}

.venue {
  color: #ff9900 !important;
  float: right;
  font-size: 2.1em !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 500 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 153, 0, 0.4) !important;
  letter-spacing: 0.8px !important;
  text-align: right;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.venue-mobile {
  color: #ff9900 !important;
  font-size: 2.2em !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 500 !important;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 153, 0, 0.4) !important;
  letter-spacing: 0.8px !important;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.clear-both {
  clear: both;
  height: 0;
  overflow: hidden;
}

/* Ticket Purchase Button Styles */
.ticket-btn {
  display: inline-block !important;
  clear: both !important;
  float: right !important;
  margin-top: 12px !important;
  margin-left: 0 !important;
  padding: 10px 24px !important;
  background: linear-gradient(
    135deg,
    rgba(255, 160, 0, 1) 0%,
    rgba(255, 195, 0, 0.95) 50%,
    rgba(255, 160, 0, 1) 100%
  ) !important;
  color: #000000 !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 1.5em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 2px solid rgba(255, 140, 0, 1) !important;
  border-radius: 6px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 16px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
}

.ticket-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 0, 1) 0%,
    rgba(255, 210, 0, 1) 50%,
    rgba(255, 170, 0, 1) 100%
  ) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 160, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 130, 0, 1) !important;
}

.ticket-btn:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.ticket-btn-mobile {
  display: block !important;
  width: fit-content !important;
  margin: 14px auto 0 auto !important;
  padding: 10px 28px !important;
  background: linear-gradient(
    135deg,
    rgba(255, 160, 0, 1) 0%,
    rgba(255, 195, 0, 0.95) 50%,
    rgba(255, 160, 0, 1) 100%
  ) !important;
  color: #000000 !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 1.3em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 2px solid rgba(255, 140, 0, 1) !important;
  border-radius: 6px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 16px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.ticket-btn-mobile:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 0, 1) 0%,
    rgba(255, 210, 0, 1) 50%,
    rgba(255, 170, 0, 1) 100%
  ) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 160, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 130, 0, 1) !important;
}

.ticket-btn-mobile:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Responsive improvements for agenda section */
@media (max-width: 992px) {
  .background-tour {
    padding: 70px 0;
  }

  .background-tour::before {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 50%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }
}

@media (max-width: 768px) {
  .background-tour {
    padding: 60px 0;
  }

  .show-mobile {
    margin: 12px 0 !important;
    padding: 22px !important;
  }

  #shows-outer-agenda-mobile {
    font-size: 2.6em !important;
    margin-bottom: 35px !important;
  }

  .date-mobile {
    font-size: 2.3em !important;
    margin-bottom: 10px !important;
  }

  .venue-mobile {
    font-size: 2em !important;
  }
}

@media (max-width: 576px) {
  .background-tour {
    padding: 50px 0;
  }

  #shows-outer-agenda-mobile {
    font-size: 2.4em !important;
    margin-bottom: 30px !important;
  }

  .date-mobile {
    font-size: 2.1em !important;
  }

  .venue-mobile {
    font-size: 1.9em !important;
  }

  .show-mobile {
    padding: 20px !important;
    margin: 10px 0 !important;
    border-radius: 12px !important;
  }

  .show-mobile::before {
    border-radius: 12px 12px 0 0;
  }
}

/* ============================================
   SLIDESHOW - DESKTOP & MOBILE
   ============================================ */

/* Custom slideshow styles */
.custom-slideshow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: unset;
  max-height: unset;
}

.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.custom-slideshow-list li {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

.custom-slideshow-list li img,
.custom-slideshow-img-mobile {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Show the first slide by default (for no-js fallback) */
.custom-slideshow-list li:first-child {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
}

/* Slideshow sections */
#custom-slideshow-desktop,
#custom-slideshow-mobile {
  background: linear-gradient(
    to bottom,
    #181818 0%,
    #222 40%,
    black 100%
  );
  margin-bottom: 0;
  padding: 0;
  margin-top: 50px; /* Push slideshow below navbar */
  position: relative;
  z-index: 1;
  /* Make slideshow fill almost the whole viewport except navbar/footer */
  min-height: calc(
    100vh - 120px
  ); /* Adjust 120px to match your navbar+footer height */
  height: calc(100vh - 120px);
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

#custom-slideshow-mobile {
  background: none !important;
}

/* Custom slideshow styles */
.custom-slideshow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: unset;
  max-height: unset;
}

.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.custom-slideshow-list li {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

.custom-slideshow-list li img,
.custom-slideshow-img-mobile {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Show the first slide by default (for no-js fallback) */
.custom-slideshow-list li:first-child {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
}

/* ============================================
   CONTACT FORMS - DESKTOP & MOBILE
   ============================================ */

#form-success {
  display: none;
  color: green;
  font-size: 2rem;
}
#form-success-mobile {
  display: none;
  color: green;
  font-size: 2rem;
}
.form-required-text {
  color: red;
  font-size: 2rem;
}
.form-required-text-mobile {
  color: red;
  font-size: 1.8rem;
}
.div-form {
  display: flex;
  justify-content: center;
  /* border: 3px solid #fff; */
  /* border-radius: 10px; */
  padding: 40px;
  transition: all 0.4s ease;
  width: 35%;
  margin: 0 auto;
}
.div-form-mobile {
  display: flex;
  justify-content: center;
  /* border: 3px solid #fff; */
  /* border-radius: 10px; */
  padding: 40px;
  transition: all 0.4s ease;
  width: 90%;
  margin: 0 auto;
}

.form-control {
  margin-bottom: 1.5rem;
}

.btn-submit {
  width: 40rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 2rem;
  border-radius: 0.25rem;
  background-color: #6c757d;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
  border: 0px;
  box-shadow: none;
  color: #fff;
  margin-top: 1.5rem;
}

.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
  background-color: #495056;
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

.footer {
  width: 100%;
  background: linear-gradient(
    135deg,
    #4a5258 0%,
    #5a6268 25%,
    #6c757d 50%,
    #5a6268 75%,
    #495057 100%
  );
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
}

.footer-center {
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 3rem;
  font-weight: bolder;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.footer-images {
  position: relative;
  bottom: 2px;
  width: 30px;
  height: 30px;
  margin: 0 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-images:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7));
}

.footer-whatsapp {
  position: relative;
  bottom: 2px;
  width: 30px;
  height: 30px;
  margin-left: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(37, 211, 102, 0.4))
    drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
  box-shadow: 0 0 16px 4px rgba(37, 211, 102, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.12) 0%,
    transparent 70%
  );
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  padding: 2px;
}

.footer-whatsapp:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 20px rgba(37, 211, 102, 1));
  animation: whatsapp-pulse 1.5s infinite, whatsapp-glow 2s infinite;
}

/* Sticky manager contact above mobile social navbar */
.sticky-manager-contact {
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(
    135deg,
    #4a5258 0%,
    #5a6268 25%,
    #6c757d 50%,
    #5a6268 75%,
    #495057 100%
  );
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.35), 0 2px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 10px;
  flex-wrap: nowrap;
  min-height: 50px;
  margin: 0;
  position: relative;
}

.sticky-manager-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

.sticky-manager-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

/* Compact center content */
.sticky-manager-contact .footer-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  white-space: nowrap;
  /* overflow: hidden; */
  min-width: 0;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

/* Text styling */
.sticky-manager-contact .footer-center p {
  margin: 0 0.4rem !important;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 8px rgba(255, 255, 255, 0.1);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.sticky-manager-contact .footer-center img {
  width: 20px !important;
  height: 20px !important;
  margin: 0 0.4rem !important;
  position: relative;
  top: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sticky-manager-contact .footer-center img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.sticky-manager-contact .footer-center > div {
  margin-right: 1rem !important;
}

/* Position WhatsApp as absolute to avoid flex issues */
.sticky-manager-contact .footer-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.sticky-manager-contact .footer-whatsapp {
  position: relative;
  top: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(37, 211, 102, 0.4))
    drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
  box-shadow: 0 0 16px 4px rgba(37, 211, 102, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.12) 0%,
    transparent 70%
  );
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  padding: 2px;
}

.sticky-manager-contact .footer-whatsapp:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 20px rgba(37, 211, 102, 1));
  animation: whatsapp-pulse 1.5s infinite, whatsapp-glow 2s infinite;
}

/* Enhanced mobile touch states */
@media (max-width: 768px) {
  .sticky-manager-contact .footer-whatsapp:active {
    transform: scale(1.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
      drop-shadow(0 0 25px rgba(37, 211, 102, 1));
    animation: whatsapp-pulse 1s infinite, whatsapp-glow 1.5s infinite;
  }
}

/* Hide sticky version on desktop */
@media (min-width: 992px) {
  .sticky-manager-contact {
    display: none !important;
  }
}

/* Ensure mobile sticky positioning works properly */
@media (max-width: 991px) {
  .sticky-manager-contact {
    display: flex !important;
    position: fixed !important;
    bottom: 50px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    width: 100% !important;
  }

  .navbar-fixed-bottom {
    z-index: 1001 !important;
    height: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(
      135deg,
      #4a5258 0%,
      #5a6268 25%,
      #6c757d 50%,
      #5a6268 75%,
      #495057 100%
    ) !important;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
  }

  /* Fix mobile navbar container alignment */
  .navbar-fixed-bottom .container-fluid {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 0 !important;
  }

  /* Fix mobile navbar pills alignment */
  .navbar-fixed-bottom .nav.nav-pills {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    height: 100% !important;
  }

  /* Fix individual list items */
  .navbar-fixed-bottom .nav.nav-pills li {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
  }

  /* Fix anchor tags */
  .navbar-fixed-bottom .nav.nav-pills li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    height: auto !important;
    transition: transform 0.2s ease !important;
  }

  .navbar-fixed-bottom .nav.nav-pills li a:hover {
    transform: translateY(-2px) !important;
  }
}

/* SCROLL OFFSET FOR FIXED NAVBAR */
#home,
#home-mobile,
#banda,
#midia,
#agenda,
#contato,
#contato-mobile {
  scroll-margin-top: 60px; /* Slightly more than navbar height for better spacing */
}

/* New classes to replace inline styles and <br> elements */
.hidden-element {
  display: none;
  visibility: hidden;
}

.contact-section-bg {
  background-color: black;
}

.videos-desktop-layout {
  display: flex;
  justify-content: space-evenly;
}

.videos-mobile-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.videos-mobile-title {
  margin-bottom: 4rem;
}

.footer-desktop-sticky {
  position: sticky;
  bottom: 0;
}

.footer-spacing-desktop {
  margin-right: 3rem;
}

.footer-spacing-mobile {
  margin-right: 1rem;
}

.footer-phone-spacing {
  margin-right: 1.5rem;
}

.form-success-bold {
  font-weight: bold;
}

.form-hidden-field {
  display: none;
}

.embrashow-logo-spacing {
  display: block;
  margin-top: 2rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Enhanced Mobile Navbar Styling */
@media (max-width: 991px) {
  /* Mobile navbar collapse menu */
  .navbar-inverse .navbar-collapse {
    background: linear-gradient(
      135deg,
      #2c3136 0%,
      #3c4248 25%,
      #4a5258 50%,
      #3c4248 75%,
      #2c3136 100%
    ) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .navbar-inverse .navbar-collapse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
  }

  .navbar-inverse .navbar-collapse::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%
    );
  }

  /* Mobile navbar links */
  .navbar-inverse .navbar-nav > li > a {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-inverse .navbar-nav > li:last-child > a {
    border-bottom: none;
  }

  .navbar-inverse .navbar-nav > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
  }

  .navbar-inverse .navbar-nav > li > a:hover,
  .navbar-inverse .navbar-nav > li > a:focus {
    color: #ff9900 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
      0 0 25px rgba(255, 153, 0, 0.3) !important;
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.1) 0%,
      rgba(255, 153, 0, 0.05) 100%
    ) !important;
    transform: translateX(5px);
  }
  .navbar-inverse .navbar-nav > li > a:hover::before,
  .navbar-inverse .navbar-nav > li > a:focus::before {
    width: 100%;
  }

  /* Mobile navbar toggle button enhancement */
  .navbar-toggle {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.1) 0%,
      rgba(255, 153, 0, 0.05) 100%
    ) !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    color: #ff9900 !important;
    font-family: "bebas_neueregular", Helvetica, Arial !important;
    font-size: 1.6em !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
      0 0 25px rgba(255, 153, 0, 0.3) !important;
    width: 275px !important;
    height: 45px !important;
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .navbar-toggle:hover,
  .navbar-toggle:focus {
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.2) 0%,
      rgba(255, 153, 0, 0.1) 100%
    ) !important;
    border-color: rgba(255, 153, 0, 0.4) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 153, 0, 0.3) !important;
    color: #ff9900 !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
      0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
    animation: brand-glow 2s infinite alternate;
  }

  /* Mobile menu animation */
  .navbar-collapse.collapsing,
  .navbar-collapse.in {
    animation: mobileMenuSlide 0.3s ease-out;
  }

  @keyframes mobileMenuSlide {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Enhanced mobile touch states */
  .navbar-inverse .navbar-nav > li > a:active {
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.2) 0%,
      rgba(255, 153, 0, 0.1) 100%
    ) !important;
    transform: translateX(8px) scale(0.98);
  }

  /* Mobile navbar header brand styling */
  .navbar-header .navbar-brand {
    color: #ff9900 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
      0 0 25px rgba(255, 153, 0, 0.3) !important;
    font-size: 1.3em !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    padding: 15px 15px !important;
    font-family: "bebas_neueregular", Helvetica, Arial !important;
  }

  .navbar-header .navbar-brand:hover,
  .navbar-header .navbar-brand:focus {
    color: #ff9900 !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
      0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
    animation: brand-glow 2s infinite alternate;
  }
}

/* Enhanced About the Band Section Styling */

/* Desktop About Section */
#background-release {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 25%,
    #000000 50%,
    #1a1a1a 75%,
    #0a0a0a 100%
  );
  padding: 60px 0;
  position: relative;
}

#background-release::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#background-release h1 {
  font-size: 3.5em !important;
  margin-bottom: 40px !important;
  text-align: center;
  position: relative;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 153, 0, 0.3) !important;
}

#background-release h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
}

#release-img {
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 153, 0, 0.1);
  margin: 40px auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#release-img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 153, 0, 0.2);
}

#release-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

#release-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.3) 50%,
    transparent 100%
  );
}

#release-text p {
  font-size: 1.3em !important;
  line-height: 1.8 !important;
  margin-bottom: 25px !important;
  color: #f5f5f5 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  text-align: left;
}

#release-text p:first-child {
  font-size: 1.4em !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  position: relative;
}

#release-text p:first-child::before {
  content: ""
    ";
  font-size: 4em;
  color: rgba(255, 153, 0, 0.3);
  position: absolute;
  left: -20px;
  top: -15px;
  font-family: serif;
}

#release-text-quote {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0,  0.05) 100%

  );
  border-left: 4px solid #ff9900;
  padding: 25px !important;
  margin: 30px 0 0 0 !important;
  border-radius: 10px;
  font-style: italic !important;
  font-size: 1.2em !important;
  color: #ffcc66 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
  position: relative;
  text-indent: 0 !important;
}

#release-text-quote::before {
  content: "
    "";
  font-size: 3em;
  color: rgba(255, 153, 0, 0.4);
  position: absolute;
  left: 10px;
  top: -5px;
  font-family: serif;
}

/* Mobile About Section */
#background-mobile {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 25%,
    #000000 50%,
    #1a1a1a 75%,
    #0a0a0a 100%
  );
  padding: 30px 0;
  position: relative;
}

#background-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#header-release-mobile {
  font-size: 2.5em !important;
  margin-bottom: 25px !important;
  text-align: center;
  position: relative;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.3) !important;
}

#header-release-mobile::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

#release-text-xs {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  text-align: left;
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-size: 1.5em;
}

#release-text-xs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.2) 50%,
    transparent 100%
  );
}

#release-text-xs p {
  /* Removed text-indent */
}

#release-text-xs-quote {
  font-style: italic;
  margin-top: 2rem; /* Replace <br> */
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.08) 0%,
    rgba(255, 153, 0, 0.03) 100%
  );
  border-left: 3px solid #ff9900;
  padding: 15px !important;
  border-radius: 6px;
  color: #ffcc66 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Mobile release image styling */
#background-mobile .img-responsive {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 153, 0, 0.08);
  margin: 25px auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#background-mobile .img-responsive:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 153, 0, 0.12);
}

/* ============================================
   ENHANCED CONTACT SECTION STYLING
   ============================================ */

/* Contact Section Background */
.contact-section-bg {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 25%,
    #000000 50%,
    #1a1a1a 75%,
    #0a0a0a 100%
  ) !important;
  padding: 80px 0 !important;
  position: relative !important;
}

.contact-section-bg::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.03) 0%,
    transparent 70%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Enhanced Contact Titles */
#cont-text h1,
#cont-text-xs h1 {
  font-size: 3.5em !important;
  margin-bottom: 40px !important;
  text-align: center !important;
  position: relative !important;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 153, 0, 0.3) !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  z-index: 2 !important;
}

#cont-text-xs h1 {
  font-size: 2.8em !important;
  margin-bottom: 30px !important;
}

#cont-text h1::after,
#cont-text-xs h1::after {
  content: "" !important;
  position: absolute !important;
  bottom: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 120px !important;
  height: 4px !important;
  background: linear-gradient(
    90deg,
    #ff9900 0%,
    #ffb84d 50%,
    #ff9900 100%
  ) !important;
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.6) !important;
  border-radius: 2px !important;
}

#cont-text-xs h1::after {
  width: 100px !important;
  height: 3px !important;
  bottom: -12px !important;
}

/* Enhanced Form Containers */
.div-form,
.div-form-mobile {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  ) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  margin: 30px auto !important;
  max-width: 800px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 2 !important;
}

.div-form::before,
.div-form-mobile::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.4) 20%,
    rgba(255, 153, 0, 0.6) 50%,
    rgba(255, 153, 0, 0.4) 80%,
    transparent 100%
  ) !important;
  border-radius: 20px 20px 0 0 !important;
}

/* Enhanced Form Controls */
.contact-section-bg .form-control {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  ) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
  padding: 15px 20px !important;
  font-size: 1.1em !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.contact-section-bg .form-control:focus {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

.contact-section-bg .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500 !important;
}

/* Enhanced Submit Button */
.contact-section-bg .btn-submit {
  background: linear-gradient(
    135deg,
    #ff9900 0%,
    #ffb84d 50%,
    #ff9900 100%
  ) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 15px 40px !important;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.2), 0 0 10px rgba(255, 153, 0, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  margin-top: 20px !important;
}

.contact-section-bg .btn-submit::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  transition: left 0.5s ease !important;
}

.contact-section-bg .btn-submit:hover {
  background: linear-gradient(
    135deg,
    #ffb84d 0%,
    #ff9900 50%,
    #ffb84d 100%
  ) !important;
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3), 0 0 15px rgba(255, 153, 0, 0.2) !important;
}

.contact-section-bg .btn-submit:hover::before {
  left: 100% !important;
}

.contact-section-bg .btn-submit:active {
  transform: translateY(-1px) scale(1.005) !important;
}

/* Enhanced Form Text Elements */
.contact-section-bg .form-required-text,
.contact-section-bg .form-required-text-mobile {
  color: #ff9900 !important;
  font-size: 1em !important;
  margin-bottom: 25px !important;
  text-align: center !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  z-index: 2 !important;
  position: relative !important;
}

.contact-section-bg .form-success-bold {
  color: #4caf50 !important;
  font-weight: 700 !important;
  font-size: 1.4em !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.contact-section-bg #form-success,
.contact-section-bg #form-success-mobile {
  display: none !important;
  color: #4caf50 !important;
  text-align: center !important;
  padding: 30px !important;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1) 0%,
    rgba(76, 175, 80, 0.05) 100%
  ) !important;
  border: 2px solid rgba(76, 175, 80, 0.3) !important;
  border-radius: 15px !important;
  margin: 20px 0 !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2) !important;
}

.contact-section-bg #form-success p,
.contact-section-bg #form-success-mobile p {
  margin: 8px 0 !important;
  font-size: 1.1em !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Enhanced Embrashow Logo */
.contact-section-bg .embrashow-logo-spacing {
  display: block !important;
  margin: 40px auto 30px auto !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  z-index: 2 !important;
  position: relative !important;
  max-width: 350px !important; /* Increased from 250px */
}

.contact-section-bg #logo-embrashow,
.contact-section-bg #logo-embrashow-mobile {
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 153, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  opacity: 0.85 !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
  backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-section-bg #logo-embrashow:hover,
.contact-section-bg #logo-embrashow-mobile:hover {
  opacity: 1 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 0, 0.15) !important;
  border-color: rgba(255, 153, 0, 0.2) !important;
}

/* Contact Mobile Responsive Overrides */
@media (max-width: 768px) {
  .contact-section-bg {
    padding: 60px 0 40px 0 !important;
    margin-bottom: 80px !important; /* Account for sticky footer */
  }

  .contact-section-bg .div-form-mobile {
    padding: 30px 20px !important;
    margin: 20px auto !important;
    border-radius: 15px !important;
    max-width: 90% !important;
  }

  .contact-section-bg .form-control {
    padding: 12px 15px !important;
    font-size: 1em !important;
    margin-bottom: 15px !important;
  }

  .contact-section-bg .btn-submit {
    padding: 12px 30px !important;
    font-size: 1.1em !important;
  }

  .contact-section-bg #cont-text-xs h1 {
    font-size: 2.5em !important;
  }

  /* Enhanced Mobile Logo Optimizations */
  .contact-section-bg .embrashow-logo-spacing {
    margin: 35px auto 0 auto !important;
    max-width: 250px !important; /* Increased from 160px */
    padding-bottom: 40px !important; /* Increased for sticky footer clearance */
  }

  .contact-section-bg .embrashow-logo-spacing:hover {
    transform: translateY(-2px) scale(1.02) !important;
  }

  .contact-section-bg #logo-embrashow-mobile {
    border-radius: 8px !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 153, 0, 0.04) !important;
    opacity: 0.9 !important;
  }

  .contact-section-bg #logo-embrashow-mobile:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 153, 0, 0.08) !important;
    opacity: 1 !important;
  }
}

/* ============================================
   CUSTOM NAVBAR - REPLACES BOOTSTRAP NAVBAR
   ============================================ */

/* Custom Navbar Base */
.custom-navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  box-sizing: border-box;
  background: linear-gradient(
    135deg,
    #2c3136 0%,
    #3c4248 25%,
    #4a5258 50%,
    #3c4248 75%,
    #2c3136 100%
  ) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
}

.custom-navbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

.custom-navbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

.custom-navbar-fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}

.custom-navbar-fixed-bottom {
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-top: 0;
  margin-bottom: 0;
}

.custom-container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* Custom Navigation Lists */
.custom-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.custom-nav > li {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.custom-nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  box-sizing: border-box;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

.custom-nav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.custom-nav > li > a:hover,
.custom-nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transform: translateY(-2px);
}

.custom-nav > li > a:hover::before,
.custom-nav > li > a:focus::before {
  width: 80%;
}

/* Brand/Logo Link Special Styling */
.custom-nav > li > a#brand {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  font-size: 2.2em !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.custom-nav > li > a#brand:hover {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
}

/* Custom Navbar Navigation */
.custom-navbar-nav {
  margin: 7.5px -15px;
}

.custom-navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

/* Custom Navbar Right */
.custom-navbar-right {
  float: right !important;
  margin-right: -15px;
}

/* Custom Navbar Pills */
.custom-nav-pills > li {
  float: left;
}

.custom-nav-pills > li > a {
  border-radius: 4px;
}

/* Custom Navbar Toggle */
.custom-navbar-toggle {
  position: relative;
  float: right;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transition: all 0.3s ease !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  color: #ff9900 !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 1.6em !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  width: 275px !important;
  height: 45px !important;
  background-image: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.custom-navbar-toggle:hover,
.custom-navbar-toggle:focus {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.2) 0%,
    rgba(255, 153, 0, 0.1) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.4) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 153, 0, 0.3) !important;
  color: #ff9900 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
}

/* Custom Navbar Collapse */
.custom-navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.custom-navbar-collapse.custom-navbar-collapse-open {
  overflow-y: auto;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .custom-navbar {
    /* border-radius: 4px; */
  }

  .custom-navbar-nav {
    float: left;
    margin: 0;
  }

  .custom-navbar-nav > li {
    float: left;
  }

  .custom-navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .custom-navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .custom-navbar-right {
    margin-right: 0;
  }
}

/* Mobile Layout */
@media (max-width: 767px) {
  .custom-navbar-toggle {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
    text-align: center;
  }

  .custom-navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(
      135deg,
      #2c3136 0%,
      #3c4248 25%,
      #4a5258 50%,
      #3c4248 75%,
      #2c3136 100%
    ) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .custom-navbar-collapse.custom-navbar-collapse-open {
    display: block !important;
    animation: slideDown 0.3s ease-out;
  }

  /* Optionally, hide the menu if not open */
  .custom-navbar-collapse:not(.custom-navbar-collapse-open) {
    display: none !important;
  }

  .custom-navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
    display: inline-block;
    text-align: center;
  }

  .custom-navbar-collapse .custom-navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
  }

  .custom-navbar-nav > li {
    float: none;
    display: block;
    width: 100%;
  }

  .custom-navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
  }

  .custom-navbar-nav > li:last-child > a {
    border-bottom: none;
  }

  /* Mobile Menu Animation */
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Clearfix */
.custom-navbar:before,
.custom-navbar:after,
.custom-container-fluid:before,
.custom-container-fluid:after,
.custom-nav:before,
.custom-nav:after,
.custom-navbar-collapse:before,
.custom-navbar-collapse:after {
  display: table;
  content: " ";
}

.custom-navbar:after,
.custom-container-fluid:after,
.custom-nav:after,
.custom-navbar-collapse:after {
  clear: both;
}
.custom-navbar-collapse:after {
  clear: both;
}
.custom-navbar-collapse:before,
.custom-navbar-collapse:after {
  display: table;
  content: " ";
}

.custom-navbar:after,
.custom-container-fluid:after,
.custom-nav:after,
.custom-navbar-collapse:after {
  clear: both;
}
