/* --- UNIVERSAL & BACKGROUND STYLES --- */
body {
    background: radial-gradient(circle at center, #8f121d 0%, #1a0002 50%, #000000 100%);
    background-attachment: fixed;
    position: relative;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75vw;
    height: 75vh;
    background-image: url('images/Untitled_Artwork.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 0;
}

/* --- SITE HEADER & SIDEBAR NAVIGATION --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(45, 3, 3, 0.85);
    backdrop-filter: blur(5px);
    border: none;
    position: relative;
    z-index: 1;
}

.shop-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    margin: 0;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.side-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #1a1a1a;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    transition: left 0.3s ease;
    z-index: 99;
    padding-top: 80px;
    box-sizing: border-box;
    border-right: 1px solid #333;
}

.side-nav.open {
    left: 0;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav ul li {
    border-bottom: 1px solid #333;
}

.side-nav ul li a {
    display: block;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: background 0.2s;
    position: relative;
}

.side-nav ul li a:hover {
    background-color: #8f121d;
}

.side-nav ul li a.active::before {
    content: '✦';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8f121d;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: arrowPulse 2s infinite ease-in-out;
}

.side-nav ul li a.active {
    padding-left: 35px;
}

@keyframes arrowPulse {
    0% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
    100% { opacity: 0.5; transform: translateY(-50%) scale(0.9); }
}

/* --- GENERAL LAYOUT & FRAMES --- */
.gallery-frame, footer, main {
    position: relative;
    z-index: 1;
}

.gallery-frame {
    background-color: transparent;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #888;
    font-size: 0.9rem;
    background: transparent;
    border-top: none;
}

/* --- BUTTONS --- */
.button {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
    border-radius: 30px;
}

.button:hover {
    background-color: #ffffff;
    color: #8f121d;
    transform: scale(1.05);
}

.social-btn {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    background-color: rgba(30, 30, 30, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #8f121d;
    border-color: #8f121d;
    transform: translateY(-3px);
}

.mobile-booking-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-booking-btn {
        display: inline-block;
    }
}

/* --- HOME HERO & ARTIST CARDS --- */
#hero {
    text-align: center;
    padding: 20px 0 40px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 25px;
}

.hero-image-frame {
    width: 100%;
    max-width: 850px;
    background-color: rgba(34, 34, 34, 0.85);
    padding: 20px;
    border: 2px solid #444;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
    margin: 0 auto 30px auto;
    backdrop-filter: blur(5px);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.gallery-hero {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: 3px;
    margin: 0;
}

.gallery-hero p {
    color: #b0b0b0;
    letter-spacing: 1px;
    margin-top: 5px;
}

.artist-interactive-card {
    position: relative;
    display: block;
    text-decoration: none;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    transition: transform 0.3s ease;
}

.artist-interactive-card:hover {
    transform: translateY(-5px);
}

.artist-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    opacity: 0.75;
    filter: grayscale(20%);
    pointer-events: none;
    z-index: 1;
}

.artist-bg-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
}

.artist-fg-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.artist-text-info {
    background-color: rgba(30, 30, 30, 0.4);
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

.artist-text-info h2 {
    margin: 0;
    font-size: 4.5rem;
    color: #ffffff;
    letter-spacing: 8px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    line-height: 1;
}

@media (max-width: 768px) {
    .artist-interactive-card {
        height: 180px;
    }
    .artist-text-info h2 {
        font-size: 3rem;
        letter-spacing: 6px;
    }
}

/* --- REVIEWS SECTION --- */
.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.author-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.star-rating {
    color: #f1c40f;
}

.review-body {
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ddd;
    flex-grow: 1;
}

.review-date {
    font-size: 0.75rem;
    color: #777;
    margin-top: 15px;
    text-transform: uppercase;
}

/* --- ARTIST PROFILE PAGES & PORTFOLIO GRID --- */
.artist-header {
    text-align: center;
    padding: 50px 20px 20px 20px;
}

.artist-header h1 {
    font-size: 4.5rem;
    letter-spacing: 5px;
    margin: 0;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

.artist-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px 0;
    margin-bottom: 20px;
}

.artist-portfolio-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.artist-portfolio-grid img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .artist-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
}

.artist-bio-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    background-color: rgba(10, 0, 2, 0.82);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    margin: 40px 0;
}

.artist-bio-img {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center; /* Shifts focus to the top so heads/faces aren't cut off */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.artist-bio-text {
    flex: 2;
    min-width: 280px;
}

.artist-bio-text h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.artist-bio-text p {
    line-height: 1.8;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

.artist-links {
    text-align: center;
    padding: 20px 0 60px 0;
}

.artist-links h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.link-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-family: "Bebas Neue", sans-serif;
    cursor: pointer;
}

/* --- AFTERCARE & FAQS CONTENT BOXES --- */
.aftercare-content-box, .faqs-content-box {
    max-width: 850px;
    margin: 0 auto;
    background-color: rgba(10, 0, 2, 0.82);
    padding: 45px 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.aftercare-content-box p, .faqs-content-box p {
    line-height: 1.9;
    color: #eaeaea;
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.faqs-content-box h3 {
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.faqs-content-box h3:first-of-type {
    margin-top: 0;
}

a[href^="tel:"],
.contact-info a,
.contact-info p {
    color: inherit;
    text-decoration: none;
}

/* --- BOOKING FORM STYLES --- */
.booking-form-container {
    max-width: 600px;
    margin: 40px auto;
    background-color: rgba(10, 0, 2, 0.85);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    color: #fff;
}

.booking-form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

/* --- FIXED AVAILABILITY CHART STYLES --- */
.availability-chart {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-checkbox {
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 12px 5px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column; /* Forces the box/checkbox on top and the day label underneath */
    align-items: center;    /* Centers them horizontally */
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
}

.day-checkbox input[type="checkbox"] {
    margin: 0;
    accent-color: #8f121d;
    cursor: pointer;
}

.day-checkbox span {
    display: block;
    line-height: 1;
}

@media (max-width: 768px) {
    .availability-chart {
        grid-template-columns: repeat(4, 1fr);
    }
}

.file-upload-box {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    background-color: rgba(30, 30, 30, 0.4);
    position: relative;
    cursor: pointer;
}

.file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-box p {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    background-color: #8f121d;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    padding: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #a81622;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .availability-chart {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* --- BOOKING FORM TIME SELECTION STYLES --- */
.time-selection-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.time-input-group {
    flex: 1;
}

.time-input-group label {
    font-size: 0.85rem !important;
    color: #aaa !important;
    margin-bottom: 5px !important;
}

.booking-form-container .form-group input[type="time"] {
    width: 100%;
    padding: 10px 12px;
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* Fix for dark background color schemes on native browser time pickers */
.booking-form-container .form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.time-notice {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .time-selection-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}
/* --- BOOKING FORM TEXTAREA STYLES --- */
.booking-form-container .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    resize: vertical;
}

.booking-form-container .form-group textarea:focus {
    outline: none;
    border-color: #8f121d;
    background-color: rgba(30, 30, 30, 0.85);
}
/* --- BOOKING FORM CHECKBOX STYLES --- */
.booking-form-container .checkbox-group {
    margin-top: 15px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem !important;
    color: #ccc !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #8f121d;
    cursor: pointer;
    flex-shrink: 0;
}
/* --- BOOKING PAGE ARTIST HEADER --- */
.booking-form-container .booking-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #b0b0b0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 5px 0;
}

.booking-form-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3px;
}
/* --- DUAL RANGE BUDGET SLIDER STYLES --- */
.dual-range-container {
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 20px 15px 15px 15px;
    box-sizing: border-box;
}

.range-slider {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin-bottom: 20px;
}

.range-slider input[type="range"] {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

/* Custom Thumb styling for Webkit browsers */
.range-slider input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #8f121d;
    border: 2px solid #fff;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Custom Thumb styling for Firefox */
.range-slider input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #8f121d;
    border: 2px solid #fff;
    pointer-events: auto;
    cursor: pointer;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
    font-family: "Montserrat", sans-serif;
}

.range-values strong {
    color: #fff;
}