/* .bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.figtree-<uniquifier> {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.special-gothic-expanded-one-regular {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*/

/* ############################################################################################################### /*
/* CSS for general tags/ general fixes */

body {
    font-family: "Figtree", sans-serif;
    font-size: 20px;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    background-color: #171b1e;
    color: #ffffff;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-style: normal;
}

h1, h2, h3, h4, p {
    margin: 0;
}

strong {
    font-weight: bold;
    font-size: 22px;
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

/* ############################################################################################################### /*
/* CSS for section Header */
#section-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 28px; /* Based on logo x position */
    background-color: rgba(219, 45, 40, 0.4);
    backdrop-filter: blur(4px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 17px;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.site-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 39px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.search-bar {
    width: 35em;
    height: 53px;
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 30px;
}

.search-icon {
    width: 51px;
    height: 40px;
    opacity: 1;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #000000;
    opacity: 0.5;
    margin-left: 10px;
    width: 100%;
}

    .search-input::placeholder {
        color: #000000;
        opacity: 0.25;
    }

.header-right {
    display: flex;
    align-items: center;
}

.subtitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .site-title, .subtitle {
        font-size: 18px;
    }

    .search-bar {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .header-left, .header-center, .header-right {
        width: 100%;
        justify-content: center;
    }

    .search-bar {
        width: 100%;
    }
}

/* ############################################################################################################### /*
/* CSS for section Main */
#section-hero {
    position: relative;
    width: 100%;
    height: 92.5vh;
    max-height: 1080px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through to nav */
}

.nav-item {
    position: relative;
    width: 133px;
    height: 133px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

    .nav-item:hover {
        transform: scale(1.05);
    }

.nav-icon-group {
    position: relative;
    width: 102px;
    height: 102px;
}

.nav-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 133px;
    height: 100px;
    z-index: 1;
}

.nav-icon {
    position: absolute;
    top: 34%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 55px;
    z-index: 2;
    object-fit: contain;
}

.nav-label {
    position: absolute;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    width: 100%;
    margin-top: 3em;
}

@media (max-width: 1024px) {
    #section-hero {
        height: auto;
        min-height: 100vh;
    }
}

/* ############################################################################################################### /*
/* CSS for section Footer */
.site-footer {
    background-color: #911317;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
}

.social-link {
    display: block;
    transition: opacity 0.2s;
}

    .social-link:hover {
        opacity: 0.8;
    }

.social-icon {
    width: 104px;
    height: 55px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .social-icon {
        width: 60px;
        height: 60px;
    }

    .site-footer {
        height: auto;
        padding: 20px;
    }
}