:root {
    --primary-bg-color: #fff;
    --shadow-color: rgba(0,0,0,0.1);
    --link-hover-color: #ddd;
    --text-color: black;
    --menu-icon-size: 100px;
}

/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Helvetica', sans-serif;
    color: var(--text-color);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centers content vertically and horizontally */
    height: 100vh; /* Use viewport height for body height */
    
}

@media (max-width: 768px) {
    .site-header {
        justify-content: center; /* Center items in smaller screens, adjust as needed */
    }

    .menu-icon {
        position: absolute;
        right: 20px; /* Ensures icon is on the right, adjust as needed */
    }
}

.site-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg-color);
    z-index: 1050;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px var(--shadow-color);
}
.center-image {
    max-width: 50%; /* Adjust comment to accurately reflect the percentage */
    max-height: 30vh;
    object-fit: contain;
    margin-bottom: 80px;

}

/* Hamburger Menu Styles */
.hamburger-menu {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
}

.menu-icon {
    width: var(--menu-icon-size);
    height: var(--menu-icon-size);
    background-image: url('img/can.png');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: background-image 0.3s ease;
    border: none; 
    padding: 0; 
    background-color: transparent; 
    outline: none; 
}

.menu-icon:focus {
    outline: none; /* Optional: consider a custom focus style for accessibility */
}
.menu-content {
    visibility: hidden;
    opacity: 0;
    position: fixed; /* Ensure the menu is positioned relative to the viewport */
    top: 120px; /* Adjust based on the height of menu icon */
    right: 20px; /* Aligns with the right of the menu icon */
    z-index: 1000; /* Keeps the dropdown above other content */
    transform: translateY(-20px); /* Starts slightly above the final position for a subtle slide-in effect */
    width: auto; 
    padding: 10px 0; /* Adds some padding inside the dropdown */
}

.menu-content.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu-content a {
    display: block; /* Makes each link take up the full width of the dropdown */
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
}

.menu-content a:hover {
    background-color: var(--link-hover-color); /* Background color on hover */
}

.menu-icon.active {
    background-image: url('img/can_hover.png');
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
}

/* Coming Soon Circle Styles */
#coming-soon-container {
    position: fixed; /* Make the container position fixed */
    top: 60px; /* Distance from the top */
    left: 10px; /* Distance from the left */
    display: flex;
    justify-content: center;
    align-items: center;
}

#coming-soon-circle {
    display: inline-block;
    padding: 20px; /* Adjust padding to control the space around the text */
    border: 5px solid #000;
    border-radius: 50%;
    text-align: center;
    animation: rotate 5s linear infinite;
}

#coming-soon {
    font-size: 1em;
    text-align: center;
    font-family: 'UnifrakturMaguntia', cursive;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}