@font-face {
    font-family: 'Sundowners';
    src: url('Sundowners.ttf') format('truetype');
}

body {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    box-sizing: border-box;
    font-family: 'Sundowners', sans-serif;
}

.video-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#video, #videoA, #videoC, #videoCd {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.control-button, .control-button-2, .control-button-1, .control-button-5 {
    background-color: transparent; 
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    opacity: 1;
    font-size: 0; /* Hide text content */
    position: absolute;
}

#homeBtn {
    top: 10%;
    left: 5%;
    transform: translate(-50%, -50%);
}


#pauseBtn, #play2Btn {
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#playBtn{
    bottom: 45%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.fullscreen #menu {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

#menu {
    z-index: 10;
    position: fixed;
    top: 30px;
    left: 20px;
    transition: transform 0.5s ease;
    display: flex;
}

#menu-bar {
    width: 35px;
    height: 40px;
    cursor: pointer;
    z-index: 100;
}

.bar {
    height: 5px;
    width: 100%;
    background-color: #FFFAEE;
    border-radius: 5px;
    transition: 0.3s ease;
}

#bar1 {
    transform: translateY(-4px);
}

#bar3 {
    transform: translateY(4px);
}

/* Your existing CSS */

.overlay-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #232323;
    overflow-x: hidden;
    transition: width 0.5s ease;
}

.overlay-nav ul {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}

.overlay-nav ul li {
    margin: 20px 0;
}

.overlay-nav ul li a {
    color: #FFFAEE;
    font-size: 36px;
    text-decoration: none;
    transition: 0.5s;
}

.overlay-nav ul li a:hover {
    color: #6e2121;
}

.change .bar {
    background-color: #FFFAEE;
}

.change #bar1 {
    transform: translateY(4px) rotateZ(-45deg);
}

.change #bar2 {
    opacity: 0;
}

.change #bar3 {
    transform: translateY(-6px) rotateZ(45deg);
}

/* Ensure .change class is correct */
.overlay-nav.change {
    width: 100%;
}

.buttonT {
    color: #FFFAEE; /* Same color as your menu text */
    font-size: 25px; /* Adjust font size as needed */
    text-align: center;
    position: absolute;
    transform: translateX(-50%);
    width: 150px; /* Same as the button width */
    left: 50%; /* Center the text under the button */
    margin-top: 10px; /* Adjust the space between button and text */
}


