@font-face {
  font-family: "Garde";
  src: url("../fonts/Garde.ttf");
}
@font-face {
  font-family: "VWHead-Bold";
  src: url("../fonts/VWHead-Bold.otf");
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(360deg, #000000, #073aca);
  color: white;
  text-align: center;
  padding: 0;
  margin: 0;
  animation: fadeIn 1s ease-in-out;
  min-height: 100vh;
}
.font-VW {
  font-family: VWHead-Bold;
}
.font-Garde {
  font-family: Garde, "Times New Roman", Times, serif;
}
.links a {
  color: wheat;

  font-weight: bold;
  transition: color 1s;
  transition: transform 1s;
  text-decoration: underline;
}
.links a:hover {
  color: white;
  transform: scale(1.15);
}
.nav-links a {
  text-decoration: none;
  font-weight: bold;
  transition: color 1s;
  transition: transform 1s;
}
.nav-links a:hover {
  transform: scale(1.15);
}
.fade-in {
  opacity: 1;
  animation: fadeEffect 5s ease-in-out forwards; /* Animace */
}
/* U path nastavujeme přechod pouze pro fill */
.my-svg .my-path {
  transition: fill 1s ease;
  pointer-events: none;
  fill: wheat;
}

.my-svg:hover .my-path {
  fill: #5b97ff;
}

@keyframes fadeEffect {
  to {
    opacity: 2; /* Konečná průhlednost */
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.container {
  min-height: 60vh;
  max-width: 800px;
  margin: 6rem auto 3rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1rem 1rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
}
.service {
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
  cursor: default;
}
.service:nth-of-type(1) {
  animation: slideInLeft 2s ease-out;
}
.service:nth-of-type(2) {
  animation: slideInRight 2s ease-out;
}
.service:nth-of-type(3) {
  animation: slideInLeft 2s ease-out;
}
.service:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.3);
}
.service ul {
  list-style: none;
  padding: 0;
}

.service li {
  margin: 8px 0;
}
#email-input,
#text-input {
  color: white !important;
  /* background-color: #565382 !important; */
  background-color: #4a5c9a !important;
}

/* floating button contact us */
.floating-button {
  position: fixed;
  bottom: 5px;
  right: 5px;
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
}


/* scroll button */
#scrollBtn {
  position: fixed;
  bottom: 65px;
  right: 5px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  opacity: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
}
#scrollBtn:hover {
  background-color: #0056b3;
}
section {
  margin-bottom: 1rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0px 15px rgba(255, 69, 0, 0.5);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0px 30px rgba(255, 69, 0, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0px 15px rgba(255, 69, 0, 0.5);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
}

/* chat window */
#chatWindow {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 18px;
  width: 350px;
  background: rgb(14, 8, 54);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  max-height: 500px;
  overflow-y: auto;
}

#chatWindow.show {
  display: block;
  transform: scale(1);
  opacity: 1;
}

#chatWindow h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

#chatWindow input,
#chatWindow textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#chatWindow .chat-buttons {
  display: flex;
  justify-content: space-between;
}

#chatWindow .chat-buttons button {
  width: 45%;
}
#confirmationMessage {
  display: none;
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -70%);
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgb(0, 0, 0);
  animation: showConfirmation 2s ease-out forwards;
}
.valid-text {
  display: none;
  position: absolute;
  bottom: -1rem;
  color: #ff4400;
  background-color: rgba(250, 235, 215, 0.88);
  border-radius: 1rem;
}
#close-btn {
  position: absolute;
  top: 0rem;
  right: 0rem;
}
