/* 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: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; /* Ensure ul takes full width */
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #444;
    border-radius: 5px;
    display: block;
    text-align: center; /* Center the text */
}

nav ul li a:hover {
    background: #555;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}
@media (max-width: 400px) {
    nav {
        display: none;
    }
}
/* Responsive styles */
@media (max-width: 768px) {
    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;
}

    .menu-toggle {
        display: block;
    }

    nav ul.active {
        display: flex;
    }
}

.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-position: center;
    background-repeat: no-repeat;
    background-color: #333;
}

.hero-text {
    max-width: 600px;
    margin: auto;
}
.hero-text .title {
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, .keynote {
    padding: 40px 20px;
    text-align: center;
}

.about img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.craft {
    max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

.activities, .register {
    background-color: #e0f7fa;
}

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

/* Apply no list style to <li> elements within <ul> */
.activity ul li {
    list-style: none;
    padding: 0;
}

#activities ol {
    list-style-type: upper-roman; /* Sets the list style to Roman numerals */
    margin-left: 20px; /* Optional: Adjusts the left margin for better alignment */
    padding-left: 20px; /* Optional: Adds padding for better alignment */
}

#activities ol > li {
    list-style-type: none; /* Removes list style from direct li children of ol */
}

/* Apply upper-roman list style to <li> elements within <ol> */
.friday ul ol {
    list-style: upper-roman;
}

/* General <li> rule, keeping it specific to avoid overriding the above rules */
.activity ul li, .activity ol li {
    padding: 10px;
}

.keynote {
  padding: 2rem 1rem;
  text-align: center;
}
/* .keynote p {
    width: 40%;
    text-align: left;
    margin-top:0;
    margin-left: 32%;
} */

.keynote img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

iframe {
  max-width: 100%;
  border: 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;
    }
    .keynote p {
    width: 40%;
    text-align: left;
    margin-top:0;
    margin-left: 32%;
}
}
