* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease; /* Added transition for body background and text */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #2a2a2a;
    color: #fff;
    transition: background-color 0.3s ease; /* Smooth transition for header background color */
}

header h1 {
    font-size: 2rem;
    transition: font-size 0.3s ease; /* Smooth transition for header font size */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

nav ul li:hover {
    transform: translateY(-3px); /* Slight movement on hover */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and text transform */
}

nav ul li a:hover {
    color: #f7a700; /* Change color on hover */
    transform: scale(1.05); /* Slight scaling effect */
}

.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease; /* Smooth transition for image zoom effect */
}

.hero:hover img {
    transform: scale(1.05); /* Slight zoom-in effect when hovering over the hero section */
}

.cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease; /* Smooth transition for positioning */
}

.cta:hover {
    transform: translate(-50%, -55%); /* Slight upward movement on hover */
}

.cta p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: font-size 0.3s ease; /* Smooth transition for text size */
}

.cta-button {
    text-decoration: none;
    color: #fff;
    background-color: #f7a700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for button color and scale */
}

.cta-button:hover {
    background-color: #d58c00; /* Darker shade on hover */
    transform: scale(1.1); /* Slight scaling effect on hover */
}

section {
    padding: 2rem;
    transition: background-color 0.3s ease; /* Smooth transition for section background color */
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: font-size 0.3s ease; /* Smooth transition for section headings */
}

a {
    text-decoration: none;
    color: #f7a700;
    transition: color 0.3s ease; /* Smooth transition for links */
}

a:hover {
    color: #d58c00; /* Darker yellow on hover */
}

.more {
    display: inline-block;
    margin-top: 1rem;
}

.events-preview ul {
    list-style-type: none;
}

.events-preview li {
    margin-bottom: 1rem;
}

footer {
    background-color: #2a2a2a;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    transition: background-color 0.3s ease; /* Smooth transition for footer background */
}

footer a {
    color: #f7a700;
    transition: color 0.3s ease; /* Smooth transition for footer links */
}

footer a:hover {
    color: #d58c00; /* Darker yellow on hover */
}

@media screen and (max-width: 1024px) {
    .hero img {
        height: 350px;
    }

    .cta p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        display: block;
        text-align: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}

@media screen and (max-width: 410px) {
    .cta {
        width: 90%;
        padding: 1rem;
    }
}


