:root {
    /* Rich, Darker Pink */
    --primary: rgb(124, 58, 237); 
    /* A deep Midnight Navy to pair with the dark pink for elegance */
    --secondary: #1E1E45; 
    --dark: #0a0a0a;
    --bg-dark: #0a0a0a;
    --bg-surface: #111111;
    --bg-elevated: #1a1a1a;

    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Updated gradient to use the darker, richer tones */
    --grad: linear-gradient(90deg, #763aed, #4A00E0);
	
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-body); 
    background: var(--bg-dark); 
    color: #eaeaea; 
    overflow-x: hidden; 
}

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; background: var(--bg-surface); position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    height: 80px;
}

.logo a { 
    font-family: var(--font-head); font-size: 2.2rem; 
    text-decoration: none; color: #ffffff; letter-spacing: 1px;
}
.logo span { color: var(--primary); }

/* Navigation */
.nav-links { display: flex; height: 100%; }
.dropdown { position: relative; display: flex; align-items: center; }

.dropbtn {
    background: none; border: none; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 700; padding: 0 20px;
    height: 100%; text-transform: uppercase; cursor: pointer; color: #cccccc;
    transition: 0.2s;
}
.dropbtn:hover { color: var(--primary); }

/* Dropdown Content */
.dropdown-content {
    display: none; position: absolute; background: var(--bg-elevated);
    top: 100%; left: 0; min-width: 250px; padding: 30px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.8); 
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--primary);
    z-index: 1100;
}

.dropdown:nth-child(3) .dropdown-content,
.dropdown:nth-child(4) .dropdown-content { left: auto; right: 0; }

.dropdown:hover .dropdown-content { display: block; }

.content-grid { display: grid; grid-template-columns: repeat(0, 1fr); gap: 15px; }

.content-grid a { 
    text-decoration: none; color: #aaaaaa; font-size: 0.9rem; 
    padding: 5px 0; transition: 0.2s; font-weight: 400;
}
.content-grid a:hover { color: var(--primary); padding-left: 5px; }

/* Auth Buttons */
.auth-buttons { display: flex; gap: 20px; align-items: center; }

.login { 
    text-decoration: none; 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
}

.register-btn {
    background: var(--grad); color: #fff; padding: 10px 22px;
    text-decoration: none; font-weight: 800; border-radius: 4px;
    font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px;
    transition: 0.3s;
}
.register-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(184, 20, 102, 0.4); 
}

/* Hero Section */
.hero {
    height: 85vh; position: relative; display: flex; align-items: center; justify-content: center;
    background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2070') center/cover no-repeat;
    color: #fff; text-align: center;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.hero-content { position: relative; z-index: 5; width: 90%; max-width: 1100px; }

.hero-content h1 { 
    font-family: var(--font-head); font-size: 6.5rem; line-height: 0.85; margin-bottom: 15px;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p { 
    font-size: 1.4rem; 
    font-weight: 300; 
    margin-bottom: 50px; 
    opacity: 0.85; 
}

/* Search Container */
.search-container {
    background: var(--bg-surface); padding: 10px; border-radius: 100px;
    display: flex; align-items: center; box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    max-width: 950px; margin: 0 auto;
}

.search-input-group {
    flex: 1; padding: 10px 25px; text-align: left; border-right: 1px solid #333333;
}

.search-input-group:last-of-type { border-right: none; }

.search-input-group label { 
    display: block; font-family: var(--font-head); color: #bbbbbb; 
    font-size: 0.9rem; letter-spacing: 1px;
}

.search-input-group input {
    width: 100%; border: none; outline: none; font-family: var(--font-body);
    font-size: 1rem; font-weight: 600; color: #ffffff; background: transparent;
}

.hero-search-btn {
    background: #ffffff; color: #000000; border: none;
    font-family: var(--font-head); font-size: 1.5rem; padding: 15px 45px;
    border-radius: 100px; cursor: pointer; transition: 0.3s;
    letter-spacing: 1px; margin-left: 10px;
}

.hero-search-btn:hover { 
    background: var(--primary); 
    color: #ffffff;
}

.how-it-works { padding: 100px 5%; background: #0f0f0f; }

.how-it-works h2 { 
    font-family: var(--font-head); font-size: 5rem; 
    color: #ffffff; margin-bottom: 10px; 
}

.how-it-works h2 span { color: var(--primary); }



.workflow-section h2 span { color: var(--primary); }

.subtitle { 
    font-family: var(--font-body); 
    font-size: 1.2rem; 
    color: #aaaaaa; 
    margin-bottom: 60px; 
}

.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.card { 
    padding: 50px; border-radius: 12px;
    border: 2px solid #2a2a2a;
    background: #121212;
    transition: 0.4s ease;
}

.card:hover { 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(184, 20, 102, 0.2); 
}

.card h3 { 
    font-family: var(--font-head); font-size: 2.5rem; 
    margin-bottom: 30px; color: #ffffff;
}

.why-choose-us h3 span {
	color: var(--primary);
}

.cta-banners h2 span { 
	color: var(--primary); 
}	

.step { 
    display: flex; gap: 20px; margin-bottom: 25px;
    font-family: var(--font-body); text-align: left;
    line-height: 1.6;
}

.step span { 
    font-family: var(--font-head); font-size: 1.5rem; 
    color: var(--primary); min-width: 30px;
}

.step strong { 
    display: block; 
    color: #ffffff; 
    font-size: 1.1rem; 
}

.btn-card {
    display: inline-block; margin-top: 30px; padding: 15px 40px;
    background: #ffffff; color: #000000; text-decoration: none;
    font-family: var(--font-head); font-size: 1.2rem; 
    border-radius: 4px; transition: 0.3s;
}

.btn-card:hover { 
    background: var(--primary); 
    color: #ffffff;
    transform: translateY(-3px); 
}

/* .btn-card-white {
    display: inline-block; margin-top: 30px; padding: 15px 40px;
    color: #000000; text-decoration: none; 
    font-family: var(--font-head); font-size: 1.2rem; 
    border-radius: 4px; transition: 0.3s; border: 2px solid #000000 !important;
    cursor: pointer;
}
.btn-card-white:hover { background: var(--primary); transform: translateY(-3px); border: none; }
*/

@media (max-width: 900px) {
    .cards-grid { grid-template-columns: 1fr; }
}

.featured-spotlight { padding: 80px 5%; background: #0f0f0f; }

.featured-spotlight h2 { 
    font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 10px;
    color: #ffffff;
}

.featured-spotlight h2 span { color: var(--primary); }

.spotlight-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}

.spotlight-card { 
    background: #121212; border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8); transition: 0.3s;
}

.spotlight-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 30px rgba(0,0,0,0.9); 
}

.spotlight-card img { width: 100%; height: 220px; object-fit: cover; }

.card-info { padding: 20px; }

.card-info h3 { 
    font-family: var(--font-head); 
    font-size: 1.5rem; 
    margin-bottom: 5px; 
    color: #ffffff;
}

.role { 
    font-family: var(--font-body); 
    color: var(--primary); 
    font-weight: 600; 
    margin-bottom: 10px; 
}

.rating { 
    font-family: var(--font-body); 
    font-size: 0.9rem; 
    color: #f59e0b; 
    margin-bottom: 15px; 
}

.book-now { 
    display: block; 
    font-family: var(--font-head); 
    color: #ffffff; 
    text-decoration: none; 
    font-size: 1.1rem; 
    pt: 15px;
}

.book-now:hover { color: var(--primary); }

@media (max-width: 1024px) { .spotlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .spotlight-grid { grid-template-columns: 1fr; } }

.workflow-section { padding: 80px 5%; text-align: center; }

.toggle-container { 
    background: #1a1a1a; display: inline-flex; 
    padding: 5px; border-radius: 50px; margin-bottom: 50px; 
}

.toggle-btn { 
    padding: 12px 30px; border: none; border-radius: 50px;
    cursor: pointer; font-family: var(--font-head); font-size: 1.1rem;
    transition: 0.3s; background: transparent;
    color: #cccccc;
}

.toggle-btn.active { 
    background: var(--primary); 
    color: #ffffff; 
}

.steps-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; 
}

.step-card { padding: 20px; }

.step-number { 
    font-family: var(--font-head); font-size: 3rem; 
    color: var(--primary); margin-bottom: 10px; 
}

.step-card h4 { 
    font-family: var(--font-head); 
    font-size: 1.4rem; 
    margin-bottom: 10px; 
    color: #ffffff;
}

.step-card p { 
    font-family: var(--font-body); 
    font-size: 0.95rem; 
    color: #aaaaaa; 
}

/* Testimonials */
.testimonials { padding: 100px 5%; background: #0f0f0f; }

.testimonials h2 { 
    font-family: var(--font-head); font-size: 3.5rem; 
    margin-bottom: 10px; text-align: center;
    color: #ffffff;
}

.testimonials h2 span { color: var(--primary); }

.testimonial-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; 
}

.testimonial-card { 
    padding: 40px; background: #121212; border-radius: 12px;
    border-left: 5px solid var(--primary); position: relative;
}

.quote-mark { 
    font-size: 4rem; color: var(--primary); 
    opacity: 0.3; line-height: 1; margin-bottom: 10px; 
}

.quote-text { 
    font-family: var(--font-body); font-size: 1.2rem; 
    font-style: italic; color: #cccccc; margin-bottom: 25px; line-height: 1.6;
}

.author h4 { 
    font-family: var(--font-head); 
    font-size: 1.3rem; 
    margin-bottom: 2px; 
    color: #ffffff;
}

.author span { 
    font-family: var(--font-body); 
    color: var(--primary); 
    font-size: 0.9rem; 
}

@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

.author-info { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-top: 20px; 
}

.author-img { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid var(--primary); 
}

.author-text h4 { 
    font-family: var(--font-head); 
    font-size: 1.3rem; 
    margin-bottom: 2px; 
    color: #ffffff;
}

.author-text span { 
    font-family: var(--font-body); 
    color: var(--primary); 
    font-size: 0.9rem; 
}

.why-choose-us { padding: 100px 5%; background: #0f0f0f; text-align: center; }

.why-choose-us h2 { 
    font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 15px; 
    color: #ffffff;
}

.why-choose-us h2 span { color: var(--primary); }

.features-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; 
}

.feature-card { 
    background: #121212; padding: 40px 25px; border-radius: 16px;
    border: 1px solid #2a2a2a; transition: 0.3s;
}

.feature-card:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
}

.icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); }

.feature-card h3 { 
    font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; 
    color: #ffffff;
}

.feature-card p { 
    font-family: var(--font-body); font-size: 0.95rem; color: #aaaaaa; line-height: 1.6; 
}

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* CTA Banners */
.cta-banners { 
    display: flex; 
    width: 100%; 
    min-height: 350px; 
    overflow: hidden; 
}

.banner { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    color: #fff; 
    padding: 40px;
    position: relative; 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

/* Explicitly darken backgrounds so text is readable */
.organizer-banner { 
    background-color: #111111; 
}

.artist-banner { 
    background-color: var(--primary); 
}

/* Overlay to ensure readability */
.banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.banner-content { position: relative; z-index: 2; }

.banner h2 { 
    font-family: var(--font-head); 
    font-size: 3rem; 
    margin-bottom: 15px; 
    letter-spacing: 1px;
}

.banner p { 
    font-family: var(--font-body); 
    margin-bottom: 30px; 
    font-size: 1.1rem;
    color: #dddddd;
}

.cta-btn {
    padding: 15px 40px; 
    background: #ffffff; 
    color: #000000;
    text-decoration: none; 
    font-family: var(--font-head); 
    font-size: 1.2rem; 
    border-radius: 4px; 
    transition: 0.3s; 
    display: inline-block;
    text-transform: uppercase;
}

.cta-btn:hover { 
    background: var(--primary); 
    color: #ffffff; 
    transform: scale(1.05); 
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .cta-banners { flex-direction: column; }
    .banner { min-height: 250px; }
}



/* Layout Container */
.main-footer { background: #0f0f0f; padding: 80px 5% 40px; border-top: 1px solid #222; }

.footer-container { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(250px, 1fr)); 
    gap: 40px; 
}

/* Col 1 & 2 Adjustments */
.footer-col h4 { 
    font-family: var(--font-head); 
    margin-bottom: 20px; 
    color: #ffffff; 
}

.footer-links { list-style: none; padding: 0; }

.footer-links li a { 
    color: #aaaaaa; 
    text-decoration: none; 
    margin-bottom: 10px; 
    display: block; 
}

.footer-links li a:hover { color: var(--primary); }

/* Social Links */
.social-links { 
    display: flex; 
    gap: 20px; 
    margin-top: 20px; 
}

.social-links a { 
    font-size: 1.5rem; 
    color: #cccccc; 
    transition: 0.3s; 
}

.social-links a:hover { color: var(--primary); }

/* Newsletter & App */
.subscribe-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }

.subscribe-form input { 
    padding: 12px; 
    border: 1px solid #333; 
    border-radius: 4px; 
    background: #1a1a1a;
    color: #ffffff;
}

.subscribe-form button { 
    padding: 12px; 
    background: var(--primary); 
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    font-weight: bold; 
    cursor: pointer; 
}

.app-downloads { 
    display: flex; 
    gap: 10px; 
    margin-top: 15px; 
    align-items: center;
}

.app-btn { 
    height: 45px; 
    width: auto; 
    object-fit: contain; 
    display: block;
}

/* Footer Bottom */
.footer-bottom { 
    margin-top: 60px; 
    padding-top: 20px; 
    border-top: 1px solid #222; 
    text-align: center; 
    font-size: 0.9rem; 
    color: #777;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .app-downloads { justify-content: center; }
}

/* Sidebar and Sticky Logic */
.profile-page-wrapper { max-width: 1200px; margin: 0 auto; }

.main-profile-body { 
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding:20px;
    max-width: 1200px;
}

.sticky-sidebar { position: sticky; top: 120px; height: fit-content; }

.booking-card { 
    border: 1px solid #2a2a2a; 
    border-radius: 16px; 
    padding: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); 
    background: #121212;
}

.card-avatar { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; }

.share-save-btns { display: flex; gap: 15px; margin-bottom: 20px; justify-content: flex-end; }

.share-save-btns button { 
    border: none; 
    background: none; 
    cursor: pointer; 
    font-weight: 600; 
    color: #cccccc;
}

.card-details p { margin: 10px 0; color: #aaaaaa; }

.card-details i { margin-right: 10px; color: var(--primary); }

.price-hint { 
    text-align: center; 
    margin-top: 15px; 
    color: #777; 
    font-size: 0.9rem; 
}

/* Sticky Menu */
.sticky-menu {
    position: sticky; top: 80px; background: #111; z-index: 900;
    border-bottom: 1px solid #222; padding: 20px 5%; display: flex; gap: 20px;
    font-family: var(--font-head); font-size: 1.1rem;
}

.sticky-menu a { color: #cccccc; }

.sticky-menu a.active { 
    color: var(--primary); 
    border-bottom: 2px solid var(--primary); 
}

/* Fixed Button Style */
.btn-card-white {
    display: inline-block; 
    margin-top: 20px; 
    padding: 12px 30px;
    color: #ffffff; 
    text-decoration: none; 
    font-family: var(--font-head); 
    font-size: 1.1rem; 
    border-radius: 4px; 
    transition: 0.3s; 
    background: transparent; 
    border: 2px solid #ffffff !important; 
    cursor: pointer;
}

.btn-card-white:hover {
    background: var(--primary);
    border: 2px solid #ffffff !important; 
    color: #ffffff;
}

/* Capsules */
.details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.capsule {
    background: #1a1a1a;
    color: #cccccc;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #333;
    transition: 0.3s;
}

.capsule:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #222;
}

section[id]{
    scroll-margin-top:140px;
}

/* Artist Grid */
.artist-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    width: 100%;
}

/* Artist Card */
.artist-card { 
    border: 1px solid #2a2a2a; 
    border-radius: 16px; 
    overflow: hidden; 
    position: relative; 
    transition: 0.3s; 
    height: auto; 
    width: 300px; 
    background: #121212;
}

.artist-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.8); 
}

.artist-card img { width: 100%; height: 200px; object-fit: cover; }

.card-body { padding: 15px; }

.heart-icon { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: rgba(0,0,0,0.6); 
    padding: 8px; 
    border-radius: 50%; 
    cursor: pointer; 
}

/* Icon transition */
.heart-icon i {
    transition: color 0.3s ease; 
}

.heart-icon:hover i {
    color: var(--primary);
}

.cta-book { 
    width: 100%; 
    padding: 12px; 
    background: var(--primary); 
    color: #fff; 
    border: none; 
    border-radius: 8px; 
    margin-top: 10px; 
    cursor: pointer; 
}