/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Global font styling for the plugin */
.biose-artist-grid-wrapper,
.biose-artist-grid-wrapper *,
.biose-admin-interface,
.biose-admin-interface *,
.biose-events-container,
.biose-events-container *,
.biose-registration-form,
.biose-registration-form *,
.biose-login-form,
.biose-login-form *,
.artist-profile-wrapper,
.artist-profile-wrapper *,
.hero-title,
.members-title,
.hero-subtitle,
.artist-name,
.artist-medium,
.filter-btn,
.search-input,
.biose-event-title,
.biose-event-description,
.biose-event-date,
.biose-event-location,
.biose-events-title,
.biose-events-label {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Ensure headings use Poppins with appropriate weights */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}


/* Body text font weights */
p, span, div, a, button, input, textarea, select {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Button specific styling */
.btn, button, input[type="submit"], input[type="button"] {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    /*font-weight: 600 !important;*/
}

/* Form input styling */
input, textarea, select {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 400 !important;
}

/* Specific plugin class overrides */
.biose-artist-grid-wrapper .hero-title {
    font-weight: 400 !important;
}

/* .biose-artist-grid-wrapper .members-title {
    font-weight: 400 !important;
} */

/* .biose-artist-grid-wrapper .artist-name {
    font-weight: 700 !important;
} */

/*.biose-artist-grid-wrapper .filter-btn {
    font-weight: 600 !important;
}*/

/*.biose-artist-grid-wrapper .search-input {
    font-weight: 500 !important;
}
*/
/* Ensure all plugin elements use Poppins */
[class*="biose-"], [class*="biose-"] * {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

body {
    background-color: #f8f9fa;
    color: #495057;
}

.biose-artist-profile-wrapper .profile-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.biose-artist-profile-wrapper .back-to-people-link {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
}

.biose-artist-profile-wrapper .back-to-people-link:hover {
    color: #0d6efd;
}

.biose-artist-profile-wrapper .card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.biose-artist-profile-wrapper .profile-header h2 {
    font-weight: 600;
}

.biose-artist-profile-wrapper .profile-tabs {
    border-bottom: 1px solid #dee2e6;
}

.biose-artist-profile-wrapper .profile-tabs .nav-item .nav-link {
    border: none;
    background-color: transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px; /* Overlap the main border */
}

.biose-artist-profile-wrapper .profile-tabs .nav-item .nav-link.active {
    color: #0d6efd;
    background-color: #e7f1ff;
    border-bottom: 3px solid #0d6efd;
}

/* Avatar Uploader in Profile Header */
.profile-avatar-wrapper {
    position: relative;
    width: 96px; /* Match image size */
    height: 96px; /* Match image size */
    flex-shrink: 0; /* Prevent flexbox from shrinking it */
}

.profile-avatar-wrapper .profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area without distortion */
}

.profile-avatar-wrapper .profile-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.profile-avatar-wrapper:hover .profile-avatar-overlay {
    opacity: 1;
}

/* Spinner for avatar upload */
.profile-avatar-wrapper.uploading .profile-avatar-overlay {
    opacity: 1; /* Keep overlay visible during upload */
}

.profile-avatar-wrapper.uploading .profile-avatar-overlay i {
    display: none; /* Hide camera icon during upload */
}

.profile-avatar-wrapper.uploading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.biose-artist-profile-wrapper .tab-content {
    background-color: #fff;
}

.biose-artist-profile-wrapper .form-label {
    font-weight: 500;
    color: #495057;
}

.biose-artist-profile-wrapper .form-control {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
}

.biose-artist-profile-wrapper .form-control:focus {
    background-color: #fff;
    border-color: #86b7fe;
    box-shadow: none;
}

/* Artist Grid Card Styles */
.artist-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px; /* Or use aspect-ratio */
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.artist-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-card-image {
    transform: scale(1.05);
}

.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.artist-card-content {
    color: #fff;
    text-align: center;
    width: 100%;
}

.artist-card-content .artist-name {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Public Artist Profile Styles */
.artist-public-profile .profile-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    margin-bottom: -80px; /* Pull content up */
}

.artist-public-profile .main-content-area {
    position: relative;
    z-index: 2;
}

.artist-public-profile .artist-intro-box {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-start;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.artist-public-profile .artist-avatar-wrapper {
    flex-shrink: 0;
    margin-right: 30px;
}

.artist-public-profile .artist-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.artist-public-profile .artist-details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.artist-public-profile .instagram-link {
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.artist-public-profile .instagram-link:hover {
    color: #E1306C; /* Instagram color */
}

.artist-public-profile .artist-statement {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1rem;
    font-style: italic;
}

.artist-public-profile .artist-mediums {
    margin-top: 1.5rem;
}

.artist-public-profile .medium-tag {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #777;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-public-profile .about-artist-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.artist-public-profile .about-artist-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.artist-public-profile .artist-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 8px;
    margin-top: 3rem;
}

.artist-public-profile .gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}

.artist-public-profile .gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
}

.artist-public-profile .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Gallery Admin Styles */
.hero-image-uploader-area {
    position: relative;
    width: 100%;
    height: 300px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    color: #6c757d;
    font-weight: 500;
}
.hero-image-uploader-area .upload-hero-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.hero-image-uploader-area .remove-hero-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Studio Image Uploader */
.studio-image-uploader-area {
    position: relative;
    width: 100%;
    height: 280px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.studio-image-uploader-area:hover {
    border-color: #ccc;
}
.studio-image-uploader-area .upload-studio-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.studio-image-uploader-area .remove-studio-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Studio Image Uploader Loading State */
.studio-image-uploader-area.uploading {
    pointer-events: none;
    opacity: 0.7;
}

.studio-image-uploader-area.uploading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 4px solid rgba(0,123,255,0.3);
    border-top-color: #EB2044;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.studio-image-uploader-area.uploading .uploader-instructions,
.studio-image-uploader-area.uploading .upload-studio-btn {
    opacity: 0.5;
}

/* Updated gallery styles with sortable functionality */
.gallery-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    min-height: 100px;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 8px;
}

.gallery-item {
    position: relative;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: grab;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item:active {
    cursor: grabbing;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-item.sortable-chosen {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 1000;
}

.gallery-item.sortable-ghost {
    opacity: 0.4;
    background: #f0f0f0;
    border: 2px dashed #ccc;
}

.gallery-item.sortable-drag {
    transform: rotate(5deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay .btn {
    margin: 0 5px;
}

/* Drag indicator */
.gallery-item::before {
    content: '⋮⋮';
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1;
    letter-spacing: -2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* BIOSE Artist Profile Styles */

/* Navigation Styles */
.back-to-people-link {
    text-decoration: none;
    font-weight: 500;
    color: #6c757d;
    transition: color 0.3s ease;
}

.back-to-people-link:hover {
    color: #EB2044;
}

.profile-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Profile Avatar Styles */
.profile-avatar-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-wrapper .profile-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.profile-avatar-wrapper:hover .profile-avatar-overlay {
    opacity: 1;
}

/* Spinner for avatar upload */
.profile-avatar-wrapper.uploading .profile-avatar-overlay {
    opacity: 1; /* Keep overlay visible during upload */
}

.profile-avatar-wrapper.uploading .profile-avatar-overlay i {
    display: none; /* Hide camera icon during upload */
}

.profile-avatar-wrapper.uploading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Frontend Artist Avatar Styles */
.artist-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    flex-shrink: 0;
}

.artist-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-avatar-wrapper[data-user-id] {
    cursor: pointer;
}

.artist-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.artist-avatar-wrapper:hover .artist-avatar-overlay {
    opacity: 1;
}

/* Spinner for frontend avatar upload */
.artist-avatar-wrapper.uploading .artist-avatar-overlay {
    opacity: 1;
}

.artist-avatar-wrapper.uploading .artist-avatar-overlay i {
    display: none;
}

.artist-avatar-wrapper.uploading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.biose-artist-profile-wrapper .tab-content {
    background-color: #fff;
}

.biose-artist-profile-wrapper .form-label {
    font-weight: 500;
    color: #495057;
}

.biose-artist-profile-wrapper .form-control {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
}

.biose-artist-profile-wrapper .form-control:focus {
    background-color: #fff;
    border-color: #86b7fe;
    box-shadow: none;
}

/* Artist Grid Card Styles */
.artist-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px; /* Or use aspect-ratio */
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.artist-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.artist-card:hover .artist-card-overlay {
    opacity: 1;
}

.artist-card-content {
    color: #fff;
    text-align: left;
}

.artist-card-content .artist-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.artist-card-content .btn {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-width: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile Banner */
.profile-banner {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-content-area {
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.artist-intro-box {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.artist-details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.artist-social-links {
    margin: 1rem 0;
}

.artist-social-links a {
    color: #666;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.artist-social-links a:hover {
    color: #EB2044;
}

.artist-public-profile .artist-statement {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1rem;
    font-style: italic;
}

.artist-public-profile .artist-mediums {
    margin-top: 1.5rem;
}

.artist-public-profile .medium-tag {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #777;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-public-profile .about-artist-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.artist-public-profile .about-artist-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.artist-public-profile .artist-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 8px;
    margin-top: 3rem;
}

.artist-public-profile .gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}

.artist-public-profile .gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
}

.artist-public-profile .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Public Gallery Grid */
.artist-gallery-grid-public {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item-public {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-public:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item-public .gallery-item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gallery-item-public .gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.gallery-item-public:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-public .gallery-item-overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-item-caption {
    margin-top: 1rem;
}

.gallery-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Artist Public Profile Enhanced Styles */
.artist-public-profile .studio-image-section {
    margin: 2rem 0;
}

.artist-public-profile .studio-image {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.artist-public-profile .artist-sidebar {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    position: sticky;
    top: 2rem;
}

.artist-public-profile .contact-info-box h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.artist-public-profile .contact-info-box p {
    margin-bottom: 0.5rem;
    color: #666;
}

.artist-public-profile .contact-info-box i {
    color: #EB2044;
}

.artist-public-profile .gallery-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-top: 3rem;
}

.artist-public-profile .gallery-item-details,
.artist-public-profile .gallery-item-size {
    font-size: 0.9rem;
    margin: 0.25rem 0;
    opacity: 0.9;
}

.artist-public-profile .artist-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 4rem;
}

.artist-public-profile .artist-footer h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.artist-public-profile .artist-social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.artist-public-profile .artist-social-links-footer a {
    color: rgba(255,255,255,0.8);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.artist-public-profile .artist-social-links-footer a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Account Tab Sidebar Styles */
.account-tab-sidebar .nav-link {
    color: #6c757d;
    border: none;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-tab-sidebar .nav-link:hover,
.account-tab-sidebar .nav-link.active {
    background-color: #EB2044;
    color: white;
}

.account-tab-sidebar .nav-link.active {
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

/* New Frontend Artist Profile Design */
.artist-public-profile-new * {
    box-sizing: border-box;
}

.artist-public-profile-new {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6 !important;
    background: #f8f9fa !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure hero section displays properly */
.artist-public-profile-new .artist-hero-section {
    /*min-height: 100vh !important;*/
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.artist-public-profile-new .studio-image-hero {
    /*height: 100% !important;*/
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
}

.artist-public-profile-new .studio-hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.artist-public-profile-new .profile-hero-content {
    /*min-height: 100vh !important;*/
    display: flex !important;
    align-items: center !important;
    /*justify-content: center !important;*/
    background: #f8f9fa !important;
    padding: 3rem !important;
}

.artist-public-profile-new .profile-hero-inner {
    text-align: center !important;
    /*max-width: 500px !important;*/
    width: 100% !important;
}

.artist-public-profile-new .artist-avatar-hero {
    position: relative !important;
    width: 175px !important;
    height: 175px !important;
    border-radius: 0% !important;
    overflow: hidden !important;
    margin: 0 0 2rem !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    display: block !important;
}
i.fas.fa-globe, i.fab.fa-instagram,i.fab.fa-facebook{
    color: #ff214f;
}

i.fas.fa-globe:hover , i.fab.fa-instagram:hover{
    color: #fff;
    border-radius: 100%;
    background-color: #ff214f;
}

.artist-public-profile-new .avatar-hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
}

.artist-public-profile-new .artist-hero-name {
    font-size: 3.5rem !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 1.5rem !important;
    margin-block-start: 0rem;
    line-height: 1.1 !important;
    text-align: left !important;
}

/* Upload states */
.artist-public-profile-new .artist-avatar-hero.uploading {
    opacity: 0.7 !important;
    pointer-events: none !important;
}

.artist-public-profile-new .artist-avatar-hero.uploading::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -15px !important;
    margin-left: -15px !important;
    border: 3px solid rgba(255,255,255,0.3) !important;
    border-top-color: #fff !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .artist-public-profile-new .artist-hero-section {
        min-height: auto !important;
    }
    
    .artist-public-profile-new .studio-image-hero {
        height: 50vh !important;
    }
    
    .artist-public-profile-new .profile-hero-content {
        min-height: auto !important;
        padding: 2rem !important;
    }
    
    .artist-public-profile-new .artist-hero-name {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .artist-public-profile-new .artist-hero-name {
        font-size: 2rem !important;
    }
}

/* Hero Section - Studio Image + Profile */
.artist-hero-section {
   /* min-height: 100vh;*/
    display: flex;
    align-items: center;
}

.studio-image-hero {
/*     height: 100vh; */
    overflow: hidden;
    position: relative;
}

.studio-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-hero-content {
/*     height: 100vh; */
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    background: #fff;
    padding: 3rem;
}

.profile-hero-inner {
    text-align: center;
    /*max-width: 500px;*/
}

.artist-avatar-hero {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.profile-hero-inner .bg-deep-pink {
    display: flex;
    background-color: #ff214f;
    height: 1px;
    margin-bottom: 18px;
    width: 40% !important;
}

.avatar-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.artist-avatar-hero:hover .avatar-hero-overlay {
    opacity: 1;
}

.artist-hero-name {
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.artist-hero-social {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 25px;
}

.artist-hero-social a {
    color: #666;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.artist-hero-social a:hover {
    color: #fff;
    border-radius: 100%;
    background-color: #ff214f;
    width: 50px;
    height: 50px;
    line-height: 48px;
}
.artist-hero-social a:hover > i {
    color: #fff;
} 
.artist-hero-statement {
    margin-bottom: 2rem;
    text-align: left;
}

.statement-hero-label {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.statement-hero-text {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.artist-hero-mediums {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    gap: 0.5rem; 
}

.medium-hero-tag::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 15px;
    height: 1px;
    content: "";
    background-color: #e83e8c;
}

.medium-hero-tag {
    position: relative;
    background: #eb2044; 
    color: #fff;
    padding: 0 1.25rem 0 1.25rem;
    /* border-radius: 20px; */
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    width: fit-content;
}

/* Professional Biography Section */
.professional-bio-hero-section {
    background: #fff;
    padding: 5rem 0;
}

.professional-bio-hero-section .container { max-width: 1170px; }

.bio-hero-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    margin-top: 0;
    text-align: left;
}

.bio-hero-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #555;
    text-align: justify;
}

/* Hero Image Section */
.hero-image-hero-section {
    /* padding: 5rem 0; */
    background: #fff;
}

.hero-image-hero-section .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.hero-image-hero-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /* text-align: center; */
    height: 85vh;
    width: 100%;
    overflow-y: hidden;
}

.hero-image-hero-display {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: none;
    /* width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); */
}



/* Footer Section */
.artist-footer-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-footer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-footer-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.footer-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.footer-hero-name {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-block-start: 0rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.footer-hero-social {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.footer-hero-social a {
    color: rgba(255,255,255,0.8);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.footer-hero-social a:hover {
    color: white;
    transform: translateY(-8px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .artist-hero-section {
        min-height: auto;
    }
    
    .studio-image-hero {
        height: 50vh;
    }
    
    .profile-hero-content {
        height: auto;
        padding: 3rem 2rem;
    }
    
    .artist-hero-name {
        font-size: 2.5rem;
    }
    
    .footer-hero-name {
        font-size: 3rem;
    }
    
    /* Tablet hero image wrapper fixes */
    .hero-image-hero-wrapper {
        height: 50vh !important;
        min-height: 250px !important;
        max-height: 400px !important;
    }
}

/* Medium mobile devices */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-image-hero-wrapper {
        height: 45vh !important;
        min-height: 220px !important;
        max-height: 350px !important;
    }
    
    .hero-image-hero-display {
        object-fit: cover !important;
        object-position: center !important;
    }
}

@media (max-width: 480px) {
    .artist-hero-name {
        font-size: 2rem;
    }
    
    .footer-hero-name {
        font-size: 2.5rem;
    }
    
    .professional-bio-hero-section,
    .hero-image-hero-section {
        padding: 3rem 0;
    }
    
    /* Mobile-specific hero image wrapper fixes */
    .hero-image-hero-wrapper {
        height: 40vh !important;
        min-height: 200px !important;
        max-height: 300px !important;
    }
    
    .hero-image-hero-display {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .hero-image-hero-wrapper {
        height: 35vh !important;
        min-height: 180px !important;
        max-height: 250px !important;
    }
    
    .hero-image-hero-display {
        object-fit: cover !important;
        object-position: center !important;
    }
}

/* Account Tab Styling */
.account-tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.account-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    min-height: 500px;
}

.account-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.account-nav-link {
    display: block;
    padding: 1.5rem 2rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.account-nav-link:hover,
.account-nav-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.account-nav-link.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
}

.account-content {
    padding: 3rem;
}

.account-section h3 {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 2rem;
}

.account-form-group {
    margin-bottom: 2rem;
}

.account-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.account-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.account-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.account-form-control:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
}

.account-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.account-info-item:last-child {
    border-bottom: none;
}

.account-info-label {
    font-weight: 600;
    color: #555;
}

.account-info-value {
    color: #333;
    font-family: 'Courier New', monospace;
}

.account-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.account-toggle-label {
    font-weight: 600;
    color: #555;
    margin: 0;
}

.account-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.account-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.account-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.account-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.account-toggle input:checked + .account-toggle-slider {
    background-color: #667eea;
}

.account-toggle input:checked + .account-toggle-slider:before {
    transform: translateX(26px);
}

.account-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.account-btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.account-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.account-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.account-select:focus {
    outline: none;
    border-color: #667eea;
}

.password-requirements {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.password-requirements ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.password-requirements li {
    margin-bottom: 0.25rem;
    color: #666;
}

.billing-history {
    margin-top: 2rem;
}

.billing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.billing-date {
    font-weight: 600;
    color: #333;
}

.billing-amount {
    font-weight: 600;
    color: #28a745;
}

.billing-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.billing-status.paid {
    background: #d4edda;
    color: #155724;
}

.billing-status.pending {
    background: #fff3cd;
    color: #856404;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

/* Responsive Account Design */
@media (max-width: 768px) {
    .account-content {
        padding: 1.5rem;
    }
    
    .account-sidebar {
        min-height: auto;
    }
    
    .account-nav-link {
        padding: 1rem;
    }
}

/* Tweak for frontend artist profile layout */
.artist-public-profile .container-fluid {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.main-profile-section {
    min-height: 60vh;
    align-items: center;
    margin-bottom: 3rem;
}

.studio-image-container {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.studio-image-main {
    max-width: 100%;
    max-height: 55vh;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.profile-info-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 2rem;
    min-height: 60vh;
}

.profile-info-content {
    width: 100%;
    max-width: 500px;
}

.professional-bio-section {
    margin-bottom: 3rem;
}

.hero-image-section {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.gallery-section {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

/* Ensure studio-image-column only has height when image is present */
.studio-image-column:empty {
    display: none;
}

/* Gallery Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 20px 30px;
    text-align: center;
    background: white;
    width: 100%;
}

.lightbox-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.lightbox-info p {
    margin: 5px 0;
    color: #666;
    font-size: 1rem;
}

.lightbox-info p:first-of-type {
    font-weight: 500;
    color: #EB2044;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-info {
        padding: 15px 20px;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4m0-1.4-1.4 1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-select.is-invalid {
    border-color: #dc3545 !important;
}

.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Loading states for forms */
.btn.loading {
    pointer-events: none;
    position: relative;
    opacity: 0.65;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
    margin-left: -0.5rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Success/Error states */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

/* Studio Image Preview Components */
.studio-preview-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.studio-preview-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.studio-footer-preview {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.studio-footer-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(1px);
}

.studio-preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.artist-footer-hero-section {
    display: none !important;
}

.menu-item-has-children:hover>ul.sub-menu.elementor-nav-menu--dropdown {
        display: block;
}

section.elementor-sticky--effects {
    position: fixed;
    width: 1905px;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 0px;
}


.artist-list-notice p {
    font-size: 18px !important;
    margin: 0;
    line-height: 1.4;
    color: #EB2044 !important;
    text-align: center;
}
    /* Sidebar Styles */
.open-studios-sidebar {
    width: 25% !important;
    background: #000 !important;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}
    .weekend-buttons {
    margin-bottom: 20px;
    display: inline-flex;
}
/* Header Section */
.sidebar-header h2 , .sidebar-filters h2 {
    color: white;
    font-size: 40px !important;
    font-weight: 400 !important;
    margin: 0 0 20px 0;
    text-transform: capitalize !important;
    letter-spacing: 1px;
    line-height: 1em;
    text-align: center;
}
.filter-group{
    justify-content: center;
    display: flex;
}
select#mediumFilter, select#areaFilter {
    text-align: center;
    width: max-content;
}
/* Studio Legend */
.studio-legend {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.legend-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.legend-icon.individual {
    background: #EB2044; /* Red for individual studios */
}

.legend-icon.shared {
    background: #FF9800; /* Orange for shared studios */
}

.legend-text {
    font-size: 14px;
    color: white;
}
a#downloadMap{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    padding: 6px 9px 6px 10px;
    width: max-content;
    justify-self: center;
    font-size: 14px;
}
a#downloadMap:hover , a#downloadPassport:hover {
    background-color: #000000;
    color: #EB2044 !important;
    border-color: #EB2044;
}
a#downloadPassport {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    width: max-content;
    justify-self: center;
    padding: 6px 30px 6px 30px;
    font-size: 14px;
}
a#downloadMap:hover i , a#downloadPassport:hover i{
    color: #EB2044 !important;
}
button.weekend-btn {
    width: auto !important;
    color: #FFFFFF !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #FFFFFF !important;
    border-radius: 0px 0px 0px 0px !important;
    padding: 6px 9px 6px 10px !important;
}
.weekend-buttons {
    justify-content: center !important;
    gap: 20px !important;
    display: flex !important;
}
button.weekend-btn:hover{
    background-color: #EB2044;
    color: #FFFFFF;
    border-color: #EB2044 !important;
}
.filter-or {
    text-align: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    font-style: italic !important;
}
.open-studios-frontend-container {
    height: auto !important;
}
.sidebar-filters
 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .open-studios-sidebar {
        width: 100% !important;
        height: auto;
    }
}
 /* iPad Air */
@media only screen and (min-width: 820px) and (max-width: 1180px) {
    .open-studios-sidebar {
        width: 100% !important;
        height: auto;
    }
    .sidebar-downloads {
        margin-top: 0px !important; 
    }
}
 
 /* iPad Mini */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .open-studios-sidebar {
        width: 100% !important;
        height: auto;
    }
}

button.btn-close:hover {
    background-color: transparent;
    border: 0;
}

button.btn-close:focus {
    background-color: transparent;
    border: 0;
}

button.btn-close {
    border: 0;
}

button#prev-month {
    border-color: #c36;
}

button#next-month {
    border-color: #c36;
}



