/* Responsive CSS - Combines Desktop and Mobile Styles */

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo i {
    color: #fff39a;
    font-size: 1.5rem;
}


.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.mobile-menu-toggle {
    display: none;
}

.nav-image {
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px 0 100px 0;
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Desktop Layout */
.hero-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Hero Image */
.hero-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Music Graphics */
.music-graphics {
    position: absolute;
    top: -50px;
    left: -50px;
    z-index: -1;
}

.guitar-outline {
    width: 200px;
    height: 300px;
    border: 3px solid #fff39a;
    border-radius: 50px 50px 0 0;
    position: relative;
    opacity: 0.3;
}

.guitar-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid #fff39a;
    border-radius: 50px 50px 0 0;
}

.music-notes {
    position: absolute;
    top: 100px;
    left: 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.music-notes i {
    color: #fff39a;
    font-size: 2rem;
    opacity: 0.6;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Right Side - Content */
.hero-right {
    padding-left: 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line1 {
    display: block;
    color: #FFFFFF;
}

.title-line2 {
    display: block;
}

.music-text {
    color: #fff39a;
    font-weight: 800;
}

.world-text {
    color: #FFFFFF;
    font-weight: 800;
}

.hero-date {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    color: #CCCCCC;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

/* Contact Section in Hero */
.contact-section h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    gap: 10px;
    max-width: 350px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    background-color: #333333;
    border: 2px solid #555555;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #fff39a;
}

.email-input::placeholder {
    color: #999999;
}

.contact-btn {
    background-color: #fff39a;
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #b8a500;
}

.contact-btn i {
    color: #1A1A1A;
    font-size: 1.2rem;
}

/* Mobile Layout - Hidden by default */
.hero-mobile {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1A1A1A;
    z-index: 1000;
    padding: 15px 20px 0;
    left: 0;
    display: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.account-icons {
    display: flex;
    gap: 15px;
}

.account-icons i {
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.account-icons i:hover {
    color: #fff39a;
}

.header-line {
    height: 1px;
    background-color: #333333;
    width: 100%;
}

/* Mobile Main Title */
.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    margin-top: 80px;
}

.festival-text {
    display: block;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.music-world-text {
    display: block;
}

/* Mobile Hero Image */
.hero-image-container-mobile {
    margin: 30px 0;
    position: relative;
}

.hero-image-mobile {
    width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-mobile:hover {
    transform: scale(1.05);
}

/* Mobile Event Details */
.event-details {
    margin-bottom: 30px;
}

.event-date {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.event-description {
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

/* Mobile Artist Section */
.artist-section {
    margin-bottom: 40px;
    text-align: left;
}

.artist-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.artist-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.artist-item {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #fff39a;
}

.artist-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.artist-item p {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Mobile Call to Action */
.cta-section {
    text-align: center;
}

.book-ticket-btn {
    background-color: #333333;
    color: #FFFFFF;
    border: 2px solid #fff39a;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 15px;
    min-width: 200px;
    justify-content: center;
}

.book-ticket-btn:hover {
    background-color: #fff39a;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.book-ticket-btn i {
    color: #fff39a;
    transition: color 0.3s ease;
}

.book-ticket-btn:hover i {
    color: #1A1A1A;
}

.website-url {
    color: #CCCCCC;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Mobile Background Graphics */
.background-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.lightning-bolt {
    position: absolute;
    color: #fff39a;
    font-size: 2rem;
    opacity: 0.6;
}

.lightning-1 {
    top: 20%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
}

.lightning-2 {
    bottom: 30%;
    right: 15%;
    animation: float 3s ease-in-out infinite 1.5s;
}

.music-note {
    position: absolute;
    top: 60%;
    right: 5%;
    color: #fff39a;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

.tambourine-outline {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 60px;
    height: 60px;
    border: 3px solid #fff39a;
    border-radius: 50%;
    opacity: 0.3;
}

.tambourine-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid #fff39a;
    border-radius: 50%;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #222222;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff39a;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #333333;
    border-radius: 15px;
    border: 2px solid #fff39a;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff39a;
    margin-bottom: 10px;
}

.stat p {
    color: #CCCCCC;
    font-weight: 500;
}

/* Music Section */
.music {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.music h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff39a;
}

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

.music-item {
    background-color: #333333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.music-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #fff39a;
}

.music-cover {
    width: 200px;
    height: 200px;
    background-color: #555555;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.music-cover i {
    font-size: 3rem;
    color: #fff39a;
    transition: transform 0.3s ease;
}

.music-item:hover .music-cover i {
    transform: scale(1.2);
}

.music-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.music-item p {
    color: #CCCCCC;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #222222;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff39a;
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #CCCCCC;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: #fff39a;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: #fff39a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: #b8a500;
}

.social-link i {
    color: #1A1A1A;
    font-size: 1.5rem;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-main input,
.contact-form-main textarea {
    padding: 15px 20px;
    background-color: #333333;
    border: 2px solid #555555;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form-main input:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: #fff39a;
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    color: #999999;
}

.submit-btn {
    background-color: #fff39a;
    color: #1A1A1A;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #b8a500;
    transform: translateY(-2px);
}


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

.footer p {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop layout, show mobile */
    .hero-desktop {
        display: none;
    }
    
    .hero-mobile {
        display: flex;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: block;
    }
    
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Adjust bottom navigation for mobile */
    .bottom-nav {
        padding: 10px 0;
    }
    
    .nav-image {
        height: 50px;
    }
    
    /* Adjust about section for mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    /* Adjust contact section for mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Adjust music grid for mobile */
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust hero title for mobile */
    .main-title {
        font-size: 2rem;
        margin-top: 100px; /* Account for fixed mobile header */
    }
    
    /* Adjust hero image for mobile */
    .hero-image-mobile {
        width: 250px;
    }
    
    /* Adjust section titles for mobile */
    .about h2,
    .music h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    /* Adjust date options for mobile */
    .date-options {
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
    }
    
    .date-option {
        min-width: 150px;
        flex-shrink: 0;
    }
    
    /* Hide music graphics on mobile */
    .music-graphics {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .hero-image-mobile {
        width: 220px;
    }
    
    .about h2,
    .music h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .book-ticket-btn {
        flex-direction: column;
        gap: 5px;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #fff39a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8a500;
}

/* Loading animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}
