/* Reset and General Styles */{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
}
main {
    padding-top: 80px; /* Adjust based on nav height */
}

/* Navigation */
header {
    width: 100%;
    background-color: #000; /* Match nav background */
}

nav {
    max-width: 1200px; /* Constrain width to keep links visible */
    margin: 0 auto; /* Center nav */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4d4d;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a.active,
nav ul li a:hover {
    color: #ff4d4d;
}/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 2rem 100px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('dj-bg.jpg');
    background-size: cover;
    background-position: center;
}.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.button-container {
    text-align: center;
    width: 100%;
}
.cta-button {
    background-color: #ff4d4d;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}.button-wrapper {
    text-align: center;
    margin: 1rem 0;
    display: block;
}.cta-button:hover {
    background-color: #e60000;
}/* About, Services, Booking, Contact Sections */
.about, .services, .booking, .contact {
    padding: 4rem 2rem;
    text-align: center;
}
.contact a {
    color: #ccc !important;
    text-decoration: none;
}
.contact a:hover {
    color: #fff; /* White on hover */
    text-decoration: underline;
}
.about h2, .services h1, .booking h1, .contact h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff4d4d;
}.service-item {
    margin: 2rem auto;
    max-width: 600px;
}.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}.dj-intelligence {
    margin: 2rem auto;
    max-width: 800px;
}/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}footer a {
    color: #ff4d4d;
    text-decoration: none;
}footer a:hover {
    text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-direction: row; /* Logo and links side by side */
        justify-content: space-between; /* Logo left, links right */
        align-items: flex-start; /* Align to top */
        padding: 0.5rem 1rem; /* Compact padding */
        max-width: 100%; /* Full width for mobile */
        background-color: #000;
    }
    .logo {
        font-size: 1.2rem; /* Smaller logo */
        line-height: 1.2; /* Reduce vertical space */
    }
    nav ul {
        display: flex;
        flex-direction: column; /* Vertical links */
        gap: 0.3rem; /* Tight spacing */
        align-items: flex-end; /* Align right */
        margin: 0;
        padding: 0;
    }
    nav ul li a {
        font-size: 0.9rem; /* Smaller links */
        line-height: 1.2; /* Compact height */
    }
    main {
        padding-top: 80px; /* Adjusted for compact nav */
    }
    .services, .booking, .contact {
        padding: 2rem 1rem; /* Retain existing section padding */
    }
}
