/* Ensure full-height layout */
html, body {
    height: 100%;
    margin: 0;
}

/* Global Body */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background-color: #121212;
    /* repeat your bg.png across the page */
    background-image: url('/images/bg.png');
    background-repeat: repeat;
    background-position: top left;

    color: #e9ecef;
}

/* Let main content grow */
main {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Footer stays at bottom */
footer {
    flex-shrink: 0;
    background-color: transparent;
}

/* Navbar */
.navbar {
    border-bottom: 2px solid #000;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.50)
      )
  }
/* Navigation Enhancements */
.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color .3s;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #a21151;
    transition: width .3s ease, left .3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
    left: 0;
}
.navbar-nav .nav-link:hover {
    color: #a21151;
}
.navbar-brand img {
    transition: transform .3s;
}
.navbar-brand img:hover {
    transform: scale(1.1);
}

.logo {
    margin-top: -35px;
}

/* Social Icons (index) */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.social-icons a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    transition: background-color .2s, transform .2s;
}
.social-icons a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.social-icons a .fab {
    font-size: 2rem;
}
.social-icons a.youtube  { color: #FF0000; }
.social-icons a.twitch   { color: #9146FF; }
.social-icons a.kick     { color: #00e701; }

/* Player Cards */
.card {
    background-color: rgb(0 0 0 / 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}
.card-title {
    font-size: 1.4rem;
    color: #27bbed;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.card-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: #adb5bd !important;
    text-align: center;
}
.player-info-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}
.player-info-label { font-weight: 600; }
.player-info-value { color: #dee2e6; }

    /* only on the players page, style the player names */
    body.players-page .card-title {
        font-family: 'Bowlby One SC', cursive;
        color: #a21151;
      }
/* Facebook bubble in players cards */
.card-footer a[href*="facebook.com"] {
    background-color: #fff;
    width: 1rem;
    height: 1.4rem;
    border-radius: 50%;
    display: inline-flex;       
    align-items: center;        
    justify-content: center;    
    text-decoration: none;
  }
  
  .card-footer .fa-facebook {
    color: #168AFF !important;
    font-size: 1.5rem;
  }
  
/* Music Page */
          /* Color all the pre‑text labels in the album info */
          .album-info strong {
            color: #27bbed;
          }
.music-cover {
    max-width: 100%;
    border-radius: 0.5rem;
    box-shadow: rgba(167, 17, 81, 0.2) 0px 19px 38px, rgba(167, 17, 81, 0.12) 0px 15px 19px;
}
.platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.platform-icons a {
    flex: 0 0 100px;
    text-decoration: none;
    color: inherit;
    background-color: rgb(0 0 0 / 0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color .2s, transform .2s;
}
.platform-icons a:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}
.platform-icons i,
.platform-icons img {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
}
.platform-icons .label {
    font-size: 0.8rem;
    font-weight: 600;
}
.album-type {
    font-size: 0.5em;
    vertical-align: middle;
    margin-left: 0.5rem;
    color: #dee2e6;
    position: relative;
    top: -0.5rem;
}
.platform-icons a[aria-label="Apple Music"] i { color: #FF4E6B; }
.platform-icons a[aria-label="Spotify"] i { color: #1DB954; }
.platform-icons a[aria-label="Amazon Music"] i { color: #FF9900; }
.platform-icons a[aria-label="YouTube"] i { color: #FF0000; }
.platform-icons a[aria-label="Tidal"] img { filter: invert(0%); }
.platform-icons a[aria-label="iHeartRadio"] i { color: #E02127; }

/* Shop Page */
.product-cover {
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.card-shop {
    background-color: rgb(0 0 0 / 0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: #e9ecef;
    transition: transform .2s;
}
.card-shop:hover {
    transform: translateY(-5px);
}
.btn-primary {
    background-color: #a21151;
    border: none;
}
.btn-out {
    background-color: #dc3545;
    border: 1px solid #dc3545;
    color: #fff;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    cursor: default;
}
.btn-out:disabled,
.btn-out.disabled {
    opacity: 1;
}
.btn-out:not(:disabled):hover,
.btn-out:not(.disabled):hover {
    background-color: #c82333;
}
    /* Contact page */
    .btn-messenger {
        background: linear-gradient(45deg, #0084FF, #9F33FF);
        border: none;
        color: #fff;
      }
      /* Divider between options */
      .divider {
        display: flex;
        align-items: center;
        margin: 1.5rem 0;
      }
      .divider hr {
        flex-grow: 1;
        border: none;
        height: 1px;
        background-color: rgba(255,255,255,0.75);
      }
      .divider span {
        margin: 0 1rem;
        color: #e9ecef;
        font-size: 1rem;
      }

      /* Support page */
      .card-support {
        background-color: rgb(0 0 0 / 0.5);
        border: 1px solid rgba(255,255,255,0.2);
        transition: transform .2s;
      }
      .card-support:hover {
        transform: translateY(-4px);
      }
      .icon-fb {
        background: #fff;
        width: 2.85rem;
        height: 2.85rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
      }
      
      .icon-fb .fa-facebook {
        color: #1877f2;
        font-size: 3rem;
      }
      .icon-cashapp {
        background-color: #00d64f;
        width: 3rem;
        height: 3rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
      }
      .icon-cashapp i {
        color: #fff;
        font-size: 1.7rem;
        font-style: italic;
      }
      /* Ensure subtexts are white */
      .card-support .card-text {
        color: #fff;
      }  

          /* TV  styling */
    .television {
        max-width: 800px;
        margin: auto;
        padding: 0.5rem;
      }
      .television__top {
        width: 40%;
        margin: 0 auto;
        position: relative;
      }
      .television__antenna {
        width: 5px;
        height: 80px;
        background-color: rgba(255,255,255,0.2);
        margin-bottom: -10px;
      }
      .television__antenna--left { transform: rotate(-30deg); float: left; }
      .television__antenna--right { transform: rotate(30deg); float: right; }
      .television__antenna__base {
        height: 20px;
        background-color: rgba(255,255,255,0.2);
        border-top-left-radius: 48px;
        border-top-right-radius: 48px;
        margin-bottom: 10px;
        clear: both;
        position: relative;
        z-index: 2;
      }
      .television__center {
        position: relative;
        z-index: 2;
        background-color: rgba(0,0,0,0.5);
        border: solid 3px #27bbed;      /* your cyan trim */
        box-shadow: -8px -8px #a21151;  /* your magenta accent */
        border-radius: 32px;
        overflow: hidden;
      }
      .television__screen {
        width: 100%;
        aspect-ratio: 16/9;
        background-color: #000;
        border-radius: 16px;
        overflow: hidden;
      }
      .television__screen iframe {
        width: 100%;
        height: 100%;
        border: 0;
      }
      .television__base {
        width: 60%;
        margin: auto;
        clear: both;
      }
      .television__foot {
        width: 20px;
        height: 60px;
        background-color: rgba(0,0,0,0.5);
        border: solid 3px #27bbed;
        border-radius: 48px;
        margin-top: -20px;
      }
      .television__foot--left { transform: rotate(30deg); float: left; }
      .television__foot--right { transform: rotate(-30deg); float: right; }
          /* Birthday banner themed */
    .birthday-banner {
        background: linear-gradient(135deg, #a21151, #27bbed);
        color: #fff;
        font-weight: 600;
        padding: .75rem 0;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        margin: 0;
      }
      .cart-mobile-qty {
    max-width: 90px !important;
    padding: 4px 8px;
    font-size: 0.9rem;
}
/* Darker, softer backdrop */
.modal-backdrop.show {
  opacity: 0.9;
  background-color: #000;
}

/* Lightbox modal tweaks */
#imageLightbox .modal-content {
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Smooth image fade + zoom */
#imageLightboxImg {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* When modal is fully shown */
.modal.show #imageLightboxImg {
  opacity: 1;
  transform: scale(1);
}

/* Optional: nicer close button positioning */
#imageLightbox .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
