 /* --- CSS VARIABLES --- */
        :root {
            --bg-dark: white;
            --card-bg: #1a1a1a;
            --accent: #ffa500;
            --accent-hover: #ffa500;
            --text-main: black;
            --border: #333333;
            --venue-blue: #00d2ff;
            --artist-orange: #ffa500;
            --bg: #0a0a0a;
            --surface: white;
            --text: black;
            --text-dim: black;
            --leaf-green: #4caf50;
           --leaf-greenbright: #59CC5D;
            --background-surface: #FAFAFA;
            --forest-green: #1a432e;
            --cream: #f9f8f4;
            --accent-charity: #FF6BE0; 
            --success: #28a745; 
            --danger: #dc3545;
            --glass: rgba(255, 255, 255, 0.05);
            --insta: #E1306C;
	    --dark-surface: #3A3B37;
	    --accent-venue: #00d2ff;
           --accent-artist: #ff9f1c;
--text-main: black;
--border: black;
        }

        /* --- RESET & BASE --- */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            color: var(--text-main);
font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
}

        .main-content { 
            flex: 1;
            margin: 0 auto; 
            padding: 40px 20px; 
            max-width: 100%; 
            background: var(--background-surface);
        }

        .mainindexcontent { 
            flex: 1;
            margin: 0 auto;  
            max-width: 100%; 
            background: var(--background-surface);
        }

/* Also apply to inputs and buttons to keep it consistent */
input, textarea, select, button {
    font-family: 'Poppins', sans-serif;
}






.trust-bar {
    background-color: #000;
    padding: 80px 5% 100px 5%; 
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -2px;
    margin-bottom: -2px;
    /* This is your desktop/default shape */
    clip-path: ellipse(150% 100% at 50% 0%);
}



.pill-container {
    display: flex;
    flex-wrap: wrap;    /* Allows pills to wrap to the next line on mobile */
    align-items: center; /* This is the magic "leveling" property */
justify-content: center;
    gap: 10px;          /* Adds consistent spacing between pills */
width: 90%;
margin: 0 auto;
padding-bottom: 15px;
}

.pill-link {
    display: inline-block;
    padding: 14px 28px;
    font-weight: bold;
    font-size: 18px;
    color: var(--leaf-green);
    text-decoration: none;
    border-radius: 50px; 
    border: 2px solid var(--leaf-green);
    background-color: white; 
    transition: all 0.3s ease; 
}

.pill-link:hover {
    /* Black at 50% opacity */
    background-color: var(--leaf-green); 
        color: #fff;
}

.pill-link-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-weight: bold;
    font-size: 18px;
    color: var(--leaf-green);
    text-decoration: none;
    border-radius: 50px; 
    border: 2px solid var(--leaf-green);
    background-color: white; 
    transition: all 0.3s ease; 
}

.pill-link-secondary:hover {
    /* Black at 50% opacity */
    background-color: var(--leaf-green); 
        color: #fff;
}

.pill-link-intro {
    display: inline-flex; /* Changed from flex to inline-flex */
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px; 
    border: 2px solid var(--leaf-green);
    background-color: var(--leaf-green); 
    color: white; 
}

.pill-link-introouter {
    text-align: center;
padding-top: 80px;
}




/* 1. The Container: Needed for positioning the link over the image */
.indeximagebox {
    position: relative;      /* Acts as the "anchor" for the link */
    width: 50%;              /* Your requested 50% width */
    margin: 40px auto;       /* Centers the box on the page */
    display: flex;
    justify-content: center;
    align-items: center;
margin-top: 150px;
padding-bottom: 40px;
}




/* 3. The Orange Pill Link (Centered) */
.pill-link-overlay {
    position: absolute;      /* Moves it on top of the image */
    top: 50%;                /* Move to vertical center */
    left: 50%;               /* Move to horizontal center */
    transform: translate(-50%, -50%); /* Perfectly offsets it to the middle */
    font-size: 22px;
    padding: 12px 24px;
    background-color: #000;
    border: 2px solid var(--leaf-green); 
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;     /* Pill shape for the link */
    white-space: nowrap;     /* Prevents text from wrapping */
    transition: all 0.3s ease;
    z-index: 2;              /* Ensures it stays on top */
}



.pill-link-overlay:hover {
    background-color: var(--leaf-green);
    color: #fff;
}



/* --- THE GRID --- */
.benefits-grid {
    display: grid;
    /* Uses auto-fit: 3 columns on desktop, 1 on mobile automatically */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
    margin-top: 40px;
width: 90%;
margin: 0 auto;
}

.benefits-grid h4 {
    border-bottom: 1px solid var(--text-dim);
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
    border-radius: 8px; /* Optional: looks better on mobile */
}

/* --- MOBILE OVERRIDES --- */
@media (max-width: 768px) {
    .trust-bar {
        /* Remove the ellipse on mobile to prevent layout "mess" */
        clip-path: none; 
        padding: 60px 20px;
    }

    .benefits-grid {
        /* Force 1 column on mobile */
        grid-template-columns: 1fr; 
        gap: 50px; /* More space between stacked items */
    }

    .benefits-grid img {
        /* Adjust height for mobile screens so they aren't too tall */
        height: 200px;
    }
    
    .benefits-grid h4 {
        font-size: 1.2rem;
        text-align: center; /* Optional: centered headers look cleaner on mobile */
    }

    .benefits-grid p {
        text-align: center; /* Optional: centered text for easier reading */
    }
}
/* --- LATEST ARTISTS (WHITE DIV) --- */
.latest-bands-section {
    color: #000;
    text-align: center;
    position: relative;
margin-top: 150px;
}

.cta-card ul { list-style: none; padding: 0; margin-top: 20px; text-align: left; }
.cta-card li { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-dim); }
.cta-card li i { margin-right: 8px; }

.cta-card {
    padding: 40px;
    border-radius: 20px;
    background-color: white;
    transition: 0.3s;
    text-decoration: none; /* Removes default link underline */
    color: white;
    border: 1px solid transparent;
align-items: stretch;
height: 100%;
}

.cta-card:hover { 
    transform: translateY(-5px); 
    border-color: #444; 
}



.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
margin: 0 auto;
padding: 40px;
}



.band-frame img:hover { 
    transform: scale(1.03); 
}



@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .cta-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .bands-container { grid-template-columns: 1fr; }
}

.index-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;  /* Optional: matches your "pill" aesthetic */

}

.index-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Prevents black bars and fills the container */
    display: block;
 border-radius: 20px;
}










.user-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Join/Login Button Styling */
.user-info a { 
    color: var(--leaf-green); 
    text-decoration: none; 
    font-weight: 600; 
    padding: 8px 20px;
    border: 2px solid var(--leaf-green);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.user-info a:hover { 
    background: var(--leaf-green);
    color: white;

}

/* --- HAMBURGER (WHITE LINES) --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

/* Creating the 3 white lines */
.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000; 
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show hamburger on mobile */
    }



    .user-info {
        flex-direction: column;
        margin-top: 20px;
        width: 100%;
        padding: 0 20px;
    }

    .user-info a {
        width: 90%; /* Buttons take up most of the width on mobile */
        text-align: center;
    }

    /* Animation: Hamburger morphs to 'X' when menu is open */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* --- FOOTER NAV --- */
.footer-nav-links { 
    display: flex; 
    list-style: none; 
    gap: 15px 25px; /* Added 15px vertical gap for when links wrap */
    width: 100%; 
    justify-content: center;
    flex-wrap: wrap; /* CRITICAL: Allows links to move to a new line on small screens */
    padding: 20px 5%; /* Added padding so links don't touch screen edges */
}

.footer-nav-links li {
    text-align: center; /* Ensures centered text if items wrap */
}

.footer-nav-links a { 
    color: #000000; 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: color 0.3s ease; 
    display: inline-block; /* Allows padding to take effect */
    padding: 10px 5px; /* Increases the "tap zone" for mobile fingers */
}

.footer-nav-links a:hover { 
    color: #999999; 
}

/* --- MOBILE SPECIFIC --- */
@media (max-width: 480px) {
    .footer-nav-links {
        flex-direction: column; /* Stacks links vertically on very small phones */
        gap: 10px;
        align-items: center;
    }
    
    .footer-nav-links a {
        font-size: 1rem; /* Slightly larger text for better readability on mobile */
        width: 100%;    /* Makes the entire row clickable */
        padding: 12px;  /* Optimal touch target size (approx 48px) */
    }
}










.gig-massive {
    width: 100%;
    box-sizing: border-box;
    
white-space: nowrap;

    font-family: 'Sausage', sans-serif;
    font-weight: 900;
}

.gig-massive-intro {
    width: 70%;
margin: 0 auto;
    box-sizing: border-box;
    font-size: 18px;
color: #fff;
font-family: 'Poppins', sans-serif;
padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .gig-massive {
        /* This is where your mobile-specific scaling goes */
font-size: 5vw;
        border-width: 2px; /* Example change for mobile */
    }
}
        

        /* --- HERO & SEARCH --- */

        
        .search-container {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 10px;
            background: #252525;
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .search-container select, .search-container input {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: #1a1a1a;
            color: white;
            min-width: 180px;
        }
        .btn-search {
            background: var(--accent);
            color: #000;
            border: none;
            padding: 0 25px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-search:hover { background: var(--accent-hover); }

        /* --- MAIN LAYOUT --- */
        .dashboard {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* --- BAND CARDS --- */.section-title {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers content horizontally */
  text-align: center;      /* Fallback for non-flex behavior */
  gap: 10px;
  
  width: 100%;
  margin-bottom: 20px;
  font-size: 2rem;
  
  /* Ensures padding/borders don't add to width and cause overlap */
  box-sizing: border-box; 
  clear: both;            /* Prevents floats from overlapping */
 
}

        .band-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }
        .card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: 0.3s;
        }
        .card:hover { transform: translateY(-5px); border-color: var(--accent); }
        
        .card-thumb {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }


        .card-body { padding: 20px; }
        .card-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .card-meta h3 { font-size: 1.1rem; }
        .tag { font-size: 0.7rem; background: #333; padding: 2px 8px; border-radius: 4px; color: var(--text-dim); }

        .player-mock {
            background: #252525;
            padding: 10px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.8rem;
        }
        .player-mock i { color: var(--accent); cursor: pointer; }

        .rating-row { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 20px; }
        .rating-row i { color: var(--accent); }

        .btn-profile {
            width: 100%;
            padding: 12px;
            background: #ff6600;
            border: 1px solid var(--border);
            color: white;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-profile:hover { background: #fff; color: #000; }

        /* --- SIDEBAR --- */
        .sidebar-widget {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border);
            margin-bottom: 20px; 
        }
        .sidebar-widget h4 { font-size: 0.9rem; margin-bottom: 15px; color: white; text-transform: uppercase; letter-spacing: 1px; }
        
        .gig-list { list-style: none; }
        .gig-item {
            padding: 10px 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.85rem;
        }
        .gig-item:last-child { border: none; }
        .gig-date { font-weight: bold; margin-right: 8px; color: var(--text-dim); }
        .gig-empty { color: #555; font-style: italic; cursor: pointer; }
        .gig-empty:hover { color: var(--accent); }

        /* --- FOOTER --- */
        footer {
            text-align: center;
            padding: 40px;
            color: #444;
            font-size: 0.8rem;
            margin-top: 40px;
	    background-color: white;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .dashboard { grid-template-columns: 1fr; }
            .search-container { flex-direction: column; width: 100%; }
        }



        .container { max-width: 1000px; margin: 0 auto; padding: 60px 5%; }

        /* --- HERO --- */
        .hero {
            text-align: center;
            padding: 60px 0;
        }
        .hero i { color: var(--accent); margin-bottom: 20px; }
        .hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
        .hero p { color: var(--text-dim); max-width: 600px; margin: 0 auto; }

        /* --- SPLIT SECTIONS --- */
        .insurance-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }

/* Container for spacing */
.insurance-box {
    width: 90%; /* Default for mobile: almost full width */
    max-width: 600px; /* Limits how big it gets on giant screens */
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

/* Desktop Adjustment */
@media (min-width: 768px) {
    .insurance-box {
        width: 50%; /* Switches to 50% width on tablets and laptops */
    }
}

/* Ensures the image stays sharp and fills its container */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image inside the box */
    border-radius: 12px;
    border: 1px solid var(--border);
}
        .info-card {
            background: var(--surface);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        /* Border effect at the top */
        .info-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
        }

        .venue-card::before { background: var(--venue-blue); }
        .artist-card::before { background: var(--artist-orange); }

        h2 { font-size: 1.5rem; margin-bottom: 20px; }
        h3 { font-size: 1rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

        .list-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        .list-item i { margin-top: 5px; font-size: 1.1rem; }
        
        /* Specific coloring for lists based on card type */
        .venue-card i { color: var(--venue-blue); }
        .artist-card i { color: var(--artist-orange); }

        /* --- PARTNER BANNER --- */
.partner-box {
    margin-top: 60px;
    padding: 40px;
background: white;
    border-radius: 16px;
    text-align: center;
    /* Adding a subtle green border or shadow to link to the trees */
    border: 1px solid black; 
}

.partner-box h2 {
    margin-top: 0; /* Keeps spacing consistent if there's no text above it */
    font-size: 2rem;
    letter-spacing: -0.5px;
}

        .btn-partner {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: var(--accent);
            text-decoration: none;
            font-weight: 800;
            border-radius: 8px;
            transition: 0.3s;
        }
        .btn-partner:hover { transform: scale(1.05); }

        @media (max-width: 800px) {
            .insurance-grid { grid-template-columns: 1fr; }
        }


        /* --- HERO --- */
        .about-hero
{
    padding: 100px 5%;
    text-align: center;
}
        .about-hero h1 { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 20px; }

        .about-hero h1 span:last-child { color: var(--accent-artist); }
        .about-hero h1 span:last-child { color: var(--accent-charity); }
        .about-hero p { font-size: 1.2rem; color: var(--text-dim); max-width: 700px; margin: 0 auto; }

        /* --- CONTENT SECTIONS --- */
        .container { max-width: 1000px; margin: 0 auto; padding: 80px 5%; }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
            align-items: center;
        }

        h2 { font-size: 2rem; margin-bottom: 20px; color: var(--text); }
        .accent-line { width: 50px; height: 4px; background: var(--accent-artist); margin-bottom: 20px; }

        /* --- THE "FREE" SECTION --- */
        .free-banner {
            background: var(--surface);
            padding: 40px;
            border-radius: 20px;
            font-size: 20px;
            text-align: center;
            margin-bottom: 80px;
        }
        .free-banner i { color: #2ecc71; margin-bottom: 20px; }
        .free-banner h2 { color: #fff; }

        /* --- TEAM / VALUES --- */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }
        .value-card i { font-size: 2.5rem; margin-bottom: 20px; }
        .value-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
        .value-card p { font-size: 0.9rem; color: var(--text-dim); }

        .cta-footer {
            text-align: center;
            padding: 80px;
        }
        .btn-join {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin: 10px;
            transition: 0.3s;
        }
        .btn-venue { border: 2px solid var(--accent-venue); color: var(--accent-venue); }
        .btn-artist { border: 2px solid var(--accent-artist); color: var(--accent-artist); }
        .btn-venue:hover { background: var(--accent-venue); color: #00FCFF; }
        .btn-artist:hover { background: var(--accent-artist); color: orange; }
        .btn-charity:hover { background: var(--accent-charity); color: #FFC0CB; }


        @media (max-width: 768px) {
            .mission-grid { grid-template-columns: 1fr;  }
            .values-grid { grid-template-columns: 1fr; }
            .about-hero h1 { font-size: 2.5rem; }
        }


        /* --- HEADER --- */
        .faq-header {
            padding: 80px 5% 40px;
            text-align: center;
        }
        .faq-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
        .faq-header p { color: var(--text-dim); font-size: 1.1rem; }

        /* --- LAYOUT --- */

        .container {
            margin: 0 auto 100px;
            padding: 0 5%;
        }


        .aboutuscontainer {
	    width: 80%;
            margin: 0 auto;
            padding: 0 5%;
    
        }

        .category-title {
            margin: 40px 0 20px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .venue-title { color: var(--venue-blue); }
        .artist-title { color: var(--artist-orange); }

        /* --- ACCORDION LOGIC (NO JS) --- */
        .faq-item {
            margin-bottom: 10px;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        /* Hide the actual checkbox */
        .faq-input {
            display: none;
        }

        .faq-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
       color: black;
        }

        .faq-label:hover { background: #1f1f1f; color: white; }

        /* The Arrow Icon */
        .faq-label::after {
            content: '\f078'; /* FontAwesome Down Arrow */
            font-weight: 900;
            font-size: 0.8rem;
            transition: 0.3s;
            color: white;
        }

        /* Content area starts hidden */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background: #111;
            color: white;
            font-size: 0.95rem;
        }

        /* Logic to open the accordion when checkbox is checked */
        .faq-input:checked ~ .faq-content {
            max-height: 500px; /* Large enough for any answer */
            padding: 20px;
            border-top: 1px solid var(--border);
        }

        .faq-input:checked ~ .faq-label::after {
            transform: rotate(180deg);
            color: var(--text);
        }

.faq-item:hover {
    background: #1f1f1f;
}


.faq-item:hover .faq-label,
.faq-item:hover .faq-content {
    color: white;
    background: transparent; /* Makes the parent's background show through */
}

        /* --- FOOTER --- */
        .contact-cta {
            text-align: center;
            padding: 60px;
            border-radius: 16px;
            margin-top: 60px;
        }
        .btn-contact {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--text-dim);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            transition: 0.3s;
        }
        .btn-contact:hover { background: white; color: black; }

 .btn-green {
            display: inline-block;
            margin-top: 25px;
            padding: 16px 40px;
            background: var(--forest-green);
            color: #000;
            text-decoration: none;
            font-weight: 800;
            border-radius: 8px;
            transition: 0.3s;
            text-transform: uppercase;
        }
        .btn-green:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3); }



        .cta-banner {
            background: var(--surface);
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--leaf-greenbright);
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .step {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        .step-num {
            background: var(--forest-green);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
        }
        .step h4 { margin-bottom: 5px; font-size: 1.1rem; }
        .step p { color: var(--text-dim); font-size: 0.95rem; }

        /* --- CTA SECTION --- */

               @media (max-width: 768px) {
            .content-grid { grid-template-columns: 1fr; }
            .forest-stats { grid-template-columns: 1fr; }
        }

        .btn-browse { 
            background: var(--accent); 
            color: #000; 
            padding: 12px 25px; 
            border-radius: 50px; 
            text-decoration: none; 
            font-weight: bold; 
            display: inline-block;
            text-transform: uppercase;
            font-size: 0.8rem;
        }

        .table-container { 
            background: var(--surface); 
            border-radius: 12px; 
            border: 1px solid var(--border); 
            overflow: hidden; 
            margin-top: 20px;
        }


        .artistprofilehero {
            height: 60vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 80px 10%;
        }

        .artistprofilehero-content h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            text-transform: uppercase;
            letter-spacing: -2px;
            line-height: 0.9;
            margin-bottom: 10px;
        }


        .terms-container {
            width: 80%;
            margin: 0 auto;
            margin-bottom: 30px;
        }

        .legal-content {
            padding: 20px 0;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .legal-container {
 
            padding: 40px;
        }


        .funding-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }
        .advice-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 12px;
            margin-top: 10px;
            border: 1px solid #444;
        }
        .funding-info-card {
            width: 100%; /* Ensure cards take full width */
            box-sizing: border-box;
        }
        .list-item strong { color: var(--primary-color, #ff4500); }
        .external-link { color: var(--leaf-green); text-decoration: none; font-weight: bold; }
        .external-link:hover { text-decoration: underline; }
        .grant-tag {
	    color: white;
            display: inline-block;
            background: #333;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }





        .middlenewindexcontainer {
            width: 80%;
            margin: 0 auto; 
        }

        .newindexcontainer {
            width: 80%;
            margin: 0 auto; 
padding-bottom: 10px;
        }

        .newindexcontainerskills {
            width: 80%;
            margin: 0 auto;
        }

.newindexcontainertitle {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2; /* Added for better spacing if the title wraps */
    margin-bottom: 10px; /* Usually helpful for spacing to the intro */
}

.newindexcontainerintro {
    width: 90%;
    max-width: 1100px; 
    margin: 0 auto;
    color: #ffffff; /* Or a variable like var(--bg-dark) if intended */
}

             .newindexcontainerintro p {
	   color: white;
        }


.newindexhero {
    /* Added the gradient overlay here (60% opacity black) */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('newindextop.webp');
    
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 120px 0; 
    text-align: center;
    min-height: auto; 
    display: block; 
    /* The curve remains unaffected and will clip the dark overlay too */
    clip-path: ellipse(150% 100% at 50% 0%);
}

@media (max-width: 768px) {
    .newindexhero {
        clip-path: none;
        /* Optional: Adjust padding if the removal of the curve 
           makes the section look too tall on small screens */
        padding: 50px 5%; 
    }
}

        .newindexhero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 10px;
            line-height: 1.1;
        }

@media screen and (max-width: 768px) {
    .newindexhero h1 {
        width: 100%;             /* Ensures it spans the full container width */
        display: block;          /* Standard block behavior for full width */
        font-size: 6vw;          /* Adjust this value so the text fits the screen width */
        overflow: hidden;        /* Safety measure to prevent horizontal scrolling */
        text-overflow: ellipsis; /* Adds "..." if the text still manages to exceed width */
    }
}

        .highlight { color: var(--leaf-greenbright); }

        /* CTA Cards */
.index-cta-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative; /* Keeps cards in the flow */
}
        .index-card {
            background: #ffffff;
            color: var(--text-main);
            padding: 35px;
            border-radius: 16px;
            width: 400px;
            text-align: left;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .index-card h3 { margin-top: 0; font-size: 22px; letter-spacing: 1px; }
        .index-card ul { list-style: none; padding: 0; margin: 25px 0; }
        .index-card li { margin-bottom: 12px; font-size: 0.95rem; }

        /* Buttons */
.btn {
    display: inline-flex; /* Better for icon + text alignment */
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    
    /* Use a transparent border to prevent "layout jump" on hover */
    border: 2px solid transparent; 
    
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    
    /* Transition only what is necessary for performance */
    transition: all 0.2s ease;
}

/* Don't forget the interactive states! */
.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0); /* "Push" effect */
}

.btn:focus-visible {
    outline: 3px solid var(--leaf-green); /* Critical for accessibility */
    outline-offset: 2px;
}

/* To make use of your transitions, you need hover/active states: */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.blogcontainertitle {
    font-weight: bold;
    font-size: 30px;
    padding: 50px;
    background: #F7F7F7;
    text-align: center; /* Centers the text horizontally */
    border-radius: 20px;
}

@media (max-width: 768px) {
    .blogcontainertitle {
        font-size: 20px;
        padding: 20px; /* Optional: reducing padding so it fits better on small screens */
    }
}

.blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;  /* Added for centering */
    margin-right: auto; /* Added for centering */
}

.btn-primary { 
    background-color: var(--leaf-green); 
    color: white; 
    border: 2px solid var(--leaf-green); /* Added to match secondary sizing */
    transition: background-color 0.3s ease;
}

.btn-secondary { 
    background-color: white; 
    color: var(--leaf-green); 
    border: 2px solid var(--leaf-green); 
    width: 100%; 
    text-decoration: none; /* Corrected from underline: none */
    display: inline-block; /* Ensures padding/width apply correctly to <a> tags */
    text-align: center;
    transition: all 0.3s ease;
}

/* Specific Color Shifts */
.btn-primary:hover {
    background-color: #66bb6a; 
    border-color: #66bb6a;
}

.btn-secondary:hover {
    background-color: var(--leaf-green); 
    color: white;
}
        

        /* Pill Skills Section */
        .pill-container {
            padding: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }




.latestbands {
  width: 100%;
margin-top: 50px;
  box-sizing: border-box; /* Ensures the border doesn't push the div past 100% width */
}

/* Desktop Version */
.newindeximagebox {
    width: 80%;
    margin: 20px auto;
    
    /* This forces the box to be at least this tall */
    min-height: 150px; 
    
    /* Perfect Center */
    display: flex;
    align-items: center;
    justify-content: center;
    

    position: relative;
    overflow: hidden;
}

/* Mobile Version */
@media (max-width: 768px) {
    .newindeximagebox {
        width: 100%;
        margin: 60px 0;
        border-radius: 0;
        
        /* Make this number larger to make the box "thicker" on mobile */
        min-height: 300px; 
        
        /* Ensure padding is equal so it doesn't push the button off-center */
        padding: 20px; 
    }
}

/* Mobile Version */
@media (max-width: 768px) {
    .newindeximagebox {
        width: 100%;
        margin: 60px 0;
        border-radius: 0;
        
        /* Make this number larger to make the box "thicker" on mobile */
        min-height: 300px; 
        
        /* Ensure padding is equal so it doesn't push the button off-center */
        padding: 20px; 
    }
}
.pill-link-overlay {
    background: white;
    color: var(--leaf-green);  
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}

.pill-link-overlay:hover {
    background: var(--leaf-green);
    color: white;
}

@media (max-width: 768px) {
    .newindeximagebox {
        width: 100%;
        margin: 20px 0;
        border-radius: 0;
        /* Removed aspect-ratio to keep it slim on mobile too */
        padding: 15px 0; 
    }
}

.pill-link-overlay {
    background: white;
    color: var(--leaf-green);  
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: inline-block;
    /* Transition makes the hover look smoother */
    transition: background 0.3s ease, color 0.3s ease;
}

.pill-link-overlay:hover {
    background: var(--leaf-green);
    color: white; /* Added so text remains visible on green background */
}

        /* Benefits Grid */
        .newindextrust-bar { padding: 60px 0; }
.newindexbenefits-grid {
    display: grid;
    /* Forces 3 equal columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 40px;
}

.newindexbenefit-item {
color: var(--text-dim); font-size: 0.9rem;
padding-bottom: 5px;
}

.newindexbenefit-item img {
    width: 100%;
    /* Maintain aspect ratio while filling the 200px height */
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

/* Responsive adjustment for tablets and phones */
@media (max-width: 900px) {
    .newindexbenefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .newindexbenefits-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
    }
}

        /* Artists Section */
 
.bands-container {
    display: grid;
    /* Explicitly define 4 equal columns */
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    margin-top: 30px;
    clear: both;
}

/* Ensure it looks good on mobile (reverting to 1 or 2 columns) */
@media (max-width: 992px) {
    .bands-container {
        grid-template-columns: repeat(2, 1fr); /* 2x4 on tablets */
    }
}

@media (max-width: 480px) {
    .bands-container {
        grid-template-columns: 1fr; /* Stacked on phones */
    }
}

        .band-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }




/* Container Styling */
.how-it-works-section {
    padding: 40px 20px;
    text-align: center;
    font-family: sans-serif;
margin-top: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Cards */
.step-card {
    flex: 1; /* Ensures all 3 sections are equal width */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    font-size: 16px;
}

/* The Green Circle Numbers */
.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--leaf-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-title h2 {
    font-weight: 600;
}

.step-description {
    color: #000;
    line-height: 1.5;
}

/* Responsive: Stack columns on mobile */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
}


























.support-centered-container {
  display: flex;
  justify-content: center; /* Centers the child horizontally */
  padding: 40px;
color: black;
background: white; 
            border-radius: 24px;
font-weight: bold;
}

.donation-text {
  width: 80%;            /* Sets width to 70% of the container */
  font-size: 2rem;       /* Makes the text "large" */
  text-align: center;    /* Centers the text lines within the 70% box */
  line-height: 1.5;      /* Improves readability for large text */
}

.impact-hero {
            text-align: center;
            padding: 80px 50px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('newindextop.webp');
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            border: 1px solid var(--border);
            margin-bottom: 60px;
            color: white;

        }

        .impact-hero i { color: var(--leaf-greenbright); margin-bottom: 20px; font-size: 3rem; }
        .impact-hero h1 { font-size: 3rem; letter-spacing: -1px; margin-bottom: 15px; }
        .impact-hero h1 span { color: var(--leaf-greenbright); }
        .impact-hero p { color: white; font-size: 1.2rem; max-width: 650px; margin: 0 auto; line-height: 1.6; }

        /* --- CONTENT GRID --- */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }

        @media (max-width: 768px) {
            .content-grid { grid-template-columns: 1fr; }
        }

        .step {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        .step-num {
            background: var(--leaf-green);
            color: white;
            min-width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* --- DONATION BOX SECTION --- */
        .donation-impact {
            margin-top: 60px;
            background: var(--surface);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid var(--border);
            color: white;
        }

        .impact-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .highlight-text { color: var--leaf-greenbright); font-weight: bold;) }
        .disclaimer { 
            font-size: 0.85rem; 
            color: white; 
            margin-top: 20px; 
            font-style: italic;
        }

        .impact-card {
            background: rgba(233, 30, 99, 0.1);
            padding: 30px;
            border-radius: 16px;
            border-left: 4px solid var(--leaf-green);
            width: 100%;
            box-sizing: border-box;
        }

        .impact-card h3 {
            color: white; 
        }

        @media (min-width: 768px) {
            .impact-grid { flex-direction: row; align-items: stretch; }
            .impact-text-container, .impact-card { flex: 1; }
        }

          .donation-impact { background: var(--forest-green); color: white; } 


	  .impact-text-container p { color: white; } 
	  .impact-text-container h2 { color: white; } 

        .external-link { color: var(--mvt-accent); text-decoration: none; font-weight: bold; }
        .external-link:hover { text-decoration: underline; }

        .supportcontainer { max-width: 1000px; margin: 0 auto; padding: 60px 5%; }






















        .indexhero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 90%; 
            margin: 0 auto;
            text-align: center;
            padding: 80px 20px 40px;
        }

        .indexhero h1 { 
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(2.5rem, 8vw, 4rem); 
            line-height: 1.1; 
            margin-bottom: 20px;
            color: var(--accent-charity);
            font-weight: 900; 
        }

        .indexhero p { 
            font-size: 1.2rem; 
            color: var(--text-dim);  
            margin-bottom: 40px; 
            max-width: 800px;
            line-height: 1.6;
        }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto 80px;
        }

        .resource-grid p {
            color: white; 
        }

        .charity-resource-card { 
            background: linear-gradient(145deg, #151515, #0a0a0a); 
            border: 1px solid #333;
            padding: 35px;
            border-radius: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
            color: white;
        }

        .charity-resource-card { 
            background: linear-gradient(145deg, #151515, #0a0a0a); 
            border: 1px solid #333;
            padding: 35px;
            border-radius: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .charity-resource-card:hover {
            border-color: var(--accent-charity);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 192, 203, 0.1);
        }

        .charity-resource-card h2 {
            color: var(--accent-charity);
            font-family: 'Unbounded', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .charity-resource-card p {
            color: white;
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
        }

        .section-divider {
            width: 90%;
            max-width: 1200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #333, transparent);
            margin: 40px auto;
        }

        @media (max-width: 768px) {
            .indexhero { padding: 60px 15px 30px; }
            .resource-grid { width: 95%; gap: 15px; }
        }










 .gigdetailscontainer { display: grid; grid-template-columns: 1fr; gap: 20px; background: var(--surface); width: 90%; margin: 0 auto; border-radius: 12px }
        .gigdetailscard { background: var(--surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border); margin-bottom: 20px; }
        .price-tag { font-size: 1.75rem; font-weight: 700; color: #2ecc71; margin: 15px 0; }
        .meta-info { display: flex; flex-direction: column; gap: 12px; color: white; margin: 20px 0; padding: 20px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; }
        .description-box { width: 100%; background: #000; border: 1px solid var(--border); color: white; padding: 12px; border-radius: 6px; font-family: inherit; resize: vertical; }
        .input-field { background: #000; border: 1px solid var(--border); color: white; padding: 8px; border-radius: 4px; width: 100%; margin-top: 5px; }
        .btn-apply { background: var(--accent); color: #000; width: 100%; padding: 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 1.1rem; display: block; }
        .btn-save { background: #2ecc71; color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: bold; }
        .alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-weight: bold; font-size: 0.9rem; }
        .alert-success { background: orange; color: white; }
        .alert-error { background: #e74c3c; color: white; }
        @media (min-width: 992px) {
            .gigdetailscontainer { padding: 60px 20px; grid-template-columns: 2fr 1fr; gap: 40px; }
            .meta-info { flex-direction: row; gap: 20px; }
            .sidebar-card { position: sticky; top: 30px;  }
        }



.gigmanagercard { 
    background: #181A16; 
    padding: 20px; /* Reduced from 25px */
    border-radius: 12px; 
    border: 1px solid var(--border); 
    margin-bottom: 25px; 
}

.gigmanagercard h3 { 
    color: white;
}

/* 2. Responsive Grids */
/* Default to 1 column for phones */
.grid, .genre-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 15px; 
}

label { 
    display: block; 
    font-size: 0.75rem; 
    color: #fff; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
}

input, textarea, select { 
    width: 100%; 
    padding: 12px; 
    background: #000; 
    border: 1px solid var(--border); 
    border-radius: 6px; 
    color: #fff; 
    margin-bottom: 15px; 
    font-size: 1rem; 
    box-sizing: border-box; 
}

/* 3. Button (Full width on mobile is better for thumbs) */
.btn-save { 
    background: var(--accent); 
    color: #000; 
    padding: 15px 40px; 
    border: none; 
    border-radius: 8px; 
    font-weight: bold; 
    cursor: pointer; 
    width: 100%; /* Easy to tap with thumb */
}

.alert { margin-bottom: 20px; font-weight: bold; }



/* 4. Desktop Adjustments (Screens wider than 768px) */
@media (min-width: 768px) {
    .content-wrapper { 
        margin-left: 250px; /* Bring back space for the sidebar */
        padding: 50px; 
    }

    .grid { 
        grid-template-columns: 1fr 1fr; 
    }

    .genre-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }

    .btn-save { 
        width: auto; 
        float: right; 
    }
}

.gigmanagercontent-wrapper { 
    margin-left: 0; /* Reset sidebar margin */
    padding: 20px;  /* Tighter padding for small screens */
    max-width: 900px; 
    margin-right: auto;
    margin-left: auto;
}


 .venuehomepill-link {
            display: inline-block;
            color: white;
            padding: 14px 40px;
            border-radius: 50px; /* Pill Shape */
            text-decoration: none;
	    border: 2px solid #228b22;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            margin: 10px;
            background: #228b22; 
        }

        .venuehomepill-link:hover {
            transform: translateY(-3px);
            color: #228b22;
            background: white;
        }

        .venuehomepill-link.secondary {
            background: transparent;
            color: #228b22;
            border: 2px solid #228b22;
        }

        .venuehomepill-link.secondary:hover {
            border-color: #228b22;
            color: white;
            background: #228b22;
        }

        .hero-card {
            background: var(--surface);
            padding: 60px 40px;
            border-radius: 24px;
            margin-bottom: 60px;
	   width: 60%;
        }

       p {
            color: var(--text-dim);
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 35px;
        }











        .skills-section {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 60px 40px;
            border-radius: 24px;
            margin-bottom: 60px;
        }

        .icon-header {
            font-size: 2.5rem;
            color: var(--forest-green, #228b22);
            margin-bottom: 20px;
        }





        .artistprofilebadge {
            background: var(--accent);
            color: #000;
            padding: 5px 15px;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.8rem;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 15px;
          margin-top: 15px;
        }

.artistprofilewrap {
            background: var(--background-surface);
padding-bottom: 40px;
}

.artistprofilehero-content h1 {
    word-wrap: break-word;       /* Older browser support */
    overflow-wrap: break-word;  /* Standard way to wrap long text */
    word-break: break-word;     /* Ensures it breaks in flex/grid containers */
    line-height: 1.2;           /* Prevents lines from crashing into each other */
    max-width: 100%;            /* Keeps it within the parent container */
    hyphens: auto;              /* Optional: adds hyphens if the browser supports it */
            background: var(--background-surface);
}

        .artistprofilecontainer {
            max-width: 1200px;
            margin: -50px auto 100px;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .artistprofilecard {
            background: #191A18;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .gallery img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            transition: 0.3s;
            filter: grayscale(30%);
        }

        .gallery img:hover {
            filter: grayscale(0%);
            transform: scale(1.02);
        }



.gigdetailscontainer {  
    display: grid; 
    grid-template-columns: 1fr;
    gap: 20px;
    background: var(--surface);
    width: 90%;
    margin: 0 auto;
    border-radius: 12px
}

.gigdetailscard { 
    background: var(--surface); 
    padding: 20px; 
    border-radius: 15px; 
    border: 1px solid var(--border); 
    margin-bottom: 20px; 
}




        .main-contentinner { 
           width: 90%;
   	   margin: 0 auto;
            background: #262624; 
           padding: 20px;
            border-radius: 12px
        }
        
        .main-contentinner h1 { 
	color: white;
        }


       .filter-bar { 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border);
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: flex-end;
        }
        .filter-group { flex: 1; min-width: 150px; background: #262624; }
        .filter-group label { display: block; font-size: 0.7rem; color: white; margin-bottom: 5px; text-transform: uppercase; }
        .filter-bar select, .filter-bar input { 
            width: 100%; padding: 10px; background: #000; border: 1px solid var(--border); 
            border-radius: 6px; color: #fff; font-size: 0.9rem; 
        }
        .btn-filter { background: var(--accent); color: #000; padding: 10px 25px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; height: 42px; }
        .btn-reset { background: #333; color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 6px; font-size: 0.9rem; height: 42px; display: inline-flex; align-items: center; }

        .gig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; color: white; }
        .gig-card { 
            background: #191A18; border: 1px solid var(--border); border-radius: 12px; 
            padding: 20px; transition: transform 0.2s, border-color 0.2s; position: relative;
            display: flex; flex-direction: column; 
        }
        .gig-card:hover { transform: translateY(-5px); border-color: var(--accent); }
        .giglistingsgig-date { color: white; font-weight: bold; font-size: 0.9rem; margin-bottom: 5px; }
        .gig-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; line-height: 1.2;  }
        .gig-venue { font-size: 0.9rem; margin-bottom: 15px; }
        .gig-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
        .tag { background: #222; color: #aaa; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; }
        .gig-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #222; }
        .fee { font-weight: 700; color: #2ecc71; }
        .gig-btn-apply { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
        
        .no-results { text-align: center; padding: 50px; color: white; grid-column: 1 / -1; }













.gigdetailsbadge { 
    background: var(--accent); 
    color: white;
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    display: inline-block;
}

.gigdetailsprice-tag { 
    font-size: 1.75rem; 
    font-weight: 700; 
    color: #2ecc71; 
    margin: 15px 0; 
}

.gigdetailsmeta-info { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    color: white; 
    margin: 20px 0; 
    padding: 20px 0; 
    border-top: 1px solid #222; 
    border-bottom: 1px solid #222; 
}

.gigdetailsdescription { 
    line-height: 1.6; 
    color: white; 
    white-space: pre-line; 
    font-size: 0.95rem;
}

.gigdetailsbtn-apply, .gigdetailsbtn-applied { 
    width: 100%; 
    padding: 15px; 
    border: none; 
    border-radius: 8px; 
    font-weight: bold; 
    cursor: pointer; 
    font-size: 1.1rem; 
    display: block;
}

.gigdetailsbtn-apply { background: var(--accent); color: #000; }
.gigdetailsbtn-applied { background: #222; color: white; cursor: not-allowed; }

textarea { 
    width: 100%; 
    background: #000; 
    border: 1px solid var(--border); 
    color: white;
    padding: 12px; 
    border-radius: 6px; 
    margin-bottom: 15px; 
    font-family: inherit; 
    box-sizing: border-box;
}

.gigdetailscontainer { 
    background: #242621; 
 }

.gigdetailsalert { 
    padding: 15px; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    font-weight: bold; 
    font-size: 0.9rem;
color: white;
}

@media (min-width: 992px) {
    .gigdetailscontainer {
        padding: 60px 20px;
        grid-template-columns: 2fr 1fr; 
        gap: 40px;
    }
    .gigdetailsmeta-info { flex-direction: row; gap: 20px; }
    .gigdetailssidebar-card { position: sticky; top: 30px; background: #A6A89E; }
    .gigdetailscard { padding: 30px;}
}










.artistprofilecontent { 
    margin-left: 0; /* Remove fixed margin for mobile */
    padding: 20px;  /* Reduce padding for small screens */
    max-width: 900px; 
color: black;
}

.artistprofilemanagercard { 
    background: #191A18; 
    padding: 20px; 
    border-radius: 12px; 
    border: 1px solid var(--border); 
    margin-bottom: 25px; 
color: white;
}

.artistprofilemanagercard h3 { 
color: white;
}

.card h3 { 
color: black;
}

/* Grids stack vertically by default */
.artistprofilemanagergrid, .artistprofilemanagermedia-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 15px; 
color: white;
}

label { 
    display: block; 
    font-size: 0.75rem; 
    color: white; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
}

input, textarea, select { 
    width: 100%; 
    padding: 12px; 
    background: #000; 
    border: 1px solid var(--border); 
    border-radius: 6px; 
    color: #fff; 
    margin-bottom: 15px; 
    font-size: 1rem; 
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

.artistprofilemanagerimg-preview { 
    width: 100%; 
    height: 150px; 
    object-fit: cover; 
    border-radius: 8px; 
    border: 1px solid var(--border); 
    margin-bottom: 10px; 
}

.btn-save { 
    background: var(--accent); 
    color: #000; 
    padding: 15px 40px; 
    border: none; 
    border-radius: 8px; 
    font-weight: bold; 
    cursor: pointer; 
    width: 100%; /* Full width button on mobile is better for thumbs */
}

.artistprofilemanagermedia-box { 
    background: #000; 
    border: 1px solid var(--border); 
    padding: 10px; 
    border-radius: 8px; 
    text-align: center; 
}

/* Tablet and Desktop Adjustments */
@media (min-width: 768px) {
    .artistprofilecontent { 
        margin-left: 250px; /* Bring back the sidebar space */
        padding: 50px; 
    }

    .artistprofilemanagergrid { 
        grid-template-columns: 1fr 1fr; 
    }

    .artistprofilemanagermedia-grid { 
        grid-template-columns: repeat(4, 1fr); 
    }

    .btn-save { 
        width: auto; /* Return to natural size */
        float: right; 
    }
}



        .artistgigapplicationmain-contentinner { 
           width: 90%;
   	   margin: 0 auto; 
           padding: 20px;
            border-radius: 12px
        }
        
        .artistgigapplicationmain-contentinner h1 { 
	color: white;
        }






        .venuehomeicon-header {
            font-size: 2.5rem;
            color: #228b22;
            margin-bottom: 20px;
        }



        .venuehomemain-contentinner { 
       width: 50%; 
            margin: 0 auto; 
            padding: 60px 20px; 
display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: center;    /* Centers children horizontally */
    justify-content: center; /* Centers children vertically (if height is defined) */
    text-align: center;
        }

@media (max-width: 768px) {
    .venuehomemain-contentinner {
        width: 90%;
        padding: 40px 15px; /* Slightly reduced padding for small screens */
    }
}

       .venuehomemain-contentinner h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -2px;
        }



















        .main-content { 
            padding: 80px 0; 
            background: var(--background-surface, #121212);
            min-height: 100vh;
        }

        .main-wrapper {
            width: 90%;
            margin: 0 auto;
            max-width: 1200px;
        }

        /* Hero & Search */
        header.hero h1 { 
            text-align: center; 
            margin-bottom: 30px; 
            color: #000;
        }

.search-container-form {
    display: flex;
    gap: 10px;
    margin: 30px auto 60px; 
    /* Changed to stretch to ensure all elements fill the 48px height equally */
    align-items: stretch; 
    color: black;
    max-width: 1000px; /* Optional: keeps the bar from getting too wide on desktop */
}

.search-container-form select, 
.search-container-form input,
.btn-search {
    /* Apply box-sizing to everything to ensure padding doesn't add to the 48px */
    box-sizing: border-box;
    height: 48px; 
    font-size: 16px; /* Prevents iOS zoom on focus */
}

.search-container-form select, 
.search-container-form input {
    flex: 1; 
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #fff;
    color: black;
}

.btn-search {
    /* Flex: none ensures the button doesn't shrink or grow; it stays size of its content + padding */
    flex: none; 
    padding: 0 30px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    /* Added display flex to button to center text perfectly inside */
    display: flex;
    align-items: center;
    justify-content: center;
}

        /* Section Title Center */
        .section-title {
            text-align: center;
            width: 100%;
            margin-bottom: 40px;
            font-size: 2rem;
            color: #000;
        }

        /* Grid Layout: 3 Columns on desktop */
        .band-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Card Visuals */
        .artistbookercard {
            background: #1e1e1e;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid #333;
        }

        .vcard:hover {
            transform: translateY(-5px);
        }

        .artistbookercard-thumb { 
            background-size: cover; 
            background-position: center; 
            height: 220px; 
            position: relative; 
        }

        .artistbookerbadge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 5px 10px;
            font-size: 0.7rem;
            border-radius: 4px;
        }

        .artistbookercard-body {
            padding: 20px;
            text-align: left;
        }

        /* 3-Row Meta Info */
        .artistbookercard-meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 20px;
        }

        .artistbookercard-meta h3 { 
            color: #ffffff; 
            margin: 0;
            font-size: 1.25rem;
            text-transform: uppercase;
        }

        .artistbookercard-meta .tag {
            color: #ffffff; /* Fixed Genre Color */
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.9;
        }

        .artistbookercard-meta .location-info {
            color: #aaaaaa;
            font-size: 0.85rem;
        }

        .btn-profile-link {
            display: block;
            width: 100%;
            text-align: center;
            background: #ff6600;
            color: white;
            padding: 12px 0;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            font-size: 0.85rem;
        }

        /* Sidebar Styling */
        .artistbookersidebar-widget {
            background: #1e1e1e;
            padding: 20px;
            border-radius: 12px;
            margin-top: 40px;
            border: 1px dashed #444;
        }

        /* Responsive */
        @media (max-width: 850px) {
            .search-container-form { flex-direction: column; }
            .search-container-form select, .search-container-form input, .btn-search { width: 100%; }
            .section-title { font-size: 1.5rem; }
        }







        .venuegigmanagermain-contentinner { 
            margin: 0 auto;  
            max-width: 90%; 
        }


 .gigdetailspagecontainer { grid; grid-template-columns: 1fr; gap: 20px; background: black; width: 90%; margin: 0 auto; border-radius: 12px }

        .gigdetailspagecard { padding: 20px; border-radius: 15px; border: 1px solid var(--border); margin-bottom: 20px; }

.gigdetailspagecard h3 { color: white; }




.blog-container {
            max-width: 950px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .blog-header {
            text-align: left;
            margin-bottom: 60px;
            border-bottom: 5px solid var(--text-main);
            padding-bottom: 20px;
        }

        .blog-header h1 {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--text-main);
            line-height: 1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .blog-content h2 {
            color: var(--text-main);
            font-family: 'Unbounded', sans-serif;
            font-size: 2rem;
            margin: 50px 0 25px;
        }

        .blog-content h3 {
            font-family: 'Unbounded', sans-serif;
            font-size: 1.3rem;
            margin: 30px 0 15px;
            color: var(--text-main);
        }

        .blog-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: var(--text-main);
        }

        .blog-content ul {
            margin-bottom: 40px;
            padding-left: 25px;
        }

        .blog-content li {
            margin-bottom: 15px;
            list-style: square;
            color: var(--text-main);
            font-size: 1.1rem;
        }

        .blog-content strong {
            color: #000;
            font-weight: 800;
        }




        .artistbookerhero {
            text-align: center;
            padding: 60px 0;
color: black;
        }
        .artistbookerhero i { color: black; margin-bottom: 20px; }
        .artistbookerhero h1 { font-size: 2.5rem; margin-bottom: 15px; }
        .artistbookerhero p { color: black; max-width: 600px; margin: 0 auto; }







.gigdetailseditcontainer {  
    display: grid; 
    grid-template-columns: 1fr;
    gap: 20px;
    background: black;
    width: 90%;
    margin: 0 auto;
    border-radius: 12px
}

.gigdetailseditcard { 
    background: black; 
    padding: 20px; 
    border-radius: 15px; 
    border: 1px solid var(--border); 
    margin-bottom: 20px; 
}



.indexbloglinks {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    font-family: sans-serif;
}

.blog-box {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
    background-color: #fff;
    /* Removed link-specific properties from the box itself */
}

/* Styling the link inside the H3 */
.blog-box h3 {
    margin-top: 0;
}

.blog-box h3 a {
    text-decoration: none;
color: var(--leaf-greenbright);
}

.blog-box h3 a:hover {
    text-decoration: underline;
color: var(--leaf-greenbright);
}

.blog-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 0.85rem;
color: var(--leaf-greenbright);
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive Stack */
@media (max-width: 768px) {
    .indexbloglinks {
        flex-direction: column;
    }
}

.index-blog-posts-section {
    padding: 60px 20px;
}





















/* This hides the menu on screens smaller than 768px */
@media (max-width: 768px) {
    .desktop-only-menu {
        display: none;
    }
}





        .indexnavigatoinbody {

            color: #000000;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .display-panel {
            display: flex;
            width: 100%;

 
            overflow: hidden;
        }

        .menu-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;

        }

        .nav-button {
            display: block;
            text-decoration: none;
            color: #000000;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            transition: 0.2s ease;
            cursor: pointer;
            border: none;
            background: none;
            text-align: left;
            width: 100%;
        }

        .nav-button:hover, .nav-button.active {
            padding-left: 10px;
            color: #666;
        }

        .content-side {
            flex: 1.6;
            padding: 40px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        #panel-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: -1px;
color: var(--leaf-green);
        }

        #panel-desc {
            font-size: 1.1rem;
            line-height: 1.5;
            color: #333;
            margin-bottom: 20px;
        }

        /* Image Styling */
        #panel-img {
background: #D8D8D9;
            width: 97%;
            padding: 20px;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none; /* Hidden by default, shown via JS */
        }

        .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background: var(--leaf-green);; 
            color: #fff;
            text-decoration: none;
            align-self: flex-start;
            border-radius: 4px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .display-panel { flex-direction: column; height: auto; }
            .menu-side { border-right: none; border-bottom: 1px solid #000; }
        }