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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 2px;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #87ceeb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Animated Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
}

.cloud-1 {
    background-image: url('assets/cloud1.png');
    width: clamp(1000px, 70vw, 2500px);
    height: clamp(500px, 35vw, 1250px);
    top: 0%;
    left: -25%;
    animation: float-1 25s ease-in-out infinite;
    opacity: 0.9;
    z-index: 1;
}

.cloud-2 {
    background-image: url('assets/cloud2.png');
    width: clamp(900px, 65vw, 2200px);
    height: clamp(450px, 32.5vw, 1100px);
    top: 20%;
    right: -30%;
    animation: float-2 30s ease-in-out infinite reverse;
    opacity: 0.7;
    z-index: 2;
}

.cloud-3 {
    background-image: url('assets/cloud3.png');
    width: clamp(1200px, 75vw, 2800px);
    height: clamp(600px, 37.5vw, 1400px);
    top: 45%;
    left: 0%;
    animation: float-3 20s ease-in-out infinite;
    opacity: 0.8;
    z-index: 1;
}

.cloud-4 {
    background-image: url('assets/cloud1.png');
    width: clamp(600px, 45vw, 1500px);
    height: clamp(300px, 22.5vw, 750px);
    top: 35%;
    left: 50%;
    animation: float-1 35s ease-in-out infinite;
    animation-delay: -10s;
}

.cloud-5 {
    background-image: url('assets/cloud2.png');
    width: clamp(650px, 50vw, 1600px);
    height: clamp(325px, 25vw, 800px);
    top: 15%;
    right: 30%;
    animation: float-2 28s ease-in-out infinite reverse;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 0.9; /* Tighten line spacing */
}

.hero-details {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-date {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-venue,
.hero-price {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3c72;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.9;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Styles */
.lineup,
.about {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(135, 206, 235, 0.1) 0%, rgba(30, 60, 114, 0.05) 100%);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3c72;
    text-transform: uppercase;
}

/* Lineup Grid */
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dj-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dj-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
    position: relative;
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.dj-card:hover .dj-image img {
    filter: grayscale(0%);
}

.dj-name {
    font-size: 1.5rem;
    color: #1e3c72;
    margin: 0;
    text-transform: uppercase;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social a {
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-details {
        padding: 1rem;
    }
    
    .btn {
        min-width: 200px;
        padding: 0.8rem 1.5rem;
    }
    
    .lineup,
    .about {
        padding: 3rem 0;
    }
    
    .lineup-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .dj-image {
        width: 120px;
        height: 120px;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        letter-spacing: 2px;
    }
    
    .btn {
        min-width: 180px;
        font-size: 0.9rem;
    }
    
    .lineup-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(20px); }
    50% { transform: translateY(-8px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(15px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-25px) translateX(-15px); }
    66% { transform: translateY(-12px) translateX(8px); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-18px) translateX(-12px); }
}