/* Mara Halunga Website - Modern Artist Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --secondary-gold: #b8941f;
    --dark-bg: #0a0a0a;
    --medium-dark: #1a1a1a;
    --light-dark: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --accent-red: #8b0000;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8941f 100%);
}

body {
    font-family: 'Source Sans Pro', 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Modern Header with Fixed Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-gray);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--primary-gold);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section - Full Screen */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('assets/mara_banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg) !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: none !important;
    padding-bottom: 1rem !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    color: var(--dark-bg) !important;
    border-bottom: none !important;
}

/* Modern Section Layouts */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    margin: 8rem 0;
    position: relative;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* About Section - Split Layout */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-text p {
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

/* Music Section - Card Grid */
#music {
    text-align: center;
}

.album-card {
    background: var(--medium-dark);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.album-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.album-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.album-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.track-list {
    text-align: left;
}

.track-list ol {
    list-style: none;
    counter-reset: track-counter;
}

.track-list li {
    counter-increment: track-counter;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.track-list li::before {
    content: counter(track-counter, decimal-leading-zero);
    color: var(--primary-gold);
    font-weight: 600;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.track-list li:hover {
    color: var(--primary-gold);
    padding-left: 1rem;
}

.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stream-btn {
    padding: 1rem;
    background: var(--light-dark);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.stream-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateX(10px);
}

.album-credits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

.album-credits h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.album-credits p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.album-credits strong {
    color: var(--text-light);
}

.album-credits em {
    color: var(--text-gray);
    font-style: italic;
}

/* Performances Section - Grid */
#performances {
    text-align: center;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.performance-card {
    background: var(--medium-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
    background: var(--light-dark);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.performance-card h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.achievements {
    list-style: none;
    text-align: left;
}

.achievements li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.achievements li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.achievements li:hover {
    color: var(--text-light);
    padding-left: 2.5rem;
}

/* Booking Section - Call to Action */
.booking-section {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.booking-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.booking-section p {
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Contact Section */
#contact {
    background: var(--medium-dark);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--light-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.contact-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-card a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 2px;
}

.contact-card a:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    padding: 0.8rem;
    background: var(--dark-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateX(5px);
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 6rem;
}

footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #about {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .album-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    main {
        padding: 0 1rem;
    }
    
    section {
        margin: 4rem 0;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .album-card,
    #contact {
        padding: 2rem;
    }
    
    .booking-section {
        padding: 3rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Effects */
html {
    scroll-behavior: smooth;
}
