@font-face {
    font-family: 'NimbusSanL-Bol';
    src: url('f/NimbusSanL-Bol.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'NimbusSanL-Reg';
    src: url('f/NimbusSanL-Reg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    /* Using NimbusSanL-Reg as the default font with fallbacks */
    font-family: 'NimbusSanL-Reg', 'Arial', sans-serif;
    height: 100vh;
    height: 100dvh; /* iOS Safari dynamic viewport height */
    overflow: hidden;
    background: #000000;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left for desktop */
}

.main-image {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* This scales the image to cover the container */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sidebar {
    position: absolute;
    left: 50px; /* More padding from the edge */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased gap */
    margin-bottom: 25px; /* Increased margin */
}

.logo {
    width: 72px;
    height: 72px;
    /* In case the user replaces the placeholder with their own logo */
    object-fit: contain;
}

.brand-name {
    /* Using the bold Nimbus font */
    font-family: 'NimbusSanL-Bol', 'Arial', sans-serif;
    font-size: 62px;
    font-weight: bold; /* Use bold to ensure the correct font is picked up */
    color: white;
    letter-spacing: 1px;
}

nav {
    display: flex;
    flex-direction: row; /* Display links in a row */
    gap: 20px;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px; /* Slightly larger font */
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: white;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        align-items: flex-start; /* Align to the top on mobile */
        justify-content: center;
        padding-top: 40px; /* Add padding at the top */
    }

    .sidebar {
        position: static; /* Remove absolute positioning */
        transform: none; /* Reset transform */
        width: 100%;
        text-align: center;
        left: auto;
        top: auto;
    }

    .logo-section {
        flex-direction: column; /* Stack logo and brand name vertically */
        gap: 10px;
        margin-bottom: 30px;
    }

    .brand-name {
        font-size: 32px;
    }

    nav {
        flex-direction: row; /* Links in a row on mobile */
        justify-content: center; /* Center the navigation links */
        flex-wrap: wrap; /* Allow links to wrap to the next line if needed */
        gap: 25px;
    }

    nav a:hover {
        transform: none; /* Disable hover transform on mobile */
    }
}