body {
    font-family: 'Schibsted Grotesk', sans-serif;

}

/* HEADER STYLING */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a; /* Dark background */
    z-index: 1000; /* Ensures it stays on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 1;
}



/* Header Name in the Center */
.headername {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

/* Navigation Container */
.nav-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Navigation Left (Contact & Image Gallery) */
.nav-left {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: flex-start; /* Aligns to the left */
}


.relicon {
    width: 30px; /* Adjust size as needed */
    height: auto;
}

/* Navigation Right (About Us) */
.nav-right {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end; /* Moves to the right */
}

/* Navigation Links */
nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    font-family: 'Schibsted Grotesk', sans-serif;
}

nav a:hover {
    color: #d1d1d1;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile Dropdown Menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.mobile-nav a {
    padding: 15px;
    display: block;
}

/* When active, show the menu */
.mobile-nav.active {
    display: flex;
}

/* Default: Show "Image Gallery" */
.image-gallery-link::after {
    content: "GALLERY";
}

/* MOBILE-FIRST DESIGN */
@media (max-width: 768px) {
    .menu-toggle {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
    }

    .header-center {
        flex-direction: row;
        justify-content: center;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    /* Hide the regular navigation on mobile */
    .nav-left, .nav-right {
        display: none;
    }

    .relicon {
        width: 25px; /* Slightly smaller for mobile */
        position: absolute;
        right: -75px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    /* Mobile Dropdown Menu */
    .mobile-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 10px 0;
        z-index: 999;
        transition: all 0.3s ease-in-out;
    }

    .mobile-nav a {
        padding: 15px;
        display: block;
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: 0.3s;
    }

    .mobile-nav a:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Show dropdown when active */
    .mobile-nav.active {
        display: flex;
    }

    
}
