/* Google Font */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('images/succes4.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
}

#nickname {
    font-weight: 600;
}

#ambition {
    font-style: italic;
}

#gallery img, #gallery video {
    border-radius: 10px;
}

h2 {
    font-weight: 600;
}

/* Footer */
footer {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    #about .col-md-12 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    #hero {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}
