:root {
  --primary-color: #ffdd00;
  --secondary-color: #0056b3;
  --background-color: #fffae5;
  --header-bg: #ffdd00;
  --footer-bg: #0056b3;
  --text-color: #222;
  --btn-bg: #ffdd00;
  --btn-hover-bg: #f4c400;
  --nav-hover-bg: #ffcc00;
  --font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #444;
  color: #ffcc00;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
}

.header_div {
  background: var(--header-bg);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  width: 120px;
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: rotate(-10deg) scale(1.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #ffeb3b;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
}

nav ul li a:hover {
  background: var(--btn-hover-bg);
  color: #000;
  transform: scale(1.1);
}

section iframe {
  margin-top: 100px;
  width: 100%;
  height: 90vh;
  border: none;
  border-radius: 10px;
}

.cookies-section {
  position: fixed;
  bottom: 10%;
  right: 5%;
  background: var(--primary-color);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  animation: popUp 0.5s ease 1s forwards;
  text-align: center;
}

@keyframes popUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.cookies-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cookies-section p {
  font-size: 1.2rem;
  color: #000;
  font-weight: bold;
}

.cookies-section button {
  background: var(--secondary-color);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookies-section button:hover {
  background: var(--btn-hover-bg);
  color: #000;
  transform: scale(1.1);
}

.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid var(--primary-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: rotate(10deg);
}

.footer-contact,
.footer-hours {
  flex: 1;
  text-align: center;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--btn-hover-bg);
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 2px solid var(--primary-color);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .cookies-section {
    bottom: 5%;
    right: 5%;
  }
}

.hero_section {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffdd00, #ffeb3b);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero_container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 20px;
}

.hero_text {
  max-width: 600px;
  text-align: left;
  animation: slideInLeft 1s ease-in-out;
}

.hero_text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #0056b3;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero_text p {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #222;
}

.hero_button {
  display: inline-block;
  padding: 12px 30px;
  background: #0056b3;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

.hero_button:hover {
  background: #003366;
  transform: scale(1.1);
}

.hero_image {
  max-width: 700px;
  animation: bounceIn 1.5s ease-in-out;
}

.hero_image img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.hero_image img:hover {
  transform: scale(1.1) rotate(-5deg);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero_container {
    flex-direction: column;
    text-align: center;
  }

  .hero_text {
    text-align: center;
  }

  .hero_image {
    max-width: 80%;
  }
}

.about_section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffdd00, #ffeb3b);
  color: #222;
  text-align: center;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about_text {
  max-width: 600px;
  text-align: left;
  animation: slideInLeft 1s ease-in-out;
}

.about_text h2 {
  font-size: 3rem;
  color: #0056b3;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about_text p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about_text p strong {
  color: #ff3e6b;
}

.about_image {
  max-width: 500px;
  animation: bounceIn 1.5s ease-in-out;
}

.about_image img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.about_image img:hover {
  transform: scale(1.1) rotate(5deg);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .about_container {
    flex-direction: column;
    text-align: center;
  }

  .about_text {
    text-align: center;
  }

  .about_image {
    max-width: 80%;
  }
}

.advantages_section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffdd00, #ffeb3b);
  color: #222;
  text-align: center;
}

.advantages_container {
  max-width: 1200px;
  margin: 0 auto;
}

.advantages_title {
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #0056b3;
}

.advantages_intro {
  font-size: 1.3rem;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.advantages_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.advantage_item {
  background: rgba(255, 255, 255, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.advantage_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.4);
}

.advantage_item img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

.advantage_item img:hover {
  transform: scale(1.1);
}

.advantage_item h3 {
  font-size: 1.6rem;
  color: #0056b3;
  margin-bottom: 10px;
}

.advantage_item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advantages_list {
    grid-template-columns: 1fr;
  }
}

.parallax_section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url("../assets/images/minions_xxx.jpg") no-repeat center
    center/cover;
  z-index: -1;
  transition: transform 0.2s ease-out;
}

.parallax_content {
  position: relative;
  z-index: 2;
  background: rgba(255, 221, 0, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

.parallax_content h2 {
  font-size: 3rem;
  color: #0056b3;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.parallax_content p {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
}

.parallax_button {
  display: inline-block;
  padding: 12px 30px;
  background: #0056b3;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

.parallax_button:hover {
  background: #003366;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .parallax_content {
    padding: 30px;
  }

  .parallax_content h2 {
    font-size: 2.5rem;
  }

  .parallax_content p {
    font-size: 1.2rem;
  }

  .parallax_button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

.contact_section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffdd00, #ffeb3b);
  color: #222;
  text-align: center;
}

.contact_container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact_title {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #0056b3;
}

.contact_intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_group {
  text-align: left;
}

.form_group label {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #0056b3;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  color: #222;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #0056b3;
  background: rgba(255, 255, 255, 0.8);
}

.contact_button {
  padding: 12px 30px;
  background: #0056b3;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

.contact_button:hover {
  background: #003366;
  transform: scale(1.1);
}

.form_success {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  color: #222;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact_container {
    width: 100%;
    padding: 30px;
  }
}
