/*body {
            background-color: #121212;
            color: #ffffff;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
}*/

h1 {
    color: #fafafa; /* Lighter text for headings */
    text-align: center; /* Centering the h1 */
}

h3 {
    color: #fafafa; /* Lighter text for headings */
    text-align: center; /* Centering the h1 */
    margin-bottom: 50px; /* Adjust the value as needed */
}


#theme_tiles {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 10px; /* Space between buttons */
    max-width: 420px; /* Set maximum width for overall look if desired */
    margin: auto; /* Center the container on the page */
}

.movie-button {
    background-color: #2D3748;
   /* font-size: 14px;  This sets the text size to 14 pixels */
    color: white;
    border-radius: 5px;
    height: 100px;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    opacity: 0;  /*Start invisible */
    transition: opacity 0.5s ease !important; /* Test with only background */
    transition: background-color 0.5s ease, opacity 0.5s ease !important;
}

.button-text {
    display: inline-block;
    text-align: left;
    white-space: normal;
    margin: 0 auto;
    line-height: 1.4;
}

.button-text:first-line {
    text-align: center;
    display: flex;
    width: 100%;
}

.movie-button:hover {
   background-color:#2E8B57;
}

.movie-button.hidden {
    opacity: 0; /* Fade out */
    /*transition: opacity 0.5s ease;  Transition for fade-out */
}

.movie-button.visible {
    opacity: 1; /* Fade into view */
    /*transition: opacity 0.5s ease;  Transition for fade-in */
}

.back {
    background-color:#0057B7;
}

.hello-world-text {
  /*background-color: #333333;  Match other elements */
  display: none;
  color: #ffffff;
  margin: auto;
  text-align: left;

}

/* Ensure .hidden and .visible classes have relevant rules */
.hidden {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.visible {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Specific transition effect for Hello World only */
.hello-world-text.visible,
.hello-world-text.hidden {
   transition: opacity 2.5s ease !important;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.limited-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;  /* Optional: Add some horizontal padding */
}


.last-level-buttons {
    /* Original positioning and sizing */
    margin-left: 0.5rem;
    height: 40px;
    width: 128px;
    margin-bottom: 100px;

    /* Visual styles to match original button */
    background-color: #2D3748; /* Matches original */
    color: rgb(255, 255, 255); /* Matches original */
    font-family: Lato, sans-serif; /* Matches original */
    font-size: 16px; /* Matches original */
    font-weight: 400; /* Matches original */
    line-height: 22.4px; /* Matches original */
    text-align: center; /* Centers text, avoids flex */
    border: 2px outset rgb(0, 0, 0); /* Matches original shadow-like effect */
    border-radius: 5px; /* Matches original */
    cursor: pointer; /* Kept from your original */
    transition: background-color 0.5s ease, opacity 0.5s ease; /* Matches original duration */
    appearance: button; /* Matches original for consistent rendering */
    -webkit-font-smoothing: antialiased; /* Matches original */
}

.last-level-buttons:hover {
    background-color: #2E8B57; /* Change the background color on hover */
    color: #000000; /* Change the text color on hover */
    transition: background-color 0.5s ease, color 0.5s ease;
}


.container {
    padding-top: 0rem;
    padding-left: 0;
    padding-right: 0;
}

.form-container {
    max-width: 600px;
    margin: auto;
    background: transparent;
    border-radius: 5px; /* Match the border-radius of .movie-button */
    overflow: hidden;
    box-shadow: none; /* No shadow on .movie-button, so set to none */
}

.form-group {
    padding: 0.5rem;
}

.label-form {
    display: block;
    margin-bottom: 0.1rem !important;
    font-size: 0.875rem;
}

.input-field,
.textarea-field {
    height: 48px;
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #007bff;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus,
.textarea-field:focus {
    border-color: #0056b3;
}

.textarea-field {
    height: 120px;
}

.file-upload {
    border: 2px dashed #007bff;
    border-radius: 8px;
    background: #f0f0f0;
    height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('/static/images/folder.png');
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
}

.file-upload-inner {

    display: flex;
    align-items: center;
    padding: 5px;
}

.file-upload-inner span {
    padding-left: 20px; /* Adjust as necessary */
}

.file-input {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.button-group {
    margin-top: 1rem;
    text-align: right;
    padding: 1.0rem;
}

.cancel-button {
    color: #007bff;
    text-decoration: none;
}

.submit-button {
    /* Original positioning and sizing */
    margin-left: 0.5rem;
    height: 40px;
    width: 128px;

    /* Visual styles to match original button */
    background-color: #2D3748; /* Matches original */
    color: rgb(255, 255, 255); /* Matches original */
    font-family: Lato, sans-serif; /* Matches original */
    font-size: 16px; /* Matches original */
    font-weight: 400; /* Matches original */
    line-height: 22.4px; /* Matches original */
    text-align: center; /* Centers text, avoids flex */
    border: 2px outset rgb(0, 0, 0); /* Matches original shadow-like effect */
    border-radius: 5px; /* Matches original */
    cursor: pointer; /* Kept from your original */
    transition: background-color 0.5s ease, opacity 0.5s ease; /* Matches original duration */
    appearance: button; /* Matches original for consistent rendering */
    -webkit-font-smoothing: antialiased; /* Matches original */
}

.submit-button:hover {
    background-color: #2E8B57;
}

.file-upload.highlight {
    border-color: #0056b3;
    background: #2E8B57;
}

.error-message {
    margin-bottom: -10px;
}

.textarea-field {
    margin-bottom: -8px;
}

.fullscreen-video {
        position: fixed; /* Change to fixed to cover the entire viewport */
        top: 0;
        left: 0;
        width: 100vw; /* Use viewport width */
        height: 100vh; /* Use viewport height */
        object-fit: cover; /* Ensure the video covers the area */
        z-index: -1; /* Send it to the back */
    }

#heroModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #A8E6CF;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 600px; /* limit width here */
  width: 80%; /* make it responsive */
  box-sizing: border-box; /* include padding in size */
}

#welcomeModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #A8E6CF;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 600px; /* limit width here */
  width: 80%; /* make it responsive */
  box-sizing: border-box; /* include padding in size */
}

#contactModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #A8E6CF;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 600px; /* limit width here */
  width: 80%; /* make it responsive */
  box-sizing: border-box; /* include padding in size */
}

.modal-close-btn {
  /* Original positioning and sizing */
    margin-left: 0.5rem;
    height: 40px;
    width: 128px;

    /* Visual styles to match original button */
    background-color: #2D3748; /* Matches original */
    color: rgb(255, 255, 255); /* Matches original */
    font-family: Lato, sans-serif; /* Matches original */
    font-size: 16px; /* Matches original */
    font-weight: 400; /* Matches original */
    line-height: 22.4px; /* Matches original */
    text-align: center; /* Centers text, avoids flex */
    border: 2px outset rgb(0, 0, 0); /* Matches original shadow-like effect */
    border-radius: 5px; /* Matches original */
    cursor: pointer; /* Kept from your original */
    transition: background-color 0.5s ease, opacity 0.5s ease; /* Matches original duration */
    appearance: button; /* Matches original for consistent rendering */
    -webkit-font-smoothing: antialiased; /* Matches original */
}

.modal-close-btn:hover {
    background-color: #2E8B57;
}

/* overlay covering entire viewport, semi-transparent, blocks clicks */


#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* semi-transparent background */
  backdrop-filter: blur(4px); /* blurs background behind overlay */
  -webkit-backdrop-filter: blur(4px); /* for Safari */
  z-index: 9998;
  display: none; /* hide by default, show as needed */
}

#contactModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* semi-transparent background */
  backdrop-filter: blur(4px); /* blurs background behind overlay */
  -webkit-backdrop-filter: blur(4px); /* for Safari */
  z-index: 9998;
  display: none; /* hide by default, show as needed */
}

.modal-title {
text-align: center;
}

/* Your existing styles */
#pp-nav li:nth-child(4) {
    display: none;
}


#pp-nav li {
    /* Space out bullets horizontally */
    margin: 0 15px; /* Adjust spacing between bullets */
    position: relative; /* Ensure tooltips are positioned relative to bullets */
}

/*tooltips for the bullet points*/
#pp-nav .pp-tooltip {
    /* Rotate text to be readable (not upside-down) */
    transform: rotate(-90deg); /* Changed from 90deg to -90deg to fix orientation */
    transform-origin: center;
    position: absolute;
    top: 20px; /* Position below the bullet; adjust as needed */
    left: 50%;
    transform: translateY(70px) translateX(-60px) rotate(-90deg); /* Center and rotate */
    white-space: nowrap; /* Prevent text wrapping */
    background: #2D3748;
    color: #ffffff;
    padding: 4px 60px;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

#pp-nav li:hover .pp-tooltip,
#pp-nav li.active .pp-tooltip {
    /* Show tooltips on hover or active state */
    opacity: 1;
    visibility: visible;
}

#disclaimerLink {
  position: fixed;
  bottom: 20px;
  left: auto; /* Half of the sidebar width (200px / 2) */
  transition: color 0.5s ease; /*change the color within 0.5 seconds from white to #2E8B57 when hover */
}

#disclaimerLink:hover {
  color: #2E8B57;
  text-decoration: none;
}

#emailLink {
  position: fixed;
  bottom: 20px;
  left: 300px; /* adjust horizontal distance */
  transition: color 0.5s ease;
}

#emailLink:hover {
  color: #2E8B57;
  text-decoration: none;
}


/* font color for the modal texts */
#heroModal p, #welcomeModal p,
#welcomeModal .modal-title {
  color: black;
}

#contactModal p,
#contactModal .modal-title {
  color: black;
}

#contact-form label {
  color: white;
}

.alx-burger span, .alx-burger span:after, .alx-burger span:before {
  background-color: #fff;
}

#impressumButton {
    margin: 0 auto !important;
    height: 40px;
    width: 128px;
    background-color: #2D3748;
    color: rgb(255, 255, 255);
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 2px outset rgb(0, 0, 0);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.5s ease, opacity 0.5s ease;
    appearance: button;
    -webkit-font-smoothing: antialiased;

    /* Add Flexbox for centering */
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */

    /* Remove conflicting properties */
    line-height: normal;
    text-align: left; /* Reset, Flexbox handles centering */
    text-decoration: none;
}

#impressumButton .impressum-button-text {
  display: inline-block;           /* Make it behave like its own box */
  position: relative;              /* Position relative to itself */
  top: 2px;                        /* Shift text down by 2px */
}

#impressumButton:hover {
    background-color: #2E8B57;
    text-decoration: none;
}

/* color of the text in the drag and drop field */
.upload-message {
color: #000000;}

.no-cursor {
    cursor: default; /* Prevents the cursor from changing to a pointer */
    text-decoration: none; /* Optional, if you want to keep it look similar without the underline */
    color: inherit; /* Optional, to keep the text color consistent */
  }

/* Powered by...*/
.styled-link {
  display: block; /* matches computed 'display' */
  width: 200px; /* set to match exact width, or auto if dynamic */
  height: 35px; /* approximate height, can be adjusted */
  line-height: 19px; /* vertical alignment inside height */
  font-family: 'Lato', sans-serif; /* font */
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0); /* transparent, as indicated */
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  box-sizing: border-box; /* ensures padding considered in width/height */
  border: none; /* no borders unless needed */
  -webkit-font-smoothing: antialiased; /* smoothing */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* no highlight on tap on mobile */
  transition: all 0.5s ease;
  list-style-type: none; /* for list items, optional here */
  text-decoration: none; /* remove underline if needed, or set as desired */
}

/* color change when hover over the sidebar items */
.alx-sidebar-menu ul li a:hover {
  color: #2E8B57;
  text-decoration: none;
}

#alx-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: #060606;
  /*background-image: url('../images/bg_light.jpg'); */
}

.custom-heading {
   text-align: left;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #696969;
  }

 .file-upload .file-list {
    text-align: left; /* Override parent centering for the list */
    padding-left: 0;
    margin-left: 0;
    display: inline-block; /* Ensures the list respects text-align: left */
    width: auto; /* Prevents the list from stretching to full width */
}

.file-list  {
    color: #ffffff;
}

.info-text {
    margin-bottom: 10px;
    color: #ffffff;
}

h5 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #ffffff;
}

.legal-text {
color: #6d6c6c;
}