@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600&family=Montserrat:wght@500;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

body {
    font-family: Arial, sans-serif;
    color: #3b2f2f;
    background-color: #f5f3ef;
    line-height: 1.5;
}

.container {
    width: 1440px;
    max-width: 90%;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background-color: #cf8166;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.hero {
    background-image: url("images/image1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 640px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding-bottom: 90px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-content h2 {
    color: #ffffff;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 28px;
}

.hero .btn {
    font-size: 1rem;
    padding: 16px 38px;
}
/* --------------------------
   Header
-------------------------- */
/* --------------------------
   Festival Intro Section
-------------------------- */

.festival-intro {
    background-color: #e7dbc8;
    padding: 90px 0 70px;
}

.intro-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 110px;
}

.intro-image img {
    width: 500px;
    height: auto;
}

.intro-text {
    max-width: 430px;
}

.intro-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}

.intro-text p {
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: left;
}
.site-header {
    background-color: #FAF8F4;
    padding: 22px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 115px;
    height: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    text-decoration: none;
    color: #3b2f2f;
    font-size: 0.95rem;
    font-weight: 600;
}

.main-nav a.active {
    color: #cf8166;
}

/* --------------------------
   Footer
-------------------------- */

.site-footer {
    background-image: url("images/footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 90px 0 70px;
    text-align: center;
}

.footer-logo img {
    width: 120px;
    margin: 0 auto 20px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 45px;
}

/* --------------------------
   Homepage placeholders
-------------------------- */

.hero,
.festival-intro,
.festival-details,
.features,
.cta-section,
.about-top,
.contact-section,
.members-section {
    padding: 80px 0;
}