/* custom.css */

/* REMOVED .main-logo rule */

/* Sky & Musician & Cloud Layers - REVISED Z-INDEX */
.slider-bg { /* SKY */
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #87CEEB; /* Sky blue */
    z-index: 0; /* Base layer - BEHIND EVERYTHING */
}

#smokebg { /* CLOUD LAYER */
    position: absolute;
    top: 0; right: 0; width: 100%; height: 100%;
    z-index: 1; /* Clouds ABOVE sky, BELOW Logo */
}

/* REMOVED .image-t (Musician Layer) rule */

/* ADDED: New layer for the combined logo */
.logo-combined-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/page/logo_combined.png') no-repeat center center;
    /* Changed from 'contain' to shrink the logo slightly */
    background-size: 75%;
    z-index: 2; /* Sits above clouds, below text */
}

/* Ensure Text Content is Above Clouds/Musician */
#slider .vertical-middle.slider-element-fade {
    position: relative;
}

/* ... (rest of the CSS file remains the same) ... */

/* Ensure Text Content is Above Clouds/Musician */
/* .vertical-middle has inline z-index: 9 in HTML, which is highest */

/* YouTube Play Button */
.play-video i {
    position: relative;
    padding-left: 5px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 24px;
    color: #111;
    text-align: center;
    background-color: #FFF;
    transition: transform .3s ease-out;
    z-index: 3; /* Play button ABOVE musician/clouds, but BELOW main text overlay */
}

.play-video:hover i { transform: scale(1.1); }

/* Header Logo Size Control (Use this if you are using logo_top.png) */
#header #logo img {
    max-height: 55px; /* Adjust as needed */
    height: auto;
    width: auto;
}
#header.sticky-header #logo img {
     max-height: 45px; /* Adjust as needed */
}

/* Team Member Image Alignment */
.team-img-top,
.team-img-bottom {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Gig List Item Styling */
.gig-item {
    background-color: #fff;
    color: #333;
}
.gig-item h5 span {
    font-weight: 600;
}

/* Gigs section color key */
.gig-key {
    margin-bottom: 2rem;
    font-size: 1rem;
}
.gig-key-item {
    display: inline-block;
    margin: 0 15px;
    font-weight: 500;
}
.gig-key-item span {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 3px;
}
.new-orleans-wanderers-gig h5 span {
    color: #dc3545 !important; /* Bootstrap's danger red color */
}

/* == Custom Bio Video Embed Styling == */

/* The simple outer wrapper we added to the HTML */
#section-about .bio-video-embed-wrapper {
    position: relative; /* For positioning context of child elements */
    width: 100%;
}

#section-about .bio-video-embed-wrapper .fluid-width-video-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 0 !important; /* Height is controlled by padding-top */
    padding: 0 !important; /* Reset any other padding it might have */
    padding-top: 56.25% !important; /* THIS IS KEY for 16:9 aspect ratio (9 / 16 * 100) */
}

#section-about .bio-video-embed-wrapper .fluid-width-video-wrapper iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

/* Hero Scroll Down Arrow */
.one-page-arrow {
    z-index: 10; /* Ensure it's above clouds/musician but below menu/modals */
}

/* Styling for linked gig items */
.gig-item-link {
    text-decoration: none; /* Remove default underline from link */
    display: inline-block; /* Make the link take up the block space */
    width: 100%; /* Ensure link covers the full width for clickability */
}
.gig-item-link .gig-item:hover {
    /* Optional: add a hover effect to the gig item itself if desired */
    /* e.g., background-color: #f8f9fa; */
    /* e.g., box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important; /* A subtle lift effect */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.gig-item-link .gig-item {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Lightbox Navigation Arrows - Magnific Popup */
.mfp-arrow {
    opacity: 0.8;
    transition: opacity 0.2s;
    width: 44px; /* Default width */
    height: 44px; /* Default height */
    margin-top: -22px; /* Half of height to vertically center */
    z-index: 1050; /* Ensure they are above the image but below the close button */
    background-color: rgba(0,0,0,0.3); /* Optional: subtle background for better visibility */
    border-radius: 3px; /* Optional: slightly rounded corners */
    padding: 0; /* Reset padding if button element */
    border: none; /* Reset border if button element */
    line-height: 44px; /* Center icon vertically */
    text-align: center; /* Center icon horizontally */
}

.mfp-arrow:hover {
    opacity: 1;
    background-color: rgba(0,0,0,0.5); /* Optional: hover background */
}

.mfp-arrow-left {
    left: 10px; /* Adjust as needed */
}

.mfp-arrow-right {
    right: 10px; /* Adjust as needed */
}

/* Using Bootstrap Icons for Lightbox Arrows */
.mfp-arrow-left::before {
    content: "\f284"; /* Unicode for Bootstrap Icons' chevron-left */
    font-family: "bootstrap-icons"; /* From bootstrap-icons.css */
    font-size: 24px; /* Adjust size as needed */
    color: #FFF; /* Arrow color */
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1; /* For better icon alignment */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mfp-arrow-right::before {
    content: "\f285"; /* Unicode for Bootstrap Icons' chevron-right */
    font-family: "bootstrap-icons"; /* From bootstrap-icons.css */
    font-size: 24px; /* Adjust size as needed */
    color: #FFF; /* Arrow color */
    display: inline-block;
    vertical-align: middle;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1; /* For better icon alignment */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Video Section CSS - FINAL ATTEMPT --- */

/* 
  This targets the theme's JS-added wrapper INSIDE Bootstrap's .ratio div.
  We need to neutralize its padding and make it fill the .ratio container.
*/
#section-band .ratio > .fluid-width-video-wrapper {
    padding-top: 0 !important; /* CRITICAL: Override inline style from JS */
    height: 100% !important;    /* Make it fill the .ratio container's height */
    position: absolute !important; /* Ensure it behaves correctly within .ratio */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

/* Ensure the iframe itself fills this neutralized wrapper */
#section-band .ratio > .fluid-width-video-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Facebook Video Containers --- */
/* Facebook Video Specific Styling (Landscape-ish) */
#section-band .facebook-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.0714%; /* (314 / 560) * 100% */
    height: 0;
    background-color: #f0f0f0; 
}

#section-band .facebook-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Facebook Video Specific Styling (Portrait) */
#section-band .facebook-video-container-portrait {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 178.277%; /* (476 / 267) * 100% */
    height: 0;
    background-color: #f0f0f0;
}

#section-band .facebook-video-container-portrait iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Basic caption styling */
#section-band .col-md-4 > p.text-center,
#section-band .col-lg-4 > p.text-center { /* Simplified to target all video columns */
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Custom CSS for the new booking prompt bar */
.booking-prompt-text {
    font-weight: 600; /* Bolder than the standard 'lead' text */
    /* This makes the font size adjust fluidly with the screen width */
    /* It will be at least 1.2rem, at most 1.75rem, and grow in between */
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    letter-spacing: 0.5px;
}

/* Prevent the text from wrapping on tablets and larger screens */
@media (min-width: 768px) {
    .booking-prompt-text {
        white-space: nowrap;
    }
}

/* Header Extras - Social Icons in Navigation */
.header-extras {
    margin-left: auto; /* Pushes the icons to the right */
    display: flex;
    align-items: center;
}

.header-extras .social-icon {
    margin: 0 0 0 10px; /* Adds spacing between icons */
    border: 0;
    --cnvs-socialicon-size: 26px; /* Adjust size if needed */
}