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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.nav-brand h1 {
    color: #f1f5f9;
    font-size: 1.8rem;
    margin: 0;
}

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

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #10b981;
}

/* Hero Section - Full Screen Image */
.hero {
    background: url('images/hero-performance.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 10;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

.nav-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Hero Name */
.hero-name {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero-name h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.1;
}

/* Hero Play Container */
.hero-play-container {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-play-container:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero-play-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.play-text {
    text-align: center;
    color: white;
}

.play-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.play-text p {
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}



/* Video Section */
.video-section {
    padding: 4rem 0;
    background: #0f172a;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #f1f5f9;
}

.bg-light {
    background-color: #1e293b;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.skills ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.skills li {
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: #f1f5f9;
    border-radius: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.music-item {
    background: #1e293b;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.music-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.music-item h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    text-align: center;
}

.soundcloud-embed {
    border-radius: 10px;
    overflow: hidden;
}

/* Education Section */
.education-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.education-item {
    background: #1e293b;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.education-item h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.education-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.education-item strong {
    color: #10b981;
    font-weight: 600;
}

/* Performances Section */
.performances-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.performance-item {
    background: #1e293b;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #334155;
    overflow: hidden;
    display: flex;
    min-height: 180px;
}

.performance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.performance-date {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #f1f5f9;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.performance-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.performance-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.25rem 0;
}

.performance-date .year {
    font-size: 0.8rem;
    opacity: 0.9;
}

.performance-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.performance-details h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.performance-venue {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.performance-time {
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.performance-location {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.performance-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.more-info-btn {
    background: #10b981;
    color: #f1f5f9;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.more-info-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-item {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.video-item h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: #f1f5f9;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10b981;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: #1e293b;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #334155;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #475569;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #0f172a;
    color: #f1f5f9;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.submit-btn {
    background: #10b981;
    color: #f1f5f9;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #059669;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #334155;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-name h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        line-height: 1.1;
    }
    
    .hero-name {
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
    
    .hero {
        background: url('images/hero-performance-mobile.jpg');
        background-size: cover;
        background-position: 20% center;
        background-attachment: scroll;
    }
    
    .hero-nav {
        top: 5.5rem;
        gap: 1.2rem;
        flex-direction: row;
        align-items: center;
    }
    
    .nav-link {
        font-size: 0.95rem;
        letter-spacing: 0.8px;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .play-text h3 {
        font-size: 1rem;
    }
    
    .play-text p {
        font-size: 0.8rem;
    }
    
    .hero-video-container {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .hero-video-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-video-content p {
        font-size: 1rem;
    }
    
    .hero-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .music-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .performances-grid {
        max-width: 100%;
    }
    
    .performance-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .performance-date {
        min-width: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .performance-date .month,
    .performance-date .day,
    .performance-date .year {
        margin: 0 0.5rem;
    }
    
    .skills ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 853px) and (max-height: 1280px) {
    .hero-name h1 {
        font-size: 2.5rem;
        letter-spacing: 1.2px;
    }
    
    .hero-name {
        top: 2.2rem;
        width: 88%;
    }
    
    .hero {
        background-position: 25% center;
    }
    
    .hero-nav {
        top: 5.8rem;
        gap: 1.8rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.7rem;
    }
}

@media (max-width: 430px) {
    .hero-name h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-name {
        top: 1.8rem;
        width: 92%;
    }
    
    .hero {
        background-position: 30% center;
    }
    
    .hero-nav {
        top: 5rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-play-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .play-text h3 {
        font-size: 0.95rem;
    }
    
    .play-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-name h1 {
        font-size: 1.8rem;
        letter-spacing: 0.8px;
    }
    
    .hero-name {
        top: 1.5rem;
        width: 95%;
    }
    
    .hero {
        background-position: 35% center;
    }
    
    .hero-nav {
        top: 4.5rem;
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .play-text h3 {
        font-size: 0.9rem;
    }
    
    .play-text p {
        font-size: 0.7rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .music-item,
    .video-item {
        padding: 1rem;
    }
}

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
