/* --- Root Variables & Global Styles --- */
:root {
    --orange: #F94F2B;
    --red: #D92B04;
    --creamy-white: #F5F0E1;
    --dark-text: #333333;
    --light-text: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    background-color: var(--creamy-white);
    color: var(--dark-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0;
    border-radius: 8px;
}

h1, h2 {
    font-family: 'Georgia', serif;
    color: var(--red);
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; }

p {
    margin-bottom: 1rem;
}

section {
    padding-top: 80px; /* Offset for fixed header */
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(245, 240, 225, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--red);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav a:not(.logo)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

nav a:hover:not(.logo) {
    color: var(--orange);
}

nav a:hover:not(.logo)::after {
    width: 100%;
}

/* NEW: Language Switcher Styles */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-switcher a {
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--dark-text);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    opacity: 1;
    color: var(--orange);
}

.lang-switcher span {
    color: var(--dark-text);
    opacity: 0.4;
}


/* --- Home Section --- */
#home {
    padding-top: 0;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
    border-radius: 10px;
}

.hero-message h1 {
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-message p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.intro-text {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
}

/* --- General Section Header --- */
.section-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.section-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}
.section-header h2 {
    color: var(--creamy-white);
    z-index: 2;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* --- Business Events List --- */
.vertical-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.fade-in-item {
    background-color: #fff;
    border-left: 5px solid var(--orange);
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 0 8px 8px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-item:nth-child(2) { transition-delay: 0.1s; }
.fade-in-item:nth-child(3) { transition-delay: 0.2s; }
.fade-in-item:nth-child(4) { transition-delay: 0.3s; }
.fade-in-item:nth-child(5) { transition-delay: 0.4s; }

.fade-in-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Contact Form --- */
#contact {
    background-color: #eaddc7;
    padding-bottom: 4rem;
}

#contact-form {
    max-width: 700px;
    margin: 2rem auto 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--creamy-white);
}

.form-group.captcha {
    display: flex;
    align-items: center;
}

.form-group.captcha input {
    width: auto;
    margin-right: 0.5rem;
}

#contact-form button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--red);
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: var(--orange);
}

/* --- Footer --- */
footer {
    background-color: var(--dark-text);
    color: var(--creamy-white);
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    max-width: 150px;
    margin: 0 0 1.5rem 0;
}

footer p {
    margin: 0;
}