* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    
}

body {

  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  transition: background 0.3s ease;
}
.logo {
    width: 250px;       /* promijeni veličinu */
    height: auto;       /* da se ne izobliči */
    display: block;
       /* centrira logo */
}
.omoniki{
    width: 200px;
    height:200px;
    border-radius: 50%;
}

/* TOP BAR */
.top-bar {
  background: #fff;
  color: #222;
  font-size: 13px;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
     font-family: 'Poppins', sans-serif; /* može i drugi font ako želiš */
  font-weight: 700; /* bold */
  font-size: 14px;
}

.top-bar a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 700;
  text-decoration: none;
  
}

.top-bar a:hover {
  color: #caa36b;
  transform: translateY(-2px);
}

/* Top bar ikone + tekst */
.top-left {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  font-size: 13px;
}

.top-left span, .top-left a {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.top-left span svg {
  width: 16px;
  height: 16px;
  stroke: #222;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.top-left span:hover svg,
.top-left a:hover {
  stroke: #caa36b;
  color: #caa36b;
  transform: translateY(-2px);
}

/* SOCIAL ICONS */
.top-right {
  display: flex;
  gap: 20px;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: #222;
  stroke-width: 1.7;
  fill: none;
  transition: all 0.3s ease;
}

.icon:hover svg {
  stroke: #caa36b;
  transform: translateY(-2px);
}

/* HEADER */
.header {
  background: #f2f2f2;
    border:1px  #caa36b;
 
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  letter-spacing: 2px;
}

/* NAVIGATION */
.nav ul {
    
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
    
}

.nav a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
    font-family: sans-serif;

}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: #caa36b;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.nav a:hover {
  color: #caa36b;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  background: white;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 10;
}

.dropdown li {
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.dropdown li:hover {
  background: #f5eee6;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CTA BUTTON */
.cta {
  padding: 10px 20px;
  background: #caa36b;
  color: white !important;
  border-radius: 30px;
  font-size: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(202,163,107,0.4);
}

/* HERO */
.hero {
  padding: 120px 60px;
  text-align: center;
  background: linear-gradient(to right, #f5eee6, #fafafa);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero p {
  font-size: 16px;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* HERO SECTION BACKGROUND IMAGE */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* SLIKA KAO POSEBAN SLOJ */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('salon.jpg') center/cover no-repeat;
  z-index: 0;
  animation: zoomHero 20s ease-in-out infinite alternate;
}

/* TAMNI OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* TEKST I GUMB IZNAD SLIKE */
.hero h1,
.hero p,
.hero-btn {
  position: relative;
  z-index: 2;
}

/* ANIMACIJA */
@keyframes zoomHero {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.hero h1 {
  font-size: 56px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* SECTIONS */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section.light {
  background: #fafafa;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.service-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ABOUT */
/* ABOUT SECTION */
.about-section {
  background: #faf8f6;
  padding: 100px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

.about-subtitle {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: #b89b7d;
}

.about-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin: 15px 0 25px;
  color: #222;
}

.about-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.about-text .intro {
  font-size: 16px;
  color: #333;
}

.about-text strong {
  color: #222;
}

.signature {
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #b89b7d;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text h1 {
    font-size: 36px;
  }
}


/* CTA SECTION */
.cta-section {
  background: #222;
  color: white;
  text-align: center;
  padding: 80px 40px;
}

.cta-section a {
  display: inline-block;
  margin-top: 20px;
  background: #caa36b;
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(202,163,107,0.4);
}
/* Filter dugmad */
.gallery-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 25px;
  margin: 0 8px;
  border: none;
  border-radius: 30px;
  background: #caa36b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(202,163,107,0.4);
}

.filter-btn.active {
  background: #222;
}

/* Galerija ostaje isti grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px;
  font-size: 13px;
  transition: background 0.3s ease;
}


footer:hover {
  background: #222;
}
footer a {
    
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #c9a96e; /* neka zlatna/beige za beauty vibe */
}
/* CONTACT FORM */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffb6c1; /* možeš staviti boju koja odgovara tvojoj paleti */
  box-shadow: 0 0 8px rgba(255,182,193,0.3);
}

.contact-form .submit-btn {
  display: inline-block;
  background-color: #caa36b;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #ff85a2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.service-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.service-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  filter: brightness(0.6);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-box h3,
.service-box p {
  position: relative;
  color: #fff;
  z-index: 2;
  margin: 10px 0;
}

.service-box:hover .service-image {
  transform: scale(1.1);
  filter: brightness(0.5);
}

/* Gumb u srednjem kvadratu */
.service-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: #caa36b;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
    text-decoration: none;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(202,163,107,0.4);
}

/* Animacija kada dođe na ekran */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .top-bar, .header {
    flex-direction: column;
    padding: 15px 20px;
    text-align: center;
  }

  .top-left {
    white-space: normal;
    justify-content: center;
    gap: 5px;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }
}




.circle-image {
  width: 150px;          /* promijeni veličinu po želji */
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #f5eee6; /* lagana pozadina iza slike */
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.circle-image:hover {
  transform: scale(1.05);
}

/* Centriranje dugmeta ispod slike */
.service-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
  background: #fff; /* možeš staviti neku boju ili lagani gradient */
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Animacija ulaska */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* PRICE LIST SECTION */
.price-list {
  background: #fafafa; /* svijetla pozadina */
  padding: 80px 60px;
  text-align: center;
}

.price-list .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

/* Kartice sa cijenama */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
   
}

.price-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.price-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.price-card .price {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #caa36b; /* akcentna boja */
}

/* Animacija kada dođe na ekran */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


////////////////////////////////////////////


/* SERVICES DETAIL */
.services-detail {
  background: #fff;
  padding: 80px 60px;
  text-align: center;
}

.services-detail .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fafafa;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #222;
  margin-bottom: 15px;
}

.toggle-description {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  background: #caa36b;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toggle-description:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(202,163,107,0.4);
}

/* Skriveni opis po defaultu */
.service-description {
  display: none;
  margin-top: 15px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  color: #555;
  line-height: 1.8;
  font-size: 14px;
}

/* Animacija ulaska kartica */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stil za naslove galerija – centrirano s linijom ispod */
.gallery-section h2, .gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;             /* tamno-smeđa / gotovo crna */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;      /* CENTRIRANO */
  position: relative;
}

/* Dekorativna linija ispod naslova */
.gallery-section h2::after, .gallery-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #caa36b; /* tvoja zlatna ton boja */
  margin: 10px auto 0;       /* centrirano ispod naslova */
  border-radius: 2px;
}
((((((((((((((((((()))))))))))))))))))
/* Filter dugmad responsive */
@media (max-width: 768px) {
  .gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .filter-btn {
    flex: 1 1 45%;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .gallery-item img {
    height: 150px; /* fiksna visina za mobile */
    object-fit: cover;
  }
}
/* LEGAL PAGES (Impressum & Datenschutz) */
.legal-section {
  padding: 80px 20px;
  background: #fafafa;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
}

/* Naslovi */
.legal-card h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  color: #222;
}

.legal-card h3 {
  margin-top: 20px;
  font-size: 18px;
  color: #caa36b;
}

/* Tekst */
.legal-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-card ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-card li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .legal-card {
    padding: 25px;
  }
}