/* Profile Specific Styles */

body {
    background-color: #ffffff;
    /* White background requested */
    color: #000000;
    /* High contrast black text */
    overflow-y: auto;
}

.navbar {
    border-bottom: 1px solid #ddd;
    padding: 1rem 2rem;
}

.logo {
    color: #ff385c;
    /* Airbnb pink/red brand color vibe */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

.profile-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* 60/40 Split */
    gap: 80px;
}

@media (max-width: 768px) {
    .profile-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem;
        padding: 1rem;
        width: 100% !important;
        box-sizing: border-box;
    }

    .details-column,
    .booking-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .navbar {
        padding: 15px !important;
        flex-direction: column !important;
        gap: 15px;
    }

    .navbar>div {
        justify-content: center;
        width: 100%;
        gap: 10px !important;
    }

    /* Reset any profile header quirks */
    .profile-header h1 {
        font-size: 1.6rem;
    }

    .tags {
        justify-content: center;
    }
}

/* Details Column */
.profile-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #ddd;
    /* Light grey for dark mode */
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.divider {
    border: 0;
    border-top: 1px solid #dddddd;
    margin: 2rem 0;
}

.bio-section h2,
.bands-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.band-list {
    list-style: none;
}

.band-item {
    margin-bottom: 0.5rem;
}

/* Booking Column (Sticky Sidebar) */
.booking-column {
    position: relative;
}

.booking-card {
    /* Sticks to top when scrolling removed as per user request */
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    /* Ensure card is white */
}

.card-header {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    font-family: inherit;
}

.cta-button {
    background: linear-gradient(to right, #e61e4d 0%, #e31c5f 50%, #d70466 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: filter 0.2s;
}

.cta-button:hover {
    filter: brightness(95%);
}

.card-footer {
    margin-top: 1rem;
    text-align: center;
}

.micro-text {
    font-size: 0.85rem;
    color: #717171;
}

.status-msg {
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2rem;
}

.status-msg.success {
    color: green;
}

.status-msg.error {
    color: red;
}

/* Wizard Modal */
.wizard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.wizard-content {
    background: #1e1e1e;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: white;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.step-container {
    display: none;
    /* Toggled via JS */
}

.step-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-map {
    width: 100%;
    height: 300px;
    background: #333;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #555;
    color: #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #fff;
    color: #fff;
}

.wizard-header h2 {
    margin-top: 0;
    color: #e61e4d;
}

.wiz-label {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

/* Fix Google Maps Autocomplete z-index issue in Modals */
.pac-container {
    z-index: 20000 !important;
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #444;
    font-family: sans-serif;
}

.pac-item {
    border-top: 1px solid #333;
    padding: 10px;
    cursor: pointer;
}

.pac-item:hover {
    background-color: #333;
}

.pac-item-query {
    color: #fff;
}

.pac-matched {
    font-weight: bold;
    color: #e61e4d;
}

/* MusicBrainz Search Styles */
.search-results {
    background: #2a2a2a;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 2005;
    /* Higher than modal */
    border: 1px solid #444;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    color: #ddd;
}

.result-item:hover {
    background: #444;
    color: white;
}

.result-item strong {
    color: #1DB954;
    /* Spotify Green vibe */
}

/* Selected Song Items in List */
.selected-song-item {
    background: #333;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #444;
}

.remove-song-btn {
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 5px;
}