@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
    background:
        linear-gradient(217deg, #aff9f8, rgb(255 0 0 / 0%) 70.71%),
        linear-gradient(127deg, #b8c8e9, rgb(0 255 0 / 0%) 70.71%),
        linear-gradient(336deg, #ffffff, rgb(0 0 255 / 0%) 70.71%);
    color: #0a2766;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

/*################# _menu/menu.php ################# */
.top-menu {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    padding: 1em 1em 0 1em;
    border-bottom-left-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    background-color: rgba(255, 255, 255, 0.250);
    display: flex;
    flex-wrap: wrap;
}

.top-menu a {
    margin-left: 1em;
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
    transition: color 0.3s;
    border-radius: 10px;
    padding: 6px;
}

.top-menu form {
    margin-left: 1em;
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
    transition: color 0.3s;
    border-radius: 10px;
    padding: 6px; 
}

.top-menu a:hover {
    color: #b8c8e9;
}

.lang_selector {
    border: none;
    background: none;
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    transform: translate(42px, -10px);
    margin-top: 6px;
}

/* DROPDOWN MENU

/* Style The Dropdown Button */
.dropbtn {
  background-color: #4caf4f00;
  color: #0a2766;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
}

.dropbtn:hover {
    color: #b8c8e9;
}

.drop-sign {
    margin-left: 5px;
    transform: translateY(1px);
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  transform: translateX(-70px);
  border-radius: 12px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/*################# _menu/footer.php ################# */

.footer {
    width: 100%;
    padding: 1em 2em;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 0.85em;
    color: #444;
    text-align: center;
    bottom: 0;
    left: 0;
}

@media (max-width: 600px) {
    .footer {
        background-color: rgba(117, 117, 117, 0.12);
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    opacity: 0.6;
}

#unsub_newsletter {
    color: #007bff;
}

#unsub_newsletter:hover {
    color: #7a7a7a6b;
    cursor: pointer;
}

/*################# bubble.js ################# */

.orb {
    position: fixed;
    z-index: 0; 
    pointer-events: none;
    animation: spin 2s linear infinite;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-left: 0;
    margin-right: 0;
    border-radius: 50%;
    position: fixed;
    box-shadow: 
    inset 0 0 50px #fff,
    inset 20px 0 60px violet,
    inset -20px 0 60px blue,
    inset 20px 0 300px violet,
    inset -20px 0 300px blue,
    0 0 30px #fff,
    -10px 0 40px violet,
    10px 0 40px blue
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes homeElementPop {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}