/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #D0C3AF;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Shared Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.main-header.scrolled {
    /* opacity: 0.7; */
    mix-blend-mode: difference;
}

.main-header.scrolled:hover {
    mix-blend-mode: normal;
}


.main-header:hover {
    opacity: 1 !important;
}

.header-content {
    display: flex;
    align-items: center;
    position: relative;
    pointer-events: auto;
}

.plus-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-right: 2rem;
    background-color: #63480D;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: none;
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1001;
}

.plus-icon:hover {
    background-color: #8B6711;
    cursor: none;
}

.circle-inner {
    width: 1.2rem;
    height: 1.2rem;
    background-color: rgb(30,170,255);
    border-radius: 50%;
    position: relative;
    cursor: none;
    animation: floatCircle 3s ease-in-out infinite;
    transition: transform 0.2s ease-out;
}

.plus-icon:hover .circle-inner {
    animation: none;
    cursor: none;
}

@keyframes floatCircle {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(0.3rem, 0.3rem);
    }
    50% {
        transform: translate(0, 0.6rem);
    }
    75% {
        transform: translate(-0.3rem, 0.3rem);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Remove header buttons and their hover effects */
.header-buttons {
    display: none;
}

/* Remove expanding ellipse effect */
.header-content::before {
    display: none;
}

.back-to-home-label {
    position: fixed !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    font-family: input-mono-condensed, monospace !important;
    font-style: italic !important;
    text-transform: lowercase !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    /* mix-blend-mode: difference !important; */
    color: #63480D !important;
    /* padding: 0.25em 0.75em !important; */
    border-radius: 6px !important;
    transition: opacity 0.15s !important;
    opacity: 1.0 !important;
    background: none !important;
    text-decoration: none !important;
    text-align: left !important;
    letter-spacing: normal !important;
    line-height: normal !important;
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }

    .plus-icon {
        left: 1rem;
    }
} 