/* Container */
.artistdetails-container {
    display: flex;
    width: 75%;
    margin: 50px auto;
    gap: 30px;
}

/* Left Panel */
.artistdetails-left-panel {
    flex: 2;
    background: #25253a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.artistdetails-image-box img {
    width: 100%;
    border-radius: 8px;
}

.artistdetails-info h2 {
    margin-top: 15px;
    font-size: 24px;
    color: #fff;
}

.artistdetails-role {
    font-size: 18px;
    color: #a3d9a5;
    /* Light Green */
}

.artistdetails-qualification {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* Artist Details Below Image */
.artistdetails-details {
    margin-top: 20px;
    text-align: left;
}

.artistdetails-details h3 {
    font-size: 22px;
    color: #32cd32;
    /* Bright Green */
    border-bottom: 2px solid #26734d;
    padding-bottom: 5px;
    margin-top: 20px;
}

.artistdetails-details p {
    font-size: 16px;
    color: #e6ffe6;
    /* Soft White */
}

/* Report Content */
.artistdetails-report a {
    color: #ff6666;
    /* Soft Red for contrast */
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Right Panel */
.artistdetails-right-panel {
    flex: 1;
    background: #25253a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pricing Section */
.artistdetails-pricing-section {
    background: linear-gradient(135deg, #1e824c, #2e9b58);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.artistdetails-pricing-section h2 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Add to Cart Button */
.artistdetails-add-cart-btn {
    background: #fff;
    color: #1e824c;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;
}

.artistdetails-add-cart-btn:hover {
    background: #32cd32;
    color: #fff;
}

/* License Section */
.artistdetails-license-section {
    width: 100%;
    text-align: left;
}

.artistdetails-license-section h4 {
    font-size: 22px;
    color: #32cd32;
    margin-bottom: 10px;
}

.artistdetails-license-section label {
    font-size: 16px;
    display: block;
    margin-top: 8px;
    cursor: pointer;
    color: #fff;
}

/* Formats & Specifications */
.artistdetails-formats-section h4,
.artistdetails-specifications h4 {
    font-size: 22px;
    color: #32cd32;
    margin-top: 25px;
    border-bottom: 2px solid #26734d;
    padding-bottom: 10px;
    width: 100%;
}

.artistdetails-formats-section ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.artistdetails-formats-section ul li {
    font-size: 16px;
    margin-top: 8px;
    color: #fff;
}

.artistdetails-specifications p {
    font-size: 16px;
    margin: 10px 0;
    color: #e6ffe6;
}

/* Buy Now Section */
.artistdetails-buy-now-section {
    text-align: center;
    margin-top: 40px;
}

.artistdetails-buy-now-btn {
    background: linear-gradient(45deg, #1e824c, #2e9b58);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.artistdetails-buy-now-btn:hover {
    background: linear-gradient(45deg, #2e9b58, #1e824c);
    transform: scale(1.05);
    box-shadow: 0px 7px 18px rgba(0, 0, 0, 0.4);
}


/* Responsive Design for Artist Details Page */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .artistdetails-container {
        width: 75%;
        gap: 30px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .artistdetails-container {
        width: 85%;
        gap: 25px;
    }

    .artistdetails-info h2 {
        font-size: 22px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .artistdetails-container {
        width: 90%;
        flex-direction: column;
        /* Stack panels */
        gap: 20px;
    }

    .artistdetails-left-panel,
    .artistdetails-right-panel {
        flex: 1;
        /* Both panels take full width */
        padding: 15px;
    }

    .artistdetails-info h2 {
        font-size: 20px;
    }

    .artistdetails-role {
        font-size: 16px;
    }

    .artistdetails-qualification {
        font-size: 14px;
    }

    .artistdetails-details h3 {
        font-size: 18px;
    }

    .artistdetails-details p {
        font-size: 14px;
    }

    .artistdetails-pricing-section h2 {
        font-size: 22px;
    }

    .artistdetails-add-cart-btn {
        font-size: 14px;
    }

    .artistdetails-license-section h4,
    .artistdetails-formats-section h4,
    .artistdetails-specifications h4 {
        font-size: 18px;
    }

    .artistdetails-license-section label,
    .artistdetails-formats-section ul li,
    .artistdetails-specifications p {
        font-size: 14px;
    }

    .artistdetails-buy-now-btn {
        font-size: 16px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .artistdetails-container {
        width: 95%;
        flex-direction: column;
        /* Stack panels */
        gap: 15px;
    }

    .artistdetails-left-panel,
    .artistdetails-right-panel {
        flex: 1;
        /* Both panels take full width */
        padding: 10px;
    }

    .artistdetails-info h2 {
        font-size: 18px;
    }

    .artistdetails-role {
        font-size: 14px;
    }

    .artistdetails-qualification {
        font-size: 12px;
    }

    .artistdetails-details h3 {
        font-size: 16px;
    }

    .artistdetails-details p {
        font-size: 12px;
    }

    .artistdetails-pricing-section h2 {
        font-size: 20px;
    }

    .artistdetails-add-cart-btn {
        font-size: 12px;
    }

    .artistdetails-license-section h4,
    .artistdetails-formats-section h4,
    .artistdetails-specifications h4 {
        font-size: 16px;
    }

    .artistdetails-license-section label,
    .artistdetails-formats-section ul li,
    .artistdetails-specifications p {
        font-size: 12px;
    }

    .artistdetails-buy-now-btn {
        font-size: 14px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .artistdetails-container {
        width: 98%;
        flex-direction: column;
        /* Stack panels */
        gap: 10px;
    }

    .artistdetails-left-panel,
    .artistdetails-right-panel {
        flex: 1;
        /* Both panels take full width */
        padding: 5px;
    }

    .artistdetails-info h2 {
        font-size: 16px;
    }

    .artistdetails-role {
        font-size: 12px;
    }

    .artistdetails-qualification {
        font-size: 10px;
    }

    .artistdetails-details h3 {
        font-size: 14px;
    }

    .artistdetails-details p {
        font-size: 10px;
    }

    .artistdetails-pricing-section h2 {
        font-size: 18px;
    }

    .artistdetails-add-cart-btn {
        font-size: 10px;
        padding: 8px 16px;
        /* Smaller padding */
    }

    .artistdetails-license-section h4,
    .artistdetails-formats-section h4,
    .artistdetails-specifications h4 {
        font-size: 14px;
    }

    .artistdetails-license-section label,
    .artistdetails-formats-section ul li,
    .artistdetails-specifications p {
        font-size: 10px;
    }

    .artistdetails-buy-now-btn {
        font-size: 12px;
        padding: 10px 20px;
        /* Smaller padding */
    }
}