/* css/layout.css */

/* Navigation Header */
.main-header {
    position: fixed;
    top: 0rem;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 1rem 2rem;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 2rem;
    top: 0rem;
}

.logo img {
    height: 150px;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 2rem;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
}

.nav-menu a.active {
    border-bottom: 2px solid var(--accent-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--text-light);
}

.hero-film-bg {
    background: url('../images/backgrounds/film.jpg') no-repeat center center/cover;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
}

.hero-logo {
    width: 80%;
    max-width: 800px;
    margin-bottom: 10rem;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* General Section Styling */
.welcome-section,
.partner-section {
    padding: 4rem 0;
    text-align: center;
}

.layered-section {
    position: relative;
    padding: 4rem 0;
    text-align: center;
}

.judges-ger-bg {
    background: url('../images/backgrounds/ger.jpg') no-repeat center center/cover;
}

.community-people-bg {
    background: url('../images/backgrounds/people.jpg') no-repeat center center/cover;
    min-height: 100vh;
    background-size: cover;
}

.community-people-bg .background-overlay {
    background-color: transparent;
}

/* Footer */
.main-footer {
    background-color: var(--secondary-brown);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social img {
    height: 36px;
}