/* General Styles */
body {
    background: black; /* Sets a black background for the entire body */
    margin: 0; /* Resets default margin */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #f5f5f5;
    padding: 20px;
    line-height: 1.6; /* Increase line-height for better readability */

}


h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold; /* Make the title bolder to stand out */
    color: #f8f8f8; /* Adjust the color to match the theme */
}
h2 {
    font-size: 1.25rem; /* Slightly reduce the size for less emphasis */
    font-weight: normal;
    color: #aaaaaa;
    margin-bottom: 2rem;

}
.notice {
    /* Other styles remain unchanged */
    padding: 1.5rem; /* Increase padding for more space around the text */
    margin-bottom: 3rem; /* Increase margin for more space before the form */
    border-radius: 8px; /* Soften the corners for a more polished look */
    font-size: 1rem; /* Increase font size for better readability */
    max-width: 600px; /* Control max width of the notice box for optimal line length */
    margin-left: auto; /* Center the notice box horizontally */
    margin-right: auto; /* Center the notice box horizontally */
}

/* Logo Styles */
.logo-container {
    text-align: center; /* Center the logo horizontally */
    padding: 20px; /* Add some padding around the logo */
}

#logo {
    max-height: 200px; /* Adjust the size as needed */
    max-width: 100%; /* Scale the width proportionally */
    height: auto; /* Maintain the aspect ratio */
}

.instructions {
    font-size: 16px;
    color: #555;
}
.notice {
    font-style: italic;
    color: #666;
}

.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 30px; /* Control the overall height of the hamburger icon */
    width: 35px;  /* Control the width of the hamburger icon */
}

.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: left center; /* Ensures transformation (rotation) happens from the left */
}

/* Add skew and rotation to each bar to give the scratched effect */
.hamburger-menu .bar:nth-child(1) {
    transform: rotate(-10deg) skew(-10deg);
}

.hamburger-menu .bar:nth-child(2) {
    transform: rotate(0deg) skew(0deg);
}

.hamburger-menu .bar:nth-child(3) {
    transform: rotate(10deg) skew(10deg);
}


/* Overlay Navigation Menu Styles */
.overlay-menu {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: -100%; /* Initially hidden */
    left: 0;
    background-color: rgb(33, 33, 33);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: top 0.3s ease; /* Smooth transition for opening/closing */
    z-index: 1000;
    
}




.overlay-menu ul {
    list-style-type: none;
    padding: 0;
}

.overlay-menu ul li {
    margin-bottom: 10px;
}

.overlay-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}

/* Main Content Styles */
#main-content {
    max-width: 666px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(28, 28, 28, 0.4); /* Adjusted for transparency */
    color: #f8f8f8;
    border-radius: 16px;
    border:solid 1px #f8f8f8;
}

#main-content h1,
#main-content h2,
#main-content h3,
#main-content h4 {
    color: #fafafa;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

#main-content p {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

#main-content a {
    color: #e57373;
    text-decoration: none;
}

#main-content a:hover {
    text-decoration: underline;
}

#main-content ul,
#main-content ol {
    margin-left: 20px;
}

#main-content li {
    line-height: 1.6;
    margin-bottom: 10px;
}

#main-content blockquote {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #ccc;
    font-style: italic;
    color: #aaa;
}
/* Footer Styles */
.footer {
    color: #f8f8f8;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 20px;
}

/* Input and Button Styles */
.input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#text-input {
    flex-grow: 1;
    background-color: black;
    color: gray;
    border: 1px solid #333;
    padding: 10px;
}

#text-input::placeholder {
    color: #555;
}

#text-input:focus {
    outline: none;
    border-color: #555;
}



.dark-input {
    background-color: #333; /* Dark field backgrounds */
    border: 1px solid #444; /* Slightly lighter border for definition */
    color: #f0f0f0; /* Light text color for visibility */
}

.dark-input::placeholder { /* Style placeholders to match */
    color: #bbb;
}


/* Optional: Custom styles for the modal */
#termsModal .modal-content {
    background-color: #333;
    color: white;
}


.video-container {
    position: fixed; /* Fixed or absolute positioning */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; /* Ensures it stays behind other content */
}

#fogVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the full container */
}

/* Ensure form and other input elements have slightly dark backgrounds for readability */
.dark-input {
    background-color: rgba(51, 51, 51, 0.8); /* Adjust for slight transparency */
    color: #f0f0f0;
}


.dark-input:focus {
    background-color: #333; /* Keeps the dark background */
    border: 1px solid #555; /* Slightly lighter border for focus */
    color: #f0f0f0; /* Light text color for visibility */
    outline: none; /* Removes the default focus outline */
}

/* If you want to specifically target the textarea for any unique styles */
textarea.dark-input:focus {
    background-color: #333; /* Adjust if you want a different background color */
    border: 1px solid #555; /* Adjust if you want a different border color */
    /* Any other specific styles for textarea on focus */
}

/* Custom styles for input fields to ensure they override Bootstrap */
.form-control.dark-input, 
.form-control.dark-input:focus {
    background-color: #333 !important; /* Dark background */
    color: #fff !important; /* White text */
    border-color: #666 !important; /* Darker border for definition */
}


/* Adjust placeholder color */
.form-control.dark-input::placeholder {
    color: #bbb !important;
}

/* Style for error messages */
.error-message {
    display: none; /* Hide by default */
    color: #ff0000 !important; /* Red color, like blood */
    font-style: italic !important;
    font-size: 0.9em !important; /* Smaller text size for the error message */
    margin-top: 5px !important; /* Spacing between the input and the error message */
}



  @keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
  }
  
  .wiggle {
    animation: wiggle 500ms ease-in-out;
  }
  
  
  .visually-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.story-audio {
    width: 100%;
    height: auto;
    background: black;
    /* Add more styles as needed */
  }
  
