@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');
@font-face {
    font-family: "CCHighJinkies Bold";
    src: url("https://db.onlinewebfonts.com/t/1ee79721c604f06cbda8d59b89adf326.eot");
    src: url("https://db.onlinewebfonts.com/t/1ee79721c604f06cbda8d59b89adf326.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/1ee79721c604f06cbda8d59b89adf326.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/1ee79721c604f06cbda8d59b89adf326.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/1ee79721c604f06cbda8d59b89adf326.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/1ee79721c604f06cbda8d59b89adf326.svg#CCHighJinkies Bold")format("svg");
}
/* Custom Header Wrapper */
.custom-header-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

/* Header Image */
.custom-header-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Overlay Container (Positions the bar at the bottom) */
.custom-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 35px; /* Approximate position based on original top:808px / height:888px */
    pointer-events: none; /* Allows clicks to pass through to image if needed */
}

/* The Content Bar (Nav + Social) */
.custom-header-bar {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: auto; /* Re-enable clicks for links */
}

/* Navigation Links */
.custom-header-nav {
    display: flex;
    align-items: center;
    gap: 60px; /* Spacing between Home, Michelle, Exit */
}

.custom-header-link {
    color: white;
    font-size: 36px;
    font-family: "CCHighJinkies Bold", sans-serif !important;
    font-weight: 400;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.custom-header-link:hover {
    opacity: 0.8;
}

.link-home { font-size: 30px; }
.link-michelle { font-size: 34px; }
.link-exit { font-size: 33px; }

/* Social Icons */
.custom-header-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.icon-shape {
    background: black;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .custom-header-bar {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }

    .custom-header-nav {
        gap: 30px;
    }

    .custom-header-link {
        font-size: 24px !important; /* Normalize font size on mobile */
    }
}