/* General Body Styling */
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--background-color, #222831);
    color: var(--text-color, #EEEEEE);
    line-height: 1.6;
}

/* Color Variables */
:root {
    --primary-color: #004d40;
    --secondary-color: #795548;
    --accent-color: #FF5722;
    --background-color: #222831;
    --text-color: #EEEEEE;
    --light-text-color: #FFFFFF;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--light-text-color);
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--background-secondary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand, .nav-link, .navbar-dark .navbar-nav .nav-link {
    color: var(--light-text-color) !important;
    font-weight: 600;
}
  

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    overflow: hidden; /* Ensure content doesn't spill */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero .container {
    z-index: 2; /* Ensure text is above overlay */
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-button {
    font-size: 1.2rem;
}

/* Featured Products Section */
.card {
    background-color: var(--card-body-background-color);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: var(--light-text-color);
}

.card-text {
    color: var(--card-body-text-color);
}

/* Forms */
.form-control {
    background-color: #393E46;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.form-control:focus {
    background-color: #393E46;
    color: var(--text-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

/* Footer */
footer {
    background-color: var(--background-secondary-color);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .card-img-top {
        height: 150px !important;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* About Page Specifics */
.profile-picture {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.social-links .btn {
    margin: 0.25rem;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.social-links .btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text-color);
}

.card-header {
    background-color: var(--primary-color) !important;
    color: var(--card-header-text-color) !important;
    font-weight: 600;
}

.card-body ul {
    list-style: none;
    padding-left: 0;
}

.card-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.card-body ul li:last-child {
    border-bottom: none;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .profile-picture {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .profile-picture {
        width: 120px;
        height: 120px;
    }
}

/* Product Page Specifics */
.product-image-container {
    background-color: #fff; /* White background for images */
    padding: 15px;
}

.product-image {
    max-height: 700px; /* Limit image height */
    object-fit: contain; /* Ensure image fits within bounds */
    width: 100%;
}

.product-details {
    background-color: var(--card-body-background-color); /* Card background color */
    border: 1px solid var(--border-color);
}

.audio-player-container audio {
    filter: invert(1) hue-rotate(180deg); /* Adjust audio player color for dark theme */
}

/* Cart Page Specifics */
.cart-items-container .card {
    background-color: #393E46;
    border: 1px solid var(--border-color);
}

.cart-items-container .card-title {
    color: var(--light-text-color);
}

.cart-items-container .card-text small {
    color: var(--text-color) !important;
}

.cart-summary {
    background-color: #393E46;
    border: 1px solid var(--border-color);
}

.cart-summary .total-price {
    color: var(--light-text-color);
}

/* Responsive adjustments for cart page */
@media (max-width: 768px) {
    .cart-items-container .card .col-md-3, 
    .cart-items-container .card .col-md-6, 
    .cart-items-container .card .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cart-items-container .card .img-fluid {
        width: 100%;
        height: 200px !important;
        object-fit: cover;
    }

    .cart-items-container .card-body {
        text-align: center;
    }

    .cart-items-container .item-actions {
        padding-bottom: 1rem;
    }
}

/* General Responsive Image Styling */
img {
    max-width: 100%;
    height: auto;
}

.product-card-img {
  height: 200px;
  object-fit: cover;
  background-color: #fff;
}


/* Main Content Padding */
main.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Form Styling (General) */
.form-label {
    font-weight: 600;
    color: var(--light-text-color);
}

.form-control {
    background-color: var(--background-color); /* Revert to general background for consistency */
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 0.3rem;
}

.form-control:focus {
    background-color: var(--background-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

/* Alerts */
.alert {
    border-radius: 0.5rem;
}

/* Footer Social Icons */
.social-icons a {
    color: var(--light-text-color);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Contact Page Specifics */
.contact-form .form-label {
    font-weight: 600;
    color: var(--light-text-color);
}

.contact-form .form-control {
    border-radius: 0.3rem;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* General Form Adjustments (apply to all forms if not already covered) */
.form-control {
    background-color: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.form-control:focus {
    background-color: var(--background-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

/* --- End Artist Page Redesign --- */

/* New Pricing Page Styles */
.pricing-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

    position: relative;
    z-index: 10;
    padding: 20px 2px;

.plans-title {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.plans-subtitle {
    color: #888;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.billing-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.toggle-container {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-option {
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #888;
    position: relative;
    z-index: 2;
}

.toggle-option.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 110px;
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.toggle-slider.annual {
    transform: translateX(100%);
}



.main-content {
    position: relative;
    z-index: 10;
}

.plans-container {
    justify-content: center;
    align-items: center;
    margin-top: 0;
    min-height: 50vh;
    padding: 20px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.plan-name {
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.plan-description {
    color: #888;
    margin-bottom: 40px;
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6b6b;
}

.price-amount {
    font-size: 3.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 5px;
}

.price-period {
    color: #888;
    font-size: 1em;
}

.plan-features {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.plan-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.select-btn {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 40px auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.guarantee {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.guarantee h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #4ecdc4;
}

.guarantee p {
    color: #888;
    font-size: 1.1em;
}


/* New Pricing Page Styles */
.pricing-container-new {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h1 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--light-text-color);
}

.pricing-header p {
    font-size: 1.2em;
    color: var(--text-color);
    opacity: 0.8;
}

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.plan-card {
    background: var(--card-body-background-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s ease;
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card.premium {
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(102, 126, 234, 0.05);
}

.plan-card.premium:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.plan-card.premium .plan-name {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-card.premium .price-amount {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-card.premium .price-currency {
    color: #667eea;
}

.plan-card.premium .select-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.plan-card.premium .select-btn:hover {
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.plan-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.3);
}

.plan-header h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-header .price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.plan-header .price span {
    font-size: 0.5em;
    color: var(--text-color);
    opacity: 0.7;
}

.save-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    display: inline-block;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.features li:last-child {
    border-bottom: none;
}

.btn-choose {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-choose:hover {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .pricing-page-container {
        padding: 0; /* Removed padding for smaller screens */
    }

    .header {
        padding: 20px 10px; /* Reduced header padding */
    }

    .plans-title {
        font-size: 2.2em; /* Smaller font size for title */
    }

    .plan-card {
        padding: 30px 20px; /* Reduced card padding */
        width: auto;
        max-width: none;
    }
}




.music-player-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #181818;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.music-player-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.video-player-container video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.music-player-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: center;
}

.music-player-info p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 1.5rem;
}

.music-player-controls audio {
    width: 100%;
    filter: invert(90%) sepia(10%) saturate(700%) hue-rotate(80deg);
}

.music-player-buy-button {
    margin-top: 1.5rem;
}
/* --- End Music Player Redesign --- */
