* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: sticky;
    top: 0;
    background-color: #181818;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    font-size: 2rem;
    color: #bb86fc;
    transition: color 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    font-size: 1rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #bb86fc;
}

.hero {
    background: linear-gradient(135deg, #1f1f1f 0%, #212121 50%, #333333 100%);
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 20px;
    background-size: cover;
    background-attachment: fixed;
}

.hero-content {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 80px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    min-height: 40px;
    font-weight: 500;
}

.hero .btn {
    padding: 18px 40px;
    background-color: #bb86fc;
    color: #fff;
    border-radius: 30px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background-color: #3700b3;
    transform: scale(1.05);
}

.content {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 40px;
}

.contact {
    background-color: #1f1f1f;
    padding: 60px 20px;
    border-radius: 10px;
}

.contact h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact .btn {
    background-color: #3700b3;
    padding: 15px 30px;
    color: white;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.contact .btn:hover {
    background-color: #bb86fc;
}

.footer {
    background-color: #181818;
    color: #bbb;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
}

[data-aos="fade-in"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos] {
    transition: opacity 1s ease, transform 1s ease;
}

body[data-theme='light'] {
    background-color: #f0f0f0;
    color: #333;
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-content {
        width: 90%;
        padding: 30px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .content h3 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .contact h3 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }
}
/* i added so much i cant remember what im not using anymore so oh well */ 
