/* ===================================
   DJ TAUBA WEBSITE - JAMES HYPE INSPIRED
   Clean, Modern, Minimal Design
   =================================== */

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

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

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #000000;
}

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

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

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

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

.social-icons a {
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.6;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* You can add a background image here later */
    /* background-image: url('your-image.jpg'); */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s;
}

.hero-button:hover {
    background-color: #000000;
    color: #ffffff;
    outline: 2px solid #ffffff;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333333;
    font-weight: 300;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 120px 0;
    background-color: #f8f8f8;
}

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

.service-item {
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    font-weight: 300;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.contact-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: #666666;
    font-weight: 300;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

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

.contact-form button {
    padding: 18px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.contact-form button:hover {
    background-color: #333333;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-button {
        padding: 15px 35px;
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text p,
    .service-item p {
        font-size: 14px;
    }
}

/* ===================================
   SMOOTH SCROLLING
   =================================== */

html {
    scroll-behavior: smooth;
}
