/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 90px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: flex; 
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  overflow: visible;
}

/* VIDEO POZADINA ZA HEADER */
.header-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
}

/* KONTEJNER ZA HEADER SADRŽAJ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LOGO */
.logo img { height: 90px; width: 90px; }

/* LINKOVI MENIJA DESNO */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 2;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

/* Efekat kruga */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.nav-links a:hover {
  color: #d4a373;
  text-shadow: 0 0 10px #d4a373, 0 0 20px #c19a6b;
}

/* Kada se klikne ili hoveruje */
.nav-links a:hover::after,
.nav-links a:active::after {
  width: 120%;
  height: 120%;
  opacity: 0;
  animation: pulse 0.6s ease;
}

/* Animacija kruga */
@keyframes pulse {
  0% { width: 0; height: 0; opacity: 0.7; }
  50% { width: 180%; height: 180%; opacity: 0.3; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* GLOBALNI VIDEO U POZADINI */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.35;
  max-width: 100vw;
}

/* ukloni slike pozadine iz sekcija jer sad imamo video */
.section-bg { background: none !important; }

/* MENU TOGGLE */
.menu-controls {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  display: none;
  cursor: pointer;
}

.close-menu { 
  display: none;
  background: none;
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.menu-backdrop {
  display: none;
}

/* Mobile icons */
.mobile-icons {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
}
.mobile-icons img { height: 32px; width: 32px; }
.mobile-icons i { font-size: 28px; color: #1a8f37; }

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 110px 20px 0;
  background: none !important;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.hero-title { 
  font-size: 3.5rem; 
  font-weight: 400;
  font-family: 'Alfa Slab One', cursive;
  color: #ffffff;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
  width: auto;
  overflow: visible;
  white-space: normal;
  border-right: none;
}
.hero-title .neon { 
  color: #ffffff;
  text-shadow: 0 0 10px #8b6f47, 0 0 20px #6b5237, 0 0 30px #5a4329, 0 0 40px #4a3520;
}

.hero-sub {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(45deg, #d4a373, #c19a6b, #8b6f47);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(212, 163, 115, 0.5);
}

.hero .cta-btn {
  color: #ffffff;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.cta-btn:hover {
  background: linear-gradient(45deg, #c19a6b, #b8860b, #8b6914);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.8);
}

/* NEON EFEKAT */
.neon-text {
  color: #ffffff;
  text-shadow: 0 0 5px #19d719, 0 0 10px #3eab22, 0 0 20px #0e0e0c,
               0 0 40px #183e16, 0 0 80px #21521b;
  animation: flicker 2s infinite;
}

/* Override neon effects for hero title */
.hero-title.neon-text {
  color: #ffffff;
  text-shadow: 0 0 10px #8b6f47, 0 0 20px #6b5237, 0 0 30px #5a4329, 0 0 40px #4a3520;
  animation: none;
}

@keyframes flicker {
  0%,19%,21%,23%,25%,54%,56%,100% { opacity: 1; }
  20%,24%,55% { opacity: 0.5; }
}

/* Desktop-only animations for home page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typing animation for hero title */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinkCursor {
  from, to {
    border-color: #ffffff;
  }
  50% {
    border-color: transparent;
  }
}

/* SECTIONS */
.section-bg {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  color: rgb(248, 244, 244);
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  animation: fadeInSection 1.2s ease-out forwards;
}

.section-bg:nth-of-type(1) {
  animation-delay: 0.2s;
}

.section-bg:nth-of-type(2) {
  animation-delay: 0.4s;
}

.section-bg:nth-of-type(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 
.section-bg h2 { 
  color: #ffffff; 
  margin-top: 70px; 
  margin-bottom: 20px; 
  font-size: 2.5rem;
  line-height: 1.3;
  font-family: Arial, sans-serif;
  text-transform: none;
}

/* Enhanced scroll-triggered animations for O nama section - desktop only */
#onama h2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#onama.animate-in h2 {
  opacity: 1;
  transform: translateX(0);
  animation: slideInFromLeft 1s ease-out 0.3s forwards;
}

#onama p:nth-of-type(1) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#onama.animate-in p:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

#onama p:nth-of-type(2) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#onama.animate-in p:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

#onama p:nth-of-type(3) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#onama.animate-in p:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

#onama .cta-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#onama.animate-in .cta-btn {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-bg p { 
  padding: 0;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 12px auto;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.510);
  backdrop-filter: blur(7px);
  border-radius: 8px;
}

.section-bg a {
  color: #00ff41;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-bg .cta-btn {
  color: #ffffff;
}

.section-bg a:hover {
  color: #d4a373;
  text-decoration: underline;
  text-shadow: 0 0 10px #d4a373, 0 0 20px #c19a6b, 0 0 30px #b8860b;
}

#kontakt p a {
  color: #ffffff;
}

/* Enhanced scroll-triggered animations for Kontakt section - desktop only */
#kontakt h2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#kontakt.animate-in h2 {
  opacity: 1;
  transform: translateX(0);
  animation: slideInFromLeft 1s ease-out 0.3s forwards;
}

#kontakt p:nth-of-type(1) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#kontakt.animate-in p:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

#kontakt p:nth-of-type(2) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#kontakt.animate-in p:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

#kontakt p:nth-of-type(3) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#kontakt.animate-in p:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

/* SHOP GRID */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.shop-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.shop-item:hover {
  transform: rotateY(180deg);
}
.shop-item img {
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
}
.shop-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  transition: transform 0.6s ease;
}

.shop-item:hover .shop-title {
  transform: rotateY(0deg);
}

/* GALERIJA */
.gallery-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.slider-container {
  flex: 1;
  min-width: 250px;
  max-width: 450px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container:hover { 
  transform: scale(1.05); 
}
.slider-track { 
  display: flex; 
  transition: transform 0.6s ease-in-out;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}
.slide { 
  flex: 0 0 100%; 
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.slide img, .slide video {
  width: 100%;
  max-width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin: 0;
  padding: 0;
  display: block;
}
.slide video { cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.slide video:hover { transform: scale(1.02); box-shadow: 0 0 15px rgba(193,154,107,0.5); }

/* Strelice */
.nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); border: none; color: #fff; font-size: 24px; padding: 8px 12px; cursor: pointer; border-radius: 50%; }
.prev { left: 10px; }
.next { right: 10px; }

/* FOOTER */
footer {
  text-align: center;
  padding: 15px 20px;
  background: #111;
  font-size: 14px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

footer a {
  color: #00ff41;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d4a373;
  text-decoration: underline;
  text-shadow: 0 0 10px #d4a373, 0 0 20px #c19a6b, 0 0 30px #b8860b;
}

.footer-link {
  color: burlywood !important;
}

.footer-link:hover {
  color: #c19a6b !important;
  text-shadow: 0 0 10px #d4a373, 0 0 20px #c19a6b, 0 0 30px #b8860b;
}

.footer-instagram-icon {
  width: 20px;
  vertical-align: middle;
}

/* Animacije fade-in */
.fade-in { animation: fadeInUp 1.5s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Bounce animacija za shop */
.bounce { animation: bounceIn 1s ease; }
@keyframes bounceIn { 0% { transform: scale(0.5); opacity: 0; } 60% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(1); } }

/* RESPONSIVE */
@media (max-width: 768px) {
  #background-video {
    display: none;
  }
  
  body {
    background: url("images/pocetna.jpg") no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
  }
  
  .header-video {
    height: 75px;
    max-width: 100vw;
  }
  
  header {
    max-width: 100vw;
    padding: 0 12px;
    height: 75px;
    box-sizing: border-box;
  }
  
  .logo img {
    height: 60px;
    width: 60px;
    content: url('images/logogg-removebg-preview.png');
  }
  
  .menu-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1002;
    position: relative;
  }
  
  .menu-toggle { 
    display: block;
    background: none;
    border: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    transform: scaleX(1.3) scaleY(0.8);
    letter-spacing: 1px;
  } 
  
  .close-menu { 
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    transform: scaleX(1.2) scaleY(0.9);
  }
  
  .close-menu:hover {
    color: #c19a6b;
  }
  
  /* Show close button when menu is open */
  .menu-controls.menu-open .close-menu {
    display: block;
  }
  
  /* Hide hamburger when menu is open */
  .menu-controls.menu-open .menu-toggle {
    display: none;
  }
  
  /* Backdrop overlay for closing menu */
  .menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    cursor: pointer;
  }
  
  .menu-backdrop.active {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 250px;
    height: 100vh;
    background: #000;
    padding: 25px 12px 12px;
    z-index: 1001;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }
  
  .nav-links.open { 
    display: flex !important;
  }
  
  .nav-links a {
    padding: 10px 8px;
    font-size: 16px;
    font-family: 'Nabla', cursive;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
  }
  
  .mobile-icons { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-icons img {
    height: 28px;
    width: 28px;
    content: url('images/logogg-removebg-preview.png');
  }
  
  .mobile-icons i {
    font-size: 24px;
  }
  
  /* Hero responsive */
  .hero {
    padding: 95px 20px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    padding: 0;
    line-height: 1.3;
    animation: none !important;
    overflow: visible;
    white-space: normal;
    border-right: none;
    max-width: 100%;
  }
  
  .hero-sub {
    font-size: 0.95rem;
    padding: 15px 20px;
    margin: 15px auto;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    border-radius: 8px;
    box-sizing: border-box;
    max-width: 90%;
    animation: none !important;
  }
  
  .hero .cta-btn {
    animation: none !important;
  }
  
  /* Sections responsive */
  .section-bg {
    padding: 40px 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    animation: none !important;
    opacity: 1;
  }
  
  .section-bg h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0;
    line-height: 1.3;
  }
  
  .section-bg p {
    font-size: 0.9rem;
    padding: 15px 20px;
    margin: 12px 0;
    line-height: 1.6;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.473);
    backdrop-filter: blur(7px);
    border-radius: 8px;
    box-sizing: border-box;
  }

  /* Disable O nama animations in tablet version */
  #onama h2,
  #onama p,
  #onama .cta-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  #onama.animate-in h2,
  #onama.animate-in p,
  #onama.animate-in .cta-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable Kontakt animations in tablet version */
  #kontakt h2,
  #kontakt p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  #kontakt.animate-in h2,
  #kontakt.animate-in p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Gallery responsive */
  .gallery-section {
    padding: 0 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .gallery-container { 
    flex-direction: column;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 15px;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }
  
  .slider-container {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
  }
  
  #imageSlider,
  #videoSlider {
    max-width: 180px;
    width: 100%;
    overflow: visible;
  }
  
  .slider-track {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    overflow: visible;
  }
  
  .slide {
    margin: 0;
    padding: 0;
    border-radius: 12px;
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: visible;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .slide img, .slide video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 250px !important;
    min-height: 180px !important;
    margin: 0;
    padding: 0;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Shop responsive */
  .shop-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .shop-item {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s ease;
  }

  .shop-item:hover {
    transform: rotateY(180deg);
  }

  .shop-item img {
    height: 250px;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
  }

  .shop-item:hover img {
    transform: rotateY(180deg);
  }

  .shop-title {
    font-size: 1.2rem;
    bottom: 15px;
    left: 15px;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: transform 0.6s ease;
  }

  .shop-item:hover .shop-title {
    transform: rotateY(0deg);
  }
  
  /* CTA button responsive */
  .cta-btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }
  
  /* Footer responsive */
  footer {
    padding: 15px 20px;
    font-size: 12px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-link {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 30px #00ff41;
  }
  
  .footer-link:hover {
    color: #4cff6e !important;
    text-shadow: 0 0 15px #4cff6e, 0 0 25px #4cff6e, 0 0 35px #4cff6e;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
    padding: 0;
    line-height: 1.3;
    font-weight: normal;
    color: #ffffff;
    text-shadow: none;
    animation: none !important;
    overflow: visible;
    white-space: normal;
    border-right: none;
    max-width: 100%;
  }
  
  .hero-title .neon {
    color: #ffffff;
    text-shadow: none;
  }
  
  .hero-title.neon-text {
    color: #ffffff;
    text-shadow: none;
    animation: none;
  }
  
  .hero-sub {
    font-size: 0.85rem;
    font-weight: normal;
    padding: 12px 15px;
    margin: 12px auto;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.521);
    backdrop-filter: blur(7px);
    border-radius: 8px;
    box-sizing: border-box;
    max-width: 90%;
    animation: none !important;
  }
  
  .section-bg {
    padding: 30px 15px;
    width: 100%;
    box-sizing: border-box;
    animation: none !important;
    opacity: 1;
  }
  
  .section-bg h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0;
    line-height: 1.3;
    font-family: 'Nabla', cursive;
    text-transform: uppercase;
  }
  
  .section-bg p {
    font-size: 0.85rem;
    padding: 12px 15px;
    margin: 10px 0;
    line-height: 1.5;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.510);
    backdrop-filter: blur(7px);
    border-radius: 8px;
    box-sizing: border-box;
  }

  /* Disable O nama animations in extra small version */
  #onama h2,
  #onama p,
  #onama .cta-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  #onama.animate-in h2,
  #onama.animate-in p,
  #onama.animate-in .cta-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable Kontakt animations in extra small version */
  #kontakt h2,
  #kontakt p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  #kontakt.animate-in h2,
  #kontakt.animate-in p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .shop-item {
    position: relative;
    margin-bottom: 20px;
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    overflow: hidden;
  }

  .shop-item:hover {
    transform: none !important;
  }

  .shop-item img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    backface-visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .shop-item:hover img {
    transform: none !important;
  }
  
  .shop-title {
    position: absolute;
    font-size: 0.75rem;
    bottom: 10px;
    left: 10px;
    padding: 5px 8px;
    margin: 0;
    font-family: Arial, sans-serif;
    text-transform: none;
    color: #ffffff;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .shop-item:hover .shop-title {
    transform: none !important;
  }

  .shop-item.bounce {
    animation: none !important;
  }
  
  .cta-btn {
    font-size: 11px;
    padding: 8px 14px;
    margin-top: 12px;
    margin-bottom: 8px;
    display: inline-block;
    background: linear-gradient(45deg, #00ff41, #4cff6e, #24f02e);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
  }
  
  .cta-btn:hover {
    background: linear-gradient(45deg, #4cff6e, #24f02e, #00ff41);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
  }
  
  .slide {
    margin: 0;
    padding: 0;
    border-radius: 12px;
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: visible;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .slide img, .slide video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 250px !important;
    min-height: 180px !important;
    margin: 0;
    padding: 0;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .slider-container {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 180px;
    overflow: visible;
  }
  
  .slider-track {
    overflow: visible !important;
  }
  
  #imageSlider,
  #videoSlider {
    max-width: 180px;
    width: 100%;
    overflow: hidden;
  }
  
  .slider-track {
    width: 100%;
    display: flex;
    overflow: hidden;
  }
  
  .gallery-container {
    align-items: center;
    justify-content: center;
  }
  
  footer {
    max-width: 180px;
  }
  
  .cta-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .gallery-section {
    padding: 0 15px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .gallery-container {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 10px;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }
  
  .slider-container {
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 180px;
  }
  
  #imageSlider,
  #videoSlider {
    max-width: 180px;
    width: 100%;
    overflow: hidden;
  }
  
  .slider-track {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  
  .slide {
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .shop-grid {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  header {
    padding: 0 10px;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .hero {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .logo img {
    height: 60px;
    width: 60px;
    content: url('images/logogg-removebg-preview.png');
  }
  
  .mobile-icons img {
    content: url('images/logogg-removebg-preview.png');
  }
  
  footer {
    padding: 10px 15px;
    font-size: 11px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  footer a {
    color: #00ff41 !important;
  }
  
  footer a:hover {
    color: #4cff6e !important;
  }
  
  .footer-link {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 30px #00ff41;
  }
  
  .footer-link:hover {
    color: #4cff6e !important;
    text-shadow: 0 0 15px #4cff6e, 0 0 25px #4cff6e, 0 0 35px #4cff6e;
  }
}

/* Prefer-reduced-motion: smanji animacije korisnicima koji to traže */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
