/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #00078f;
    overflow-x: hidden;
}

/* Hide sections initially */
.section.description-section,
.section.artists-section,
.section.venue-section,
.section.contact-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 7, 143, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.nav-brand {
    font-family: Arial, sans-serif;
    font-style: italic;
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    transform: translateX(-100vw);
    animation: slideInFromLeft 1.5s ease-out forwards;
    /*animation-delay: 0.8s;*/
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: normal;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section with Animated Title */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.animated-title {
    font-family: Arial, sans-serif;
    font-style: italic;
    font-size: 120px;
    font-weight: bold;
    color: white;
    animation: slideInFromRight 2s ease-out forwards;
    transform: translateX(100vw);
    text-align: center;
    line-height: 1.1;
}

/* Sections */
.section {
    min-height: 60vh;
    padding: 60px 2rem 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Description Section */
.description-section {
    background: linear-gradient(135deg, #00078f 0%, #001a8f 100%);
    margin-top: 120px;
}

.description-content {
    text-align: center;
}

.description-text {
    font-family: Arial, sans-serif;
    font-style: italic;
    font-size: 20px;
    font-weight: normal;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Artists Section */
.artists-section {
    background: linear-gradient(135deg, #00078f 0%, #001a8f 100%);
}

.artists-section h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    font-weight: bold;
}

.artist-card {
      /* Remove or comment out these lines: */
    /* background: rgba(255, 255, 255, 0.1); */
    /* padding: 3rem; */
    /* border-radius: 20px; */
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    
    /* Keep these for the hover effect: */
    transition: transform 0.3s ease/*, box-shadow 0.3s ease*/;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
}

.artist-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.artist-name {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: white;
    margin: 0;
}

/* Venue Section */
.venue-section {
    background: linear-gradient(135deg, #001a8f 0%, #002d8f 100%);
}

.venue-content h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    font-weight: bold;
}

.construction-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.construction-notice p {
    font-size: 24px;
    margin-bottom: 1rem;
}

.construction-notice p:last-child {
    font-size: 18px;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #002d8f 0%, #00408f 100%);
}

.contact-content h2 {
    font-size: 48px;
    margin-bottom: 3rem;
    font-weight: bold;
}

.contact-info {
    /*background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);*/
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-link {
    text-decoration: none;
    color: white;
}

.contact-link h3 {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: white;
    margin: 0;
    transition: opacity 0.3s ease;
}

.contact-link:hover h3 {
    opacity: 0.8;
}

.email {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: white;
    margin: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100vw);
    }
    100% {
        transform: translateX(0);
    }
}

/* Parallax Scrolling Effect */
.section {
    transform: translateZ(0);
    will-change: transform;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-brand {
        font-size: 36px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .animated-title {
        font-size: 60px;
        line-height: 1.2;
    }
    
    .hero {
        padding: 0 2rem;
    }
    
    .section {
        padding: 100px 1rem 60px;
    }
    
    .artist-image {
        width: 150px;
        height: 150px;
    }
    
    .venue-content h2,
    .contact-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .animated-title {
        font-size: 42px;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .nav-brand {
        font-size: 28px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 20px;
    }
    
    .artist-card,
    .construction-notice,
    .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 360px) {
    .animated-title {
        font-size: 36px;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
}
