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

:root {
    --primary-color: #ffffff;
    --bg-color: #000000;
    --accent-color: #ff5500;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    letter-spacing: 3px;
}

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

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--primary-color);
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

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

/* Buttons */
.cta-button {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

/* Section Styling */
section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto;
    margin-top: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-color);
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.3);
}

.carousel-item {
    display: none;
    position: relative;
    width: 100%;
}

.carousel-item.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.carousel-btn {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--accent-color);
    width: 16px;
    height: 16px;
}

.indicator:hover {
    border-color: var(--accent-color);
}

/* Music Section */
.music-section {
    background-color: var(--dark-gray);
    max-width: 1200px;
    margin: 0 auto;
}

.music-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.music-carousel {
    flex: 1;
    overflow: hidden;
    display: flex;
    gap: 1rem;
}

.music-card {
    min-width: 100%;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.2);
    transition: transform 0.5s ease;
}

.music-card.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.music-player {
    width: 100%;
}

.music-player iframe {
    width: 100%;
    border-radius: 5px;
}

/* About Section */
.about-section {
    background-color: var(--dark-gray);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 5px;
    border-top: 4px solid var(--accent-color);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-color);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    background-color: var(--dark-gray);
    color: var(--primary-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

/* Footer */
.footer {
    background-color: var(--dark-gray);
    text-align: center;
    padding: 2rem;
    border-top: 2px solid var(--accent-color);
}

.footer p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .carousel-item img {
        height: 300px;
    }

    .carousel-container {
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .music-carousel-container {
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 85, 0, 0.2);
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .hero {
        margin-top: 50px;
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .carousel-item img {
        height: 250px;
    }

    .carousel-container,
    .music-carousel-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .social-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    section {
        padding: 2rem 1rem;
    }
}

/* Smooth scrolling for all elements */
a {
    transition: all 0.3s ease;
}

/* Flat Design - No shadows on small screens */
@media (max-width: 768px) {
    .carousel,
    .music-card {
        box-shadow: none;
        border: 1px solid var(--light-gray);
    }
}
