/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E5E0D8;
    font-family: 'Oswald', sans-serif;
    overflow: hidden; /* Prevents scrollbars from the 3D canvas */
}

/* 3D Canvas Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Behind the text */
}

/* UI Overlay Layer */
.ui-layer {
    position: relative;
    z-index: 1; /* In front of the 3D canvas */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* Lets mouse events pass through to the 3D canvas */
}

/* Centered Content */
.center-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Invisible spacer so the contact button sits below the 3D logo */
.spacer-for-3d {
    height: 120px; 
}

/* Contact Button */
.contact-btn {
    text-decoration: none;
    color: #000000;
    font-size: 1.2rem;
    letter-spacing: 2px;
    pointer-events: auto; /* Makes the link clickable */
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.contact-btn:hover {
    color: #0043FF; /* Hover effect using your brand blue */
}

/* Footer Copyright */
footer {
    text-align: center;
    padding-bottom: 2rem;
}

footer p {
    color: #666666; /* Gray text */
    font-size: 0.9rem;
    letter-spacing: 1px;
}
