@font-face {
    font-family: 'Suisse BP Serif';
    src: url('../fonts/SuisseBPSerif-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Suisse BP Serif', serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #EFEEEC;
    width: 100%;
}

.container {
    width: 100%;
    min-width: 1920px;
    margin: 0 auto;
    padding: 60px 60px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.logo:hover {
    filter: brightness(0) invert(1);
}

.logo, footer a {
    position: relative;
    z-index: 10000; /* Ensure it's on top of the cursor media */
  }

/* Cursor Follower Styles */
#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

footer {
    width: 100%;
    padding: 0 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 60px;
}

footer p {
    margin: 0;
    flex: 1;
}

footer p:first-child {
    text-align: left;
}

footer p:nth-child(2) {
    text-align: center;
}

footer p:last-child {
    text-align: right;
}

footer a {
    color: #000000;
    text-decoration: none;
    cursor: none;
}

footer a:hover {
    filter: brightness(0) invert(1);
}

@media (max-width: 1919px) {
    .container {
        min-width: 100%;
    }
}

@media (max-width: 1920px) {
    .container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 30px 0;
    }

    .logo {
        max-width: 90%;
    }
    
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
        font-size: 16px;
    }
    
    footer p {
        margin-bottom: 10px;
    }

    footer p:first-child,
    footer p:nth-child(2),
    footer p:last-child {
        text-align: center;
    }
    #cursor-follower {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 600px;
        height: auto;
        z-index: 9999; /* Keep below logo */
    }

    #cursor-follower img,
    #cursor-follower video {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 100%;
        transform: none;
        left: 0;
        top: 0;
    }

    .logo {
        position: relative;
        z-index: 10000; /* Keep logo above media */
        max-width: 90%;
        margin: 0 auto;
    }
}  







