:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --card-bg: #1e1e1e;
    --overlay-gradient: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(107, 102, 255, 0.2));
}

[data-theme="light"] {
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #ffffff;
    --overlay-gradient: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(107, 102, 255, 0.2));
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #121212;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 0.75rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ababab;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
    display: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: #008bdc;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('images/dj_top_main-2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-gradient);
    mix-blend-mode: hard-light;
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.hero-content h1 {
    font-size: 15rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ff5252;
}

.cta-button.dark {
    background-color: #333;
}

.cta-button.dark:hover {
    background-color: #444;
}

.secondary-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #ff6b6b;
    color: white;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.services-strap-line {
    position: relative;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.services-strap-line h2 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ababab;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.services-strap-line h2.animate-in {
    display: none;
}

.services-content {
    display: grid;
    gap: 2rem;
}

/* Remove old services-image styles */
.services-image,
.floating-image {
    display: none;
}

.service-item {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-image {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-text {
    flex: 1;
}

.service-item h2 {
    color: #ababab;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 0 2rem 5rem 2rem;
    background: #121212;
    max-width: 1200px;
    margin: 0 auto;
}

.about-item {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: #ababab;
    margin-bottom: 1rem;
}

.about-content {
    flex: 1;
    color: #ffffff;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #313131, #000000);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/dj_1.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-phone:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.phone-icon {
    font-size: 1.5rem;
    color: #11c1f4;
}

.cta .phone-number {
    font-size: 2rem;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

.cta-subtext {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b, #6b66ff);
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    color: #333;
}

.contact-details {
    margin-top: 2rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #333;
}

.contact-info h2 {
    color: #333;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #4CAF50;
    color: white;
}

.form-message.error {
    display: block;
    background-color: #f44336;
    color: white;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: #121212;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 8rem;
    }

    .about-item {
        flex-direction: column;
        gap: 1rem;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .services-strap-line {
        padding: 1rem;
        min-height: 200px;
    }

    .services-strap-line h2 {
        font-size: 2.5rem;
    }

    .equipment-image {
        height: 300px;
    }

    .service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .cta {
        padding: 4rem 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .cta-phone {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 5rem;
    }

    nav {
        flex-direction: row;
    }

    .nav-links a {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .services-strap-line h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }
} 