:root {
    --primary-color: #0052FF;
    --secondary-color: #0A0A0A;
    --text-color: #fff;
    --button-color: #ff7a00;
    --opposite-text-color: #EAEAEA;
    --bg-color: #000;
    --input-bg-color: #bfbfbf;
    --glass-bg: rgba(0, 0, 0, 0.7);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 25px;
    --footer-bg: #000;
    --footer-text: rgba(0, 0, 0, 0.56);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('/static/font/AvenirNextCyr-Regular.ttf') format('opentype');
}

body, html {
    font-family: "AvenirNext", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-width: 100%;
    height: auto;
}

body::-webkit-scrollbar {
    width: 0px;
}

.header {
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

input:not([type="radio"]):not([type="search"]):not([type="submit"]):not([type="checkbox"]):not([id*="otp"]), textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: var(--input-bg-color);
  border-radius: 4px;
  resize: vertical;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px 0px 0px;
    max-width: 90vw;
    gap: 450px;
}

.nav__logo {
    width: 15%;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 4rem 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact {
  flex: 1 1 300px;
  font-size: 1rem;
}

.footer-map {
  flex: 1 1 350px;
  max-width: 500px;
}

.footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer p {
  margin-bottom: 1rem;
}

.lowest_footer {
  background: white;
  color: black;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

.footer-socials a,
.footer-links a {
  margin-right: 1rem;
  color: inherit;
  text-decoration: none;
}

.footer-socials a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
    background-color: var(--input-bg-color) !important;
}

.select2-container--default .select2-results__option--disabled {
    color: #999 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ff7a00 !important;
    color: #000 !important;
}

li {
    color: #000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-map iframe {
    height: 250px;
  }

  .lowest_footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav__logo {
    width: 50%;
  }
}
