﻿/* Reset some default styles */
.initially-hidden {
    display: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body, html {
    height: 100%;
    overflow: hidden; /* Remove scroll */
}


/* Style for the header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3c655f;
    padding: 0 20px;
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    z-index: 10;
}


/* Logo and contact styles */
.logo, .contact {
    color: #ffffff;
    font-family: 'Futura', sans-serif;
    font-size: 18px;
    text-decoration: none;
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/* Content styles */
.content {
    padding-top: 60px;
    position: relative;
}


/* Style for the video */
#myVideo {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
    z-index: -1;
}


/* Styles for hotspots */
.hotspot {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    background-color: transparent;
}


/* Volume icon styles */
#volume-icon {
    display: none;
    width: 50px; /* Adjust this to the desired size */
    height: auto; /* Keeps the aspect ratio */
}


/* Play icon styles */
#play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8; /* 80% opacity */
    z-index: 1; /* Ensures it's above the video but below controls */
}


/* Adjusting for responsiveness */
@media (max-width: 768px) {
    #play-icon {
        width: 30%; /* Smaller screens might need a smaller icon */
    }
}