@font-face {
    font-family: 'BankGothic';
    src: url('BankGothic Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Signika';
    src: url('Signika-VariableFont_wght.ttf') format('truetype');
}

.custom-font {
    font-family: 'Signika', sans-serif;
}

body {
    padding: 0;
    margin: 0;
    background-color: #000000; /* Set background to grey */
}

nav {
    background-color: #fff; /* Changed to white */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0; /* Ensure padding is 0 */
    height: 40px; /* Set a specific height to make the bar thinner */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.brand-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brand {
    font-family: 'BankGothic', sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
    color: #000; /* Changed to black */
    text-align: center;
}

nav ul li a {
    color: white;
    margin-left: 20px;
}

.image-container {
    position: relative;
    width: 100%;
}

.full-width-image {
    width: 100%;
    display: block;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black; /* Changed to black */
    background-color: rgba(255, 255, 255, 0.5); /* Adjusted background color for contrast */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

figure img {
    border-radius: 8px;
}




/* Responsive Design */
@media (max-width: 768px) {
    .brand {
        font-size: 1.2rem;
    }

    .text-overlay {
        width: 90%;
        height: 100%;
        padding: 5px;
        background-color: rgba(255, 255, 255, 0); /* Adjusted background color for contrast */
        color: white; /* Changed to black */


    }

    nav ul {
        flex-direction: column;
        /* align-items: flex-start; */
    }

    nav ul li a {
        margin-left: 0;
        margin-top: 10px;
    }
}