/* ==============================
   Imported Fonts
============================== */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

/* ==============================
   Root Variables
============================== */
:root{
    --primary-font: "Josefin Sans", serif;
    --secondary-font: "Cardo", serif;
}

/* ==============================
   Global Styles
============================== */
* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body{
    overflow: hidden;
}

/* ==============================
   Landing Video Styles
============================== */
.landing-video{
    position: absolute;
    z-index: 14; /* Ensure it's on top of the content */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.looped-video{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.looped-video a{
    cursor: auto; /* Prevent any interaction with the link */
}

.looped-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9); /* Center and slightly scale the video */
    width: 2560px;
    height: 1440px;
}

/* ==============================
   Central Navigation Styles
============================== */
.central-navigation{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the navigation */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 20px;
    z-index: 14; /* Ensure it's on top of other content */
}

/* ==============================
   Central Logo Styles
============================== */
.central-logo {
    z-index: 15; /* Ensure it's above other content */
}

.central-logo img{
    width: 70vw;
}

/* ==============================
   Navigation Buttons Styles
============================== */
.nav-buttons {
    display: flex; /* Align buttons side-by-side */
    gap: 28px; /* Space between the buttons */
    opacity: 0; /* Start with buttons invisible */
    transition: opacity 0.5s ease; /* Smooth transition when buttons appear */
    z-index: 15; /* Ensure the buttons appear above other content */
    position: relative; /* Ensure stacking context */
}

.nav-buttons.show {
    opacity: 1; /* Visible state */
    visibility: visible;
}

.nav-buttons button {
    background-color: rgba(0, 0, 0, .2); /* Light black background */
    color: white; /* White text */
    border: 2px solid white; /* White border */
    padding: 8px 40px 6px; /* Padding for the buttons */
    font-family: var(--primary-font);
    font-size: 8pt; /* Font size */
    cursor: pointer; /* Pointer on hover */
    transition: all .3s ease; /* Smooth transition for interactive effects */
}

.nav-buttons button:hover {
    background-color: rgba(0, 0, 0, .5); /* Darken button on hover */
}

/* ==============================
   Media Queries
============================== */
@media (min-width: 426px){
    .central-logo img{
        width: 340px; /* Adjust logo size for larger screens */
    }

    .nav-buttons {
        gap: 60px; /* Increase space between buttons on larger screens */
    }

    .nav-buttons button {
        padding: 8px 80px 6px; /* Increase padding for buttons on larger screens */
    }
}