/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-color: #4caf50;
    color: #fff;
}

header .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: auto;
}

header .logo img {
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-image: url('./assets/images/single-adults-at-conference.webp');
    background-size: cover;
    background-position: center;
    color: rgb(59, 159, 25);
    text-align: center;
    padding: 180px 20px;
    background-repeat: no-repeat;
    background-color: #333;
}

.hero-text {
    max-width: 600px;
    margin: auto;
}
.hero-text p {
background-color: rgb(0, 0, 0, .7);
border-radius: 5px;
}

.hero-text h1 {
    font-size: 32px;
}

.hero-text p {
    font-size: 18px;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.about, .activities, .register {
    padding: 40px 20px;
    text-align: center;
}

.activities {
    background-color: #e0f7fa;
}

.activities .activity {
    margin: 20px 0;
}

form {
    max-width: 100%;
    margin: auto;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

@media (min-width: 600px) {
    header {
        flex-direction: row;
    }
    .hero-text h1 {
        font-size: 48px;
    }
    .hero-text p {
        font-size: 24px;
    }
}

@media (min-width: 900px) {
    form {
        max-width: 400px;
    }
}
