/*
 * Custom stylesheet for matching the provided design image
 */

/* Global styles */
body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  background-color: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: 0;
}

a {
  color: #fff;
}

a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Navigation */
.navbar-audioline {
  background-color: transparent;
  border: none;
  padding: 20px 0;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.navbar-audioline.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
}

/* Logo */
.navbar-brand {
  padding: 10px 15px;
  font-size: 36px;
  line-height: 36px;
}

.navbar-brand img {
  height:80px; margin-top:-15px; margin-left:-10px;
  width: auto; display: none;
}

/* Navigation menu */
.al-menu li a {
  color: #ffffff !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 15px 15px;
  text-transform: lowercase;
  font-weight: 300;
  transition: color 0.3s ease;
}

.al-menu li a:hover,
.al-menu li a:focus,
.al-menu li a:active {
  color: rgba(255, 255, 255, 0.7) !important;
  background-color: transparent;
}

/* Dropdown menu */
.dropdown-menu, .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Kontakt button */
.btn-kontakt {
  border: 2px solid #ffffff;
  border-radius: 500px;
  padding: 8px 25px !important;
  margin-top: 7px;
  transition: all 0.3s ease;
}

.btn-kontakt:hover,
.btn-kontakt:focus {
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* Mobile navigation */
.navbar-toggle {
  border: 1px solid #ffffff;
  margin-top: 15px;
}

.navbar-toggle .icon-bar {
  background-color: #ffffff;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 15px;
  padding-right: 15px;
  top: 120px;
}

.hero-content h1 {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  color: #ffffff;
}

/* Common styling for all animated sections */
.projekts-section,
.osvetlenie-section,
.ozvucenie-section,
.led-section,
.blog-section,
.about-section {
  position: relative;
  padding: 120px 0;
  background-color: #000000;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated Background */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: pulseGradient 8s infinite alternate;
  background: radial-gradient(circle at 30% 50%, rgba(81, 41, 123, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.blue-gradient {
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulseBlueGradient 10s infinite alternate;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: all 0.5s ease;
}

/* Shared shape positions and sizes */
.shape1 {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background-color: rgba(81, 41, 123, 0.6);
  animation: moveAndMorphShape1 15s infinite alternate;
}

.shape2 {
  top: 40%;
  left: 20%;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 173, 181, 0.3);
  animation: moveAndMorphShape2 12s infinite alternate;
}

.shape3 {
  top: 30%;
  left: 15%;
  width: 350px;
  height: 350px;
  background-color: rgba(255, 255, 255, 0.05);
  animation: moveAndMorphShape3 18s infinite alternate;
}

/* Blue themed shapes */
.blue-shape1 {
  top: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 149, 255, 0.3);
  animation: moveBlueShape1 15s infinite alternate;
}

.blue-shape2 {
  top: 40%;
  left: 15%;
  width: 350px;
  height: 350px;
  background-color: rgba(0, 204, 255, 0.2);
  animation: moveBlueShape2 18s infinite alternate;
}

.blue-shape3 {
  top: 30%;
  left: 10%;
  width: 250px;
  height: 250px;
  background-color: rgba(72, 209, 204, 0.15);
  animation: moveBlueShape3 20s infinite alternate;
}

/* Dynamic shapes */
.dynamic-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(80px);
  transition: all 0.5s ease;
}

.osvetlenie-section .dynamic-shape {
  opacity: 0.25;
}

/* Content Styling */
.projekts-section .container,
.osvetlenie-section .container,
.ozvucenie-section .container,
.led-section .container,
.blog-section .container,
.about-section .container {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: lowercase;
}

.section-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  padding: 0;
  text-transform: none;
}

.osvetlenie-section .section-title {
  margin-bottom: 60px;
}

.section-description {
  padding-top: 20px;
}

.section-description p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 15px;
}

.section-description ul {
  padding-left: 20px;
}
.section-description ul li {
  list-style-type: square; margin-bottom:5px;
}

/* Service Boxes */
.service-boxes {
  margin-top: 80px;
}

.service-box {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.ozvucenie-box {
  border-color: #8b41c9;
}

.osvetlenie-box {
  border-color: #00adb5;
}

.led-box {
  border-color: #ffffff;
}

.service-link {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ozvucenie-box .service-link {
  background-color: rgba(139, 65, 201, 0.2);
  border: 2px solid #8b41c9;
}

.osvetlenie-box .service-link {
  background-color: rgba(0, 173, 181, 0.2);
  border: 2px solid #00adb5;
}

.led-box .service-link {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #ffffff;
}

.service-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-transform: lowercase;
}

.service-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 20px;
}

/* Hover effects */
.service-box:hover {
  transform: translateY(-5px);
}

.ozvucenie-box .service-link:hover {
  background-color: rgba(139, 65, 201, 0.3);
}

.osvetlenie-box .service-link:hover {
  background-color: rgba(0, 173, 181, 0.3);
}

.led-box .service-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Gallery Styling */
.image-gallery {
  margin-bottom: 30px;
}

.gallery-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.small-image {
  height: 250px;
  margin-bottom: 20px;
}

.large-image {
  height: 350px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.03);
}

/* About Section */
.about-content {
  position: relative;
  z-index: 2;
}

.about-content > p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.6;
}

.about-content .section-description {
  margin-top: 30px;
}

/* Section specific styling */
.ozvucenie-section .section-content,
.osvetlenie-section .section-content {
  position: relative;
  z-index: 3;
}

.ozvucenie-section .small-image {
  margin-top: 20px;
}

/* Blog Section */
.blog-intro {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.blog-list-container {
  margin-top: 10px;
}

.blog-list-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-list-item:last-child {
  margin-bottom: 40px;
}

.blog-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.blog-item-link:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.blog-item-content {
  flex: 1;
}

.blog-list-item h3, .blog-list-item h3 a {
  font-size: 20px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.blog-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.blog-item-arrow {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.blog-item-link:hover .arrow-icon {
  transform: translateX(5px);
}

.blog-view-all {
  text-align: right;
  margin-top: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
}

/* References Section */
#gallery {
  height: auto;
}

.references-section, .bg-amen {
  position: relative;
}

.references-section::before, .bg-amen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}

.references-section .container {
  position: relative;
  z-index: 2;
}

.galhead {
  background: rgba(255,255,255,0.15);
}

/* Form Styling */
footer .form-control, input[type=text] {
  padding: 0;
  color: #fff !important;
}

.modern-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  box-shadow: none;
  color: #ffffff;
  padding: 5px 5px;
  margin-bottom: 20px;
  font-weight: 300;
  width: 100%;
}

.modern-input:focus {
  border-color: #ffffff;
  box-shadow: none;
  outline: none;
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-submit {
  background-color: #000;
  width: 100%;
  color: white;
  border: none;
  border-radius: 2px;
  padding: 10px 0px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-submit:hover {
  background-color: rgba(227, 227, 227, 0.45);
  color: white;
}

.contact-form textarea.modern-input {
  min-height: 35px;
  resize: vertical;
}

.copyright {
  margin-top: 30px;
}

/* Custom Preloader Animation */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.preloader-logo {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 0px;
}

.preloader-shapes-container {
  position: relative; top:-110px; right: 30px;
  width: 200px;
  height: 100px;
  margin: 0 auto 30px;
}

.preloader-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.preloader-shape.shape1 {
  width: 80px;
  height: 80px;
  background-color: rgba(81, 41, 123, 0.7);
  top: 10px;
  left: 20px;
  animation-name: preloaderShape1;
}

.preloader-shape.shape2 {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 173, 181, 0.6);
  top: 30px;
  left: 70px;
  animation-name: preloaderShape2;
}

.preloader-shape.shape3 {
  width: 70px;
  height: 70px;
  background-color: rgba(138, 43, 226, 0.5);
  top: 20px;
  left: 100px;
  animation-name: preloaderShape3;
}

.preloader-shape.shape4 {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 204, 255, 0.5);
  top: 40px;
  left: 50px;
  animation-name: preloaderShape4;
}

.preloader-progress {
  width: 200px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  animation: preloaderProgress 2s ease-in-out forwards;
}

/* Helper classes */
.visible-xl {
  display: none;
}

/* Animation Keyframes */
@keyframes pulseGradient {
  0% {
    opacity: 0.7;
    background-position: 0% 50%;
  }
  50% {
    opacity: 0.5;
    background-position: 100% 50%;
  }
  100% {
    opacity: 0.8;
    background-position: 0% 50%;
  }
}

@keyframes pulseBlueGradient {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes moveAndMorphShape1 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
    background-color: rgba(81, 41, 123, 0.6);
  }
  25% {
    transform: translate(50px, 30px) scale(1.2);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    background-color: rgba(106, 90, 205, 0.5);
  }
  50% {
    transform: translate(80px, -20px) scale(0.9);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: rgba(138, 43, 226, 0.5);
  }
  75% {
    transform: translate(40px, 60px) scale(1.1);
    border-radius: 60% 40% 30% 70% / 60% 40% 60% 40%;
    background-color: rgba(123, 104, 238, 0.6);
  }
  100% {
    transform: translate(70px, 40px) scale(1);
    border-radius: 40% 60% 40% 60% / 40% 60% 40% 60%;
    background-color: rgba(148, 0, 211, 0.5);
  }
}

@keyframes moveAndMorphShape2 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
    background-color: rgba(0, 173, 181, 0.3);
  }
  25% {
    transform: translate(-30px, 50px) scale(1.3);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    background-color: rgba(72, 209, 204, 0.3);
  }
  50% {
    transform: translate(-60px, -30px) scale(0.8);
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    background-color: rgba(0, 128, 128, 0.3);
  }
  75% {
    transform: translate(-20px, 70px) scale(1.2);
    border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
    background-color: rgba(32, 178, 170, 0.3);
  }
  100% {
    transform: translate(-50px, 20px) scale(1);
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    background-color: rgba(0, 206, 209, 0.3);
  }
}

@keyframes moveAndMorphShape3 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
  }
  25% {
    transform: translate(20px, -40px) scale(1.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    background-color: rgba(220, 220, 255, 0.06);
  }
  50% {
    transform: translate(70px, 10px) scale(0.9);
    border-radius: 60% 40% 40% 60% / 60% 30% 70% 40%;
    background-color: rgba(240, 248, 255, 0.04);
  }
  75% {
    transform: translate(30px, -50px) scale(1.2);
    border-radius: 30% 70% 40% 60% / 40% 60% 40% 60%;
    background-color: rgba(200, 200, 200, 0.08);
  }
  100% {
    transform: translate(50px, -20px) scale(1);
    border-radius: 50% 50% 30% 70% / 70% 30% 50% 50%;
    background-color: rgba(245, 245, 245, 0.05);
  }
}

@keyframes moveBlueShape1 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
    background-color: rgba(0, 149, 255, 0.3);
  }
  50% {
    transform: translate(40px, 20px) scale(1.1);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    background-color: rgba(0, 102, 204, 0.3);
  }
  100% {
    transform: translate(70px, -30px) scale(0.9);
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
    background-color: rgba(64, 133, 201, 0.3);
  }
}

@keyframes moveBlueShape2 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
    background-color: rgba(0, 204, 255, 0.2);
  }
  50% {
    transform: translate(-30px, 40px) scale(1.2);
    border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
    background-color: rgba(32, 178, 170, 0.25);
  }
  100% {
    transform: translate(-60px, 10px) scale(0.95);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    background-color: rgba(0, 255, 255, 0.2);
  }
}

@keyframes moveBlueShape3 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
    background-color: rgba(72, 209, 204, 0.15);
  }
  50% {
    transform: translate(50px, -20px) scale(1.15);
    border-radius: 30% 70% 40% 60% / 40% 60% 40% 60%;
    background-color: rgba(95, 158, 160, 0.15);
  }
  100% {
    transform: translate(20px, -50px) scale(0.9);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background-color: rgba(135, 206, 235, 0.15);
  }
}

@keyframes preloaderShape1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(10px, 10px) scale(1.1); opacity: 0.9; }
}

@keyframes preloaderShape2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-10px, 5px) scale(1.2); opacity: 0.8; }
}

@keyframes preloaderShape3 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(5px, -10px) scale(1.1); opacity: 0.7; }
}

@keyframes preloaderShape4 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-5px, -5px) scale(1.2); opacity: 0.7; }
}

@keyframes preloaderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Responsive styles */
@media (min-width: 767px) {
  .pt-60-xl {
    padding-top: 60px;
  }
  .mr-30-xl {
    max-width: 420px;
  }
  .visible-xl {
    display: block;
  }
  .al-menu li:nth-last-child(1) {
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  .hero-content h1,
  .section-title {
    font-size: 60px;
  }

  .service-boxes {
    margin-top: 60px;
  }

  .small-image, .large-image {
    height: 220px;
  }

  .projekts-section,
  .osvetlenie-section,
  .ozvucenie-section,
  .led-section,
  .blog-section,
  .about-section {
    padding: 80px 0;
  }

  .about-content > p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .navbar-audioline {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 0px 0;
  }

  .al-menu {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar-audioline .btn-kontakt {
    margin: 0px 15px 15px 15px;
  }

  .hero-content h1,
  .section-title {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-description {
    padding-top: 20px;
  }

  .order-md-2 {
    order: 0; /* Reset order on mobile */
  }

  .section-content {
    margin-bottom: 40px;
  }

  .about-content > p {
    font-size: 16px;
  }

  .blog-list-item h3 {
    font-size: 16px;
  }

  .blog-item-link {
    padding: 15px 0;
  }

  .blog-view-all {
    text-align: center;
  }

  .navbar-collapse.collapse.in {
    background: rgba(0, 0, 0, 1);
  }

  .navbar-right {
    background: #000;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .service-boxes {
    margin-top: 40px;
  }

  .small-image, .large-image {
    height: 180px;
  }

  .navbar-brand img {
    height:80px; margin-top:-15px; margin-left:-25px;
    /* display: block !important; */
  }

  .al-menu li a {
    padding: 8px 0px;
  }

  .navbar-header {
    width: auto;
  }

  .navbar-toggle {
    margin: 10px 15px 10px 0px !important;
  }
}

.hero-content h1 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s; /* Delayed animation */
}

/* Animation class that will be added after preloader disappears */
.hero-content h1.animate-hero,
.hero-content p.animate-hero-text {
  opacity: 1;
  transform: translateY(0);
}

/* Menu animation - initial state */
.al-menu li {
  opacity: 0;
}

/* Menu item animation classes */
.al-menu li.animate-menu-item {
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Text hover color animation */
.hero-content h1,
.hero-content p,
.section-title,
.section-subtitle,
.section-description p,
.about-content p,
.service-title,
.service-description {
  transition: color 0.5s ease, opacity 0.5s ease;
  color: #ffffff; /* Base color is white */
}

/* Very subtle theme color tints on hover - just a hint of color */
[data-theme="purple"] .text-animate:hover {
  color: rgba(255, 255, 255, 0.9); /* Still mostly white */
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.15); /* Very subtle purple glow */
}

[data-theme="blue"] .text-animate:hover {
  color: rgba(255, 255, 255, 0.9); /* Still mostly white */
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.15); /* Very subtle blue glow */
}

[data-theme="teal"] .text-animate:hover {
  color: rgba(255, 255, 255, 0.9); /* Still mostly white */
  text-shadow: 0 0 10px rgba(0, 173, 181, 0.15); /* Very subtle teal glow */
}

/* Default theme (for sections without data-theme) */
.text-animate:hover {
  opacity: 0.9; /* Default is just a slight opacity change */
}

/* Hero section specific with very subtle purple tint */
.hero-section .hero-content:hover h1 {
  color: rgba(252, 250, 255, 0.95); /* Almost white with very slight purple tint */
  text-shadow: 0 0 15px rgba(138, 43, 226, 0.1); /* Very subtle purple glow */
}

.hero-section .hero-content:hover p {
  color: rgba(252, 250, 255, 0.9); /* Almost white with very slight purple tint */
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.1); /* Very subtle purple glow */
}

/* Ozvucenie section with very subtle purple tint */
#ozvucenie .section-content:hover .section-title {
  color: rgba(252, 250, 255, 0.95); /* Almost white with very slight purple tint */
  text-shadow: 0 0 15px rgba(138, 43, 226, 0.1); /* Very subtle purple glow */
}

#ozvucenie .section-description:hover p {
  color: rgba(252, 250, 255, 0.9); /* Almost white with very slight purple tint */
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.1); /* Very subtle purple glow */
}

/* Osvetlenie section with very subtle blue tint */
#osvetlenie .section-content:hover .section-title {
  color: rgba(250, 252, 255, 0.95); /* Almost white with very slight blue tint */
  text-shadow: 0 0 15px rgba(0, 102, 204, 0.1); /* Very subtle blue glow */
}

#osvetlenie .section-description:hover p {
  color: rgba(250, 252, 255, 0.9); /* Almost white with very slight blue tint */
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.1); /* Very subtle blue glow */
}

/* LED section with very subtle teal tint */
#led-technologie .section-content:hover .section-title {
  color: rgba(250, 255, 255, 0.95); /* Almost white with very slight teal tint */
  text-shadow: 0 0 15px rgba(0, 173, 181, 0.1); /* Very subtle teal glow */
}

#led-technologie .section-description:hover p {
  color: rgba(250, 255, 255, 0.9); /* Almost white with very slight teal tint */
  text-shadow: 0 0 10px rgba(0, 173, 181, 0.1); /* Very subtle teal glow */
}

/* Service boxes - very subtle theme color hints */
.ozvucenie-box:hover .service-title {
  color: rgba(252, 250, 255, 0.95); /* Almost white with very slight purple tint */
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.1); /* Very subtle purple glow */
}

.ozvucenie-box:hover .service-description {
  color: rgba(252, 250, 255, 0.9); /* Almost white with very slight purple tint */
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.1); /* Very subtle purple glow */
}

.osvetlenie-box:hover .service-title {
  color: rgba(250, 252, 255, 0.95); /* Almost white with very slight blue tint */
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.1); /* Very subtle blue glow */
}

.osvetlenie-box:hover .service-description {
  color: rgba(250, 252, 255, 0.9); /* Almost white with very slight blue tint */
  text-shadow: 0 0 10px rgba(0, 102, 204, 0.1); /* Very subtle blue glow */
}

.led-box:hover .service-title {
  color: rgba(250, 255, 255, 0.95); /* Almost white with very slight teal tint */
  text-shadow: 0 0 10px rgba(0, 173, 181, 0.1); /* Very subtle teal glow */
}

.led-box:hover .service-description {
  color: rgba(250, 255, 255, 0.9); /* Almost white with very slight teal tint */
  text-shadow: 0 0 10px rgba(0, 173, 181, 0.1); /* Very subtle teal glow */
}

#cookie-button .btn {
  background-color: rgba(255, 255, 255, 0.2) !important; margin: 0; border-radius: 1px !important;
}
#cookie-button .btn img, .grecaptcha-badge {
  opacity: 0.4 !important;
}
#cookie-button {
    bottom: 10px !important;
    left: 0px !important;
}
