/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #e53e3e;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(45, 90, 135, 0.6) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
}

/* Image Styles */
.rounded-image {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Hero Section - Modern Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
}

.logo-section {
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    text-align: center;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.about-image img {
    height: 400px;
}

/* Traditional Music Section */
.traditional-music {
    background-color: var(--white);
}

.traditional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.traditional-item {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.traditional-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.traditional-image {
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: 12px;
    height: 200px;
}

.traditional-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Modern Music Section */
.modern-music {
    background-color: var(--light-bg);
}

.genre-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.genre-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.genre-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.genre-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
}

.genre-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Artist Spotlights Section */
.artist-spotlights {
    background-color: var(--white);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.artist-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.artist-image {
    height: 200px;
    overflow: hidden;
}

.artist-image img {
    border-radius: 0;
}

.artist-info {
    padding: var(--spacing-md);
}

.artist-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Cultural Insights Section */
.cultural-insights {
    background-color: var(--light-bg);
}

.insights-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.insight-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.insight-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.insight-image {
    height: 200px;
    margin-top: var(--spacing-md);
    overflow: hidden;
    border-radius: 12px;
}

/* Music History Section */
.music-history {
    background-color: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-period {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-align: right;
    padding-top: var(--spacing-xs);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* Products Section */
.products {
    background-color: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    border-radius: 0;
}

.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: var(--spacing-sm) 0;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info {
    padding: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: var(--spacing-sm);
    margin-top: 4px;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-color);
}

.contact-form {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 135, 0.1);
}

.submit-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-info {
    opacity: 0.9;
}

.footer-info p {
    margin-bottom: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
        min-height: 80vh;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: var(--spacing-md);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .traditional-grid {
        grid-template-columns: 1fr;
    }
    
    .genre-list {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: left;
    }
    
    .timeline-period {
        text-align: left;
        font-size: 0.8rem;
        color: var(--secondary-color);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
        min-height: 70vh;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: var(--spacing-sm);
    }
    
    .traditional-item,
    .genre-item,
    .artist-card,
    .insight-item,
    .product-card {
        margin-bottom: var(--spacing-md);
    }
    
    .contact-form,
    .contact-info {
        padding: var(--spacing-md);
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
    }
    
    .genre-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
}

/* Loading and Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-background,
    .cookie-banner,
    .cookie-modal {
        display: none !important;
    }
    
    .hero {
        background: var(--white) !important;
        color: var(--text-color) !important;
        min-height: auto !important;
    }
    
    .brand-name,
    .tagline,
    .hero-description {
        color: var(--text-color) !important;
        text-shadow: none !important;
    }
}