
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('images/music-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #111827;
}

.header-actions button {
    padding: 10px 20px;
    background-color: #ef4444;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.header-actions button:hover {
    background-color: #dc2626;
}

/* Hero Section */
.hero {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 100px 20px;
    width: 100%;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
}

.shop-now-btn {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.shop-now-btn:hover {
    background-color: #dc2626;
}

/* Main Content Wrappers */
.main-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 40px auto;
    max-width: 1000px;
    padding: 40px;
    border-radius: 8px;
}

.music-section, .features-section {
    margin-top: 30px;
}

.music-section h2, .features-section h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 32px;
    color: #111827;
    font-weight: 800;
}

.music-section h2::after, .features-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ef4444; /* red line from image */
    margin-top: 10px;
    border-radius: 2px;
}

/* Plans Options */
.gift-card {
    padding: 25px 40px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
}

.gift-card:hover {
    border-color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 40px;
}

.sub-desc {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
}



/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.card .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.card button {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.card button:hover {
    background-color: #c9302c;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    width: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    margin-top: 0;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #9ca3af;
    margin-top: -5px;
    font-weight: bold;
}

.close:hover {
    color: #4b5563;
}

#cart-items {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

#cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.cart-item-info {
    text-align: left;
}

.cart-item-name {
    color: #111827;
    font-size: 16px;
    font-weight: bold;
}

.cart-item-price {
    color: #3b82f6;
    font-size: 15px;
    margin-top: 5px;
    display: inline-block;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.cart-remove-btn:hover {
    color: #dc2626;
}

.total {
    font-weight: bold;
    font-size: 20px;
    color: #111827;
    margin: 20px 0;
    text-align: right;
}

.checkout-btn {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.checkout-btn:hover {
    background-color: #dc2626;
}

/* Locations Section */
.locations-modal-content {
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.store-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.store-images {
    display: flex;
    height: 200px;
}

.store-images img {
    flex: 1;
    object-fit: cover;
    width: 33.33%;
    border-right: 2px solid white;
}

.store-images img:last-child {
    border-right: none;
}

.store-info {
    padding: 25px;
    text-align: left;
}

.store-info h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 10px;
}

.store-address, .store-timings {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
}

.store-reviews {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.stars {
    font-size: 18px;
    color: #111827;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.review-text {
    font-style: italic;
    color: #6b7280;
    font-size: 15px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 15px 20px;
}

.faq-item summary {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
    cursor: pointer;
    outline: none;
    list-style: none; /* Hide default arrow in some browsers */
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 15px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ef4444;
}

.site-footer p {
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px;
    }

    .nav-menu {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .album-grid {
        grid-template-columns: 1fr;
    }
}
