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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: white;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('pozadina\ 2.jpg') no-repeat center/cover;
}

.logo {
  width: 500px;
  margin-bottom: 20px;
}

.hero h1 {
  
  margin-right: 100%;
  font-size: 150px;
  font-weight: bold;
}

.highlight {
  color: #ff00ff;
}

.about {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 40px 20px;
  max-width: 800px;
}

.about h2 {
  text-align: center;
  font-size:50px;
  margin-top: 5%;
  margin-bottom: 50px;
  color: #ff00ff;
  
}

.about p {
  text-align: justify;
}

.salon {
  background: url('pozadina\ test\ 2.jpg') no-repeat center/cover;
}
.image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1; /* kvadrat */
  background-color: #ccc;
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.item {
  aspect-ratio: 1 / 1;
  background-color: #ccc;
  border-radius: 8px;
}



.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.app-promo {
  margin-top: 200px; /* 👈 razmak između teksta i dugmadi */
  background: url('app\ background3.jpg') no-repeat center/cover;
  padding: 40px 20px;
  text-align: left;
  font-size: 50px;
  font-weight: bold;
  
}

.store-buttons {
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 250px; /* 👈 razmak između teksta i dugmadi */
}

.store-buttons img {
  height: 150px;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

.main-footer {
  margin-top: 300px;
  background-color: #111;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content div {
  flex: 1;
  min-width: 250px;
}

.footer-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #ff00ff;
  
}

.footer-content p, 
.footer-content a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-content a:hover {
  color: #fff;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 20px;
}



/*responsive css*/




@media (max-width: 768px) {
  .cenovnik {
    padding: 30px 15px;
    margin-top: 30px; /* manji razmak na mobilnim uređajima */
  }
}

@media (max-width: 480px) {
  .cenovnik {
    padding: 20px 10px;
    margin-top: 20px; /* još manji razmak za mobilne uređaje */
  }
}




@media (max-width: 1024px) {
  .hero h1 {
    font-size: 90px;
  }

  .logo {
    width: 300px;
  }

  .app-promo {
    font-size: 40px;
    padding: 30px 15px;
  }

  .store-buttons img {
    height: 100px;
  }

  .cenovnik h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 60px;
    margin-right: 0;
  }

  .about {
    font-size: 1rem;
    padding: 30px 15px;
  }

  .about h2 {
    font-size: 2rem;
    margin-top: 40px;
  }

  .gallery {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .app-promo {
    font-size: 30px;
    text-align: center;
  }

  .store-buttons {
    gap: 30px;
    margin-top: 100px;
  }

  .store-buttons img {
    height: 80px;
  }

  .cenovnik {
    padding: 30px 15px;
  }

  .usluge-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolone na tabletima */
  }

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

  .footer-content div {
    min-width: 100%;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 90px;
  }

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

  .store-buttons img {
    height: 120px;
  }

  .cenovnik h2 {
    font-size: 2.2rem;
  }

  .usluge-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolone */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .about {
    font-size: 1rem;
    padding: 30px 15px;
  }

  .about h2 {
    font-size: 2rem;
    margin-top: 40px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    gap: 30px;
  }

  .store-buttons img {
    height: 100px;
  }

  .cenovnik {
    padding: 30px 15px;
  }

  .usluge-grid {
    grid-template-columns: 1fr; /* 1 kolona */
  }

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

  .footer-content div {
    min-width: 100%;
  }
}

/* Mobile (extra small) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }

  .logo {
    width: 220px;
  }

  .about h2 {
    font-size: 1.8rem;
  }

  .gallery {
    gap: 10px;
  }

  .app-promo {
    font-size: 24px;
    margin-top: 100px;
  }

  .store-buttons img {
    height: 70px;
  }

  .usluge-grid {
    grid-template-columns: 1fr; /* 1 kolona na mobilnim uređajima */
  }

  .cenovnik h2 {
    font-size: 1.6rem;
  }

  .footer-content h3 {
    font-size: 1.1rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}