* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #faf3e0;
    overflow-x: hidden;
}

header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header p {
    font-size: 1.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d35400;
}

section p {
    font-size: 1.2em;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 30px;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d35400;
}

.festival-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.festival-info div {
    max-width: 300px;
    text-align: left;
}

.sponsors {
    margin-top: 50px;
    background-color: #f5f5f5;
    padding: 40px 20px;
}

.sponsors h3 {
    color: #d35400;
    font-size: 2em;
    margin-bottom: 20px;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sponsors-logos img {
    max-width: 150px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 0.9em;
}

footer a {
    color: white;
    text-decoration: underline;
}
