/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header.header {
    background: linear-gradient(
        rgba(134, 132, 132, 0.6),  /* Black overlay with 60% opacity */
        rgba(203, 200, 200, 0.6)
    ), 
    url('images/header-background.jpg') no-repeat center center; /* Background image */
    background-size: cover; /* Ensure the image covers the entire header */
    color: #fff; /* White text for contrast */
    text-align: center;
    padding: 4rem 0;
}

header .tagline {
    font-size: 1.2rem;
    margin: 1rem 0;
}

header .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    background: rgb(44, 44, 44);
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

header .btn:hover {
    font-style: italic;
}

.header .header-content {
    display: flex;
    justify-content: center; /* Align text on the left and logo on the right */
    align-items: center;
}

/* Styling the logo */
.header .logo img {
    height: 180px; /* Adjust size */
    margin-left: 1rem; /* Add spacing between the logo and text */
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem;
}

.navbar ul li {
    margin: 0 1rem;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: rgb(44, 44, 44);
}

.section {
    padding: 4rem 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: rgb(44, 44, 44);
}

.section h3 {
    text-align: center;
}

.section p {
    text-align: justify;
}

.section ul {
    text-align: center;
}

.section .tba {
    text-align: center;
}

.about-workshop {
    background-color: #f2f2f2; /* Light grey background */
    padding: 4rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.about-workshop h2 {
    color: rgb(44, 44, 44); /* Same blue as the other section headers */
    margin-bottom: 2rem;
}

.about-workshop p {
    color: #555; /* Slightly darker text for readability */
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.topics-list, .dates-list, .committee-list {
    list-style: none;
    padding: 0;
}

.topics-list, .committee-list {
    column-count: 3;  /* Number of columns */
    column-gap: 20px; /* Space between columns */
    margin-top: 20px;
}

.topics-list li, .dates-list li, .committee-list li {
    margin-bottom: 0.5rem;
}

.footer {
    background: rgb(209, 206, 206);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.footer p {
    margin: 0;
}
