/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 22px;
    font-weight: 300;
}

/* Set the background image */
body {
    background-image: url('startbg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f0f0f0; /* Light text color for dark design */
}

/* Style for the header and logo */
header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: relative;
    background: rgba(0, 0, 0, 0); /* Dark semi-transparent background */
}

.logo {
    max-width: 200px;
}

/* Style for the nav and language select */
nav {
    position: absolute;
    top: 20px;
    right: 20px;
}

#language-select {
    padding: 5px;
    font-size: 1rem;
    background: #333; /* Dark background for dropdown */
    color: #f0f0f0; /* Light text color */
    border: none;
    border-radius: 5px;
}

/* Main section styling */
main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    position: relative;
    top: -20%; /* Move 20% upwards */
}

/* Style for the action button */
.action-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #f0f0f0;
    background: teal; /* teal background for button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.action-button:hover {
    background: #00aeae;
}

/* Style for responsive divs */
.responsive-div {
    flex: 1;
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Darker shadow */
    text-align: center;
    color: #f0f0f0; /* Light text color */
    width: 100%;
}

/* Style for full-width section */
.full-width-section {
    width: 100%;
    padding: 20px;
    background: rgba(50, 50, 50, 0.8); /* Slightly lighter background for contrast */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        top: -10%; /* Adjust for smaller screens */
    }
}

/* Off-Canvas styles */
.off-canvas {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
    transition: transform 0.3s ease-in-out;
}

.off-canvas-content {
    background-color: #333;
    padding: 20px;
    width: 100%;
    height: 100%;
    overflow: auto;
    border-radius: 10px;
    color: #f0f0f0; /* Light text color */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #f0f0f0;
    text-decoration: none;
    cursor: pointer;
}

