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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

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

main {
    margin-top: 80px;
}

section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

#bio {
    background: white;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

.bio-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#concerts {
    background: #f8f8f8;
}

.performance-category {
    margin-bottom: 3rem;
}

.performance-category h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
}

.upcoming-concerts {
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.concert-item.upcoming {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.concert-item.upcoming .concert-date {
    background: rgba(255,255,255,0.2);
    color: white;
}

.concert-item.upcoming h4 {
    color: white;
}

.concert-item.upcoming p {
    color: rgba(255,255,255,0.9);
}

.concert-item.upcoming .ticket-link {
    background: white;
    color: #d4af37;
}

.concert-item.upcoming .ticket-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.concerts-list {
    max-width: 900px;
    margin: 0 auto;
}

.concert-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.concert-item:hover {
    transform: translateY(-5px);
}

.concert-date {
    text-align: center;
    background: #d4af37;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.concert-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.concert-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.concert-details h3,
.concert-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.concert-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.ticket-link {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.ticket-link:hover {
    background: #333;
}

.info-link {
    display: inline-block;
    background: #666;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-right: 0.5rem;
    transition: background 0.3s ease;
}

.info-link:hover {
    background: #555;
}

.concert-item.upcoming .info-link {
    background: rgba(255,255,255,0.3);
    color: white;
}

.concert-item.upcoming .info-link:hover {
    background: rgba(255,255,255,0.4);
}

.no-concerts {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

#media {
    background: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.video-item h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 500;
}

.video-item p {
    margin-bottom: 1rem;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

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

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
}

.photo-gallery img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}

#blog {
    background: #f8f8f8;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-post h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.post-date {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-post p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.read-more {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d4af37;
}

.coming-soon {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d4af37;
    font-weight: 400;
}

.coming-soon p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

#contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-item {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.contact-link {
    text-decoration: none;
    display: inline-block;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    font-style: normal;
}

.email-icon {
    background: #d4af37;
    font-size: 1.1rem;
}

.linkedin-icon {
    background: #0077b5;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #b8941f;
}

.contact-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    font-size: 0.95rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .concert-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item {
        padding: 1rem;
    }
    
    .video-item h3 {
        font-size: 1.1rem;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}