/* CSS Document */
/* style.css */
:root {
    --primary-purple: #6B46C1;
    --deep-purple: #553C9A;
    --gold-accent: #FBBF24;
    --dark-bg: #1A1A2E;
    --light-bg: #F7FAFC;
    --text-dark: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    --success: #48BB78;
    --error: #F56565;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.logo p {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-purple);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-purple);
}

.btn-secondary {
    background: var(--gold-accent);
    color: var(--dark-bg);
}

.btn-secondary:hover {
    background: #F59E0B;
}

.btn-outline {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

/* Music Gallery */
.music-gallery {
    padding: 4rem 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.music-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.music-card:hover {
    box-shadow: var(--shadow-lg);
}

.music-card-header {
    background: var(--primary-purple);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.genre {
    background: var(--gold-accent);
    color: var(--dark-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.music-card-body {
    padding: 1.5rem;
}

.artist {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.brief-intro {
    font-style: italic;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.music-description {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.music-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.music-card-footer {
    padding: 1rem;
    background: #F7FAFC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E2E8F0;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.downloads {
    color: var(--text-light);
}

/* Travel Section */
.travel-hero {
    background: linear-gradient(135deg, var(--gold-accent), #F59E0B);
    color: var(--dark-bg);
    padding: 4rem 0;
    text-align: center;
}

.travel-services {
    padding: 4rem 0;
}

.travel-cta {
    background: var(--deep-purple);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.travel-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.travel-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Forms */
.auth-form {
    max-width: 500px;
    margin: 4rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.order-form-container {
    max-width: 800px;
    margin: 4rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.travel-inquiry-form {
    max-width: 900px;
    margin: 4rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.info-item h3 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #C6F6D5;
    color: #22543D;
    border: 1px solid #9AE6B4;
}

.alert-error {
    background: #FED7D7;
    color: #742A2A;
    border: 1px solid #FEB2B2;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: var(--white);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2D3748;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .music-actions {
        flex-direction: column;
    }
    
    .music-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-form,
    .order-form-container,
    .travel-inquiry-form {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.btn-small {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
}

.fa, .fas {
    font-family: 'Font Awesome 5 Free';
}
