/* General Styles */

body {
    font-family: "Lexend", sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #1e1c54; /* Primary dark color */
    background-color: #f8f8f8; /* Light background */
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #1e1c54;
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding-bottom: 10px;
    position: relative;
}
h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffa200; /* Accent color */
    margin: 10px auto 0;
    border-radius: 5px;
}

h2 {
    font-size: 2.5em;
    color: #1e1c54;
    position: relative;
    padding-bottom: 10px;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: #ffa200;
    margin: 10px auto 0;
    border-radius: 5px;
}

h3 {
    font-size: 2em;
    color: #1e1c54;
    margin-top: 30px;
    position: relative;
    padding-bottom: 8px;
}
h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #ffa200;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* Header/Hero Section */
.hero {
    position: relative;
    height: 400px; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-color: #1e1c54; /* Fallback background */
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6); /* Darken image for text readability */
}

/* Introduction Section */
.intro {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    border-left: 5px solid #ffa200; /* Art Nouveau touch */
    border-right: 5px solid #ffa200;
}
.intro p {
    text-align: justify;
    font-size: 1.1em;
    color: #333;
}

.poster {
    display: flex;
    margin-bottom: 2em;
    justify-content: center;
    align-items: center;
}

.poster img{
    max-width: 600px;
    width: 100%;
}

/* Exhibitors Section */
.exhibitors {
    background-color: #e0e7e9; /* Light greyish blue */
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    border-top: 5px solid #1e1c54;
    border-bottom: 5px solid #1e1c54;
}
.exhibitors ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.exhibitors ul li {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    margin: 10px 0;
    color: #1e1c54;
    position: relative;
    padding-left: 25px;
}
.exhibitors ul li::before {
    content: '✦'; /* Decorative bullet */
    color: green; /* Green accent */
    position: absolute;
    left: 0;
    font-size: 0.8em;
    top: 50%;
    transform: translateY(-50%);
}

/* Gallery Section */
.gallery {
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #ffa200; /* Frame for Art Nouveau feel */
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-color: #1e1c54;
}

/* Footer */
.footer {
    background-color: #1e1c54;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-family: 'Lora', serif;
    border-top: 5px solid #ffa200;
}
