:root {
    --primary-color: #6200ee;
    --primary-dark: #3700b3;
    --primary-light: #bb86fc;
    --primary-black: #000000;
    --surface: #121212;
    --background: #ffffff;
    --on-surface: #ffffff;
    --on-background: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--on-background);
    background-color: var(--background);
}

header {
    background-color: transparent;
    padding: 1rem 0;
    position: relative;
    z-index: 3;
}

.hero {
    position: relative;
    text-align: center;
    min-height: 70vh;
    padding: 0 2rem;
    overflow: hidden;
    margin-top: -4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(98, 0, 238, 0.6), rgba(55, 0, 179, 0.5));
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) hue-rotate(240deg);
    transform: scale(1.1);
    transition: transform 15s ease;
}

.hero:hover .hero-bg img {
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--on-surface);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    color: var(--on-surface);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.section {
    min-height: 100vh;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.purpleHeader {
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 3rem;
    font-size: 2.5rem;  
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.contact-section {
    position: relative;
    min-height: 95vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 4rem 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) hue-rotate(240deg);
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    position: relative;
    text-align: center;
    min-height: 5vh;
    padding: 2rem;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(55, 0, 179, 0.5));
    z-index: 1;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) hue-rotate(240deg);
}

.footer-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 1rem;
        min-height: 100vh;
    }

    .hero {
        padding: 6rem 1rem;
        min-height: 70vh;
    }

    .contact-section {
        padding: 3rem 1rem;
        min-height: 95vh;
    }

    footer {
        min-height: 5vh;
        padding: 2rem 1rem;
    }
}