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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #1c1c1c;
  color: #333;
}

/* Navbar */
header {
  background: #0F0F0F;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9EEA0E;
}
.logo a{
  text-decoration: none;
  color: #9EEA0E;
}

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

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #9EEA0E;
}

.btn-nav {
  background: #9EEA0E;
  color: #111 !important;
  padding: 8px 15px;
  border-radius: 5px;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: #000; /* osnovna crna boja */
}

/* Leva strana - slika */
.hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-image img {
  width: 90%;
  height: 90%;
  object-fit: contain; /* cela slika se vidi */
  border-radius: 15px;
}

/* Desna strana - tekst i dugme */
.hero .hero-content {
  flex: 1;
  font-size: 1.2rem;
  text-align: center;
  padding-left: 50px;
  color: #fff;
}

.hero-content .hero-icon {
  display: block;
  margin: 0 auto 1.5rem auto; /* centriranje + razmak ispod */
  
}


.btn {
  background: #9EEA0E;
  color: #111;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;


  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulse 1.5s infinite;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* Z-index za tekst da bude iznad slike */
.hero .hero-content > * {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    
  }
  .hero .hero-content {
    padding-left: 0;
  }

.hero-content .hero-icon {
    width: 100px;  /* smanjena veličina */
  }

  .hero .hero-image {
    width: 100%;
    height: auto;
    /* min-height: 250px; */
    margin-bottom: 1.5rem;
  }
}


/* Sections */
.section {
  padding: 70px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.features {
  background-color: #0F0F0F;
  color: #9EEA0E;
   /* background: url("CurvyLines.png") no-repeat center center/cover; */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: #1c1c1c;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 20px #9EEA0E, 0 0 40px rgba(158, 234, 14, 0.6);
}

/* ==== GALLERY SECTION ==== */

.gallery-section {
  background-color: #1c1c1c;
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #9EEA0E;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 1px; */
  border-radius: 15px;
  overflow: hidden;
}

/* Wide images */
.gallery-item.wide {
  grid-column: span 1;
}

/* Gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  /*border-radius: 15px; */
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;          /* visina je ograničena */
  object-fit: cover;    /* cela slika se vidi */
  background: #000;       /* crna pozadina iza slike */
  display: block;
  transition: transform 0.3s ease;
}


/* Overlay */

.overlay a {
  text-decoration: none;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

/* Text in center */
.overlay-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover effect */
.gallery-item:hover .overlay {
  background: rgba(0,0,0,0); /* uklanja zatamnjenje */
}

.gallery-item:hover img {
  transform: scale(1.05); /* lagano zumiranje */
}

.gallery-item:hover .overlay-text {
  border: 2px solid #32cd32;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
}


/* Sneak Peek */
.sneakpeek{
  background-color: #0F0F0F;
  color: #9EEA0E;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.image-grid img {
  width: 100%;
  /* border-radius: 15px; */
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}


/* ==== INFO SECTION ==== */


.info-section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background: url("CurvyLines.png") no-repeat center center/cover;
}

.info-section h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #9EEA0E;
}

/* Grid sa 3 diva */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 2.5rem;
}

.info-box {
  padding: 1rem;
  font-size: 1rem;
  color: #fff;
}

.info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Dugme */
.info-btn {
  display: inline-block;
  background: #9EEA0E;
  color: #000;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulse 1.5s infinite;
}

.info-btn:hover {
  transform: scale(1.05);
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



/* CTA */
.cta {
  background: #9EEA0E;
  color: #fff;
  padding: 80px 20px;
  /* border-radius: 20px; */
}

.cta h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 25px 20px;
  /* margin-top: 50px; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: #9EEA0E;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Animations */
.animate-fade {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

.animate-zoom {
  animation: zoomIn 1s ease forwards;
  opacity: 0;
}


.animate-pulse {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulse 1.5s infinite;
}

.animate-pulse:hover {
  background-color: #fff;
  color: #000;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}



