@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --bg-dark: #07080A;
    --bg2-dark: #1d1f23;
    --bg-light: #ffffff;
    --text-dark: #ffffff;
    --text-light: #000000;
    --active: #16A34A;
    --actived: #159946;
    --hover-bg: #222;
    --group2-hover-bg: #222;
}

.hero {
    padding: 50px 20px;
    background: inherit;
    color: var(--text-dark);
}

.light-mode .hero, .light-mode .hero-content, .light-mode .hero-text .intro, .light-mode .title, .light-mode .hero-text p{
    color: var(--text-light);
}

.light-mode .secondary:hover {
    color: var(--text-dark);
    background: var(--text-light);
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
}

.hero-text h1 {
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
    margin: 20px 0;
}

.hero-text .intro {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
}

.hero-text .name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--active);
}

.hero-text .title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.hero-text .green {
    color: var(--active);
}

.hero-text .bold {
    font-weight: 800;
}

.hero-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .primary {
    padding: 10px 20px;
    background-color: var(--active);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.hero-buttons .primary:hover {
    background-color: var(--actived);
}


.hero-buttons .secondary {
    padding: 10px 20px;
    background-color: transparent;
    color: inherit;
    border: 1px solid #999;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.1s ease;
}

.hero-buttons .secondary:hover {
    background-color: var(--hover-bg);
    border: 1px solid var(--hover-bg);
}

.hero-buttons button i {
    margin-left: 10px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

.badge {
    display: inline-block;
    background-color: #1f1f1f;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-buttons {
        gap: 5px;
    }

    .hero-buttons .primary,
    .hero-buttons .secondary {
        width: 100%;
        margin: 0;
    }

    .hero-image img {
        height: 280px;
        width: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .secondary {
        margin-top: 10px;
    }
}