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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('stilian-portrait.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #000;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
    text-align: center;
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background-color: #111;
}

.featured-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.featured-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.featured-image {
    height: 200px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.featured-content {
    padding: 30px;
}

.featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.featured-content p {
    color: #aaa;
    margin-bottom: 20px;
}

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

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

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #fff;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #ccc;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-bottom {
    color: #666;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About page styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #fff;
}

.about-text p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    height: 400px;
    background-color: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements {
    padding: 80px 0;
    background-color: #111;
}

.achievements h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.achievement-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.achievement-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.achievement-item p {
    color: #aaa;
    line-height: 1.6;
}

.repertoire {
    padding: 80px 0;
}

.repertoire h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.repertoire-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.repertoire-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.repertoire-section ul {
    list-style: none;
}

.repertoire-section ul li {
    color: #aaa;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.repertoire-section ul li::before {
    content: '•';
    color: #fff;
    position: absolute;
    left: 0;
}

/* Concerts page styles */
.concerts-content {
    padding: 80px 0;
}

.concerts-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
}

.tab-button {
    padding: 15px 30px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.tab-button.active {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.tab-button:hover {
    border-color: #fff;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.concerts-grid {
    display: grid;
    gap: 30px;
}

.concert-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    align-items: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.concert-item.past {
    opacity: 0.7;
}

.concert-date {
    text-align: center;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
}

.concert-date .month {
    display: block;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}

.concert-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.concert-date .year {
    display: block;
    font-size: 14px;
    color: #ccc;
}

.concert-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.concert-details p {
    color: #aaa;
    margin-bottom: 5px;
}

.concert-details .venue {
    font-weight: 500;
    color: #ccc;
}

.concert-details .program {
    font-style: italic;
}

.concert-details .time {
    color: #fff;
    font-weight: 500;
}

.concert-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.past-label {
    color: #666;
    font-style: italic;
    padding: 12px 24px;
    background-color: #333;
    border-radius: 5px;
}

/* Contact page styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-method p {
    color: #aaa;
    margin-bottom: 5px;
}

.social-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-form-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #333;
    border: 2px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.location-section {
    padding: 80px 0;
    background-color: #111;
}

.location-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.location-info p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.location-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.location-details p {
    color: #aaa;
    line-height: 1.6;
}

.map-placeholder {
    height: 300px;
    background-color: #333;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.map-placeholder span {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 14px;
}

/* More page styles */
.more-content {
    padding: 80px 0;
}

.more-sections section {
    margin-bottom: 80px;
}

.more-sections h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.media-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.media-image {
    height: 200px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-content {
    padding: 30px;
}

.media-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.media-content p {
    color: #aaa;
    margin-bottom: 20px;
}

.media-actions {
    display: flex;
    gap: 15px;
}

.media-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.press-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
}

.press-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.press-source {
    color: #ccc;
    font-weight: 500;
    margin-bottom: 15px;
}

.press-excerpt {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.education-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.education-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
}

.education-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.education-item p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.education-item ul {
    list-style: none;
}

.education-item ul li {
    color: #aaa;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.education-item ul li::before {
    content: '•';
    color: #fff;
    position: absolute;
    left: 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.award-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.award-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.award-item p {
    color: #aaa;
    line-height: 1.6;
}

/* Active navigation link */
.nav-menu a.active {
    color: #fff;
}

.nav-menu a.active::after {
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .featured-section {
        padding: 60px 0;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .concert-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .concerts-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .media-actions {
        flex-direction: column;
    }
    
    .education-content {
        grid-template-columns: 1fr;
    }
}
