/* Osnovni reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
}

.cookie-banner button {
  margin-left: 10px;
  padding: 6px 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

#accept-cookies {
  background: #28a745;
  color: #fff;
}

#reject-cookies {
  background: #dc3545;
  color: #fff;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #f1f1f1;
  line-height: 1.6;
  overflow-x: hidden;
} 

/* Header */
.header {
  background-color: #0a0a0a;
  padding: 1rem;
  position: relative;
  z-index: 100;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4); /* subtilen zlati sijaj */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37; /* zlata barva */
  letter-spacing: 1px;
  text-transform: uppercase;
}



/* Hamburger gumb */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: gold; /* Zlata barva */
}

.menu-toggle:hover {
  color: #bfa133;
}


.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.nav ul li a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #f3d87f;
}

/* Hero Section */
.hero {
  background: url('https://source.unsplash.com/1600x900/?luxury-car,shine') no-repeat center center/cover;
  padding: 150px 20px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3.8rem;
  color: #d4af37;
  text-shadow: 0 0 15px #b38e2e;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #ccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #d4af37;
  color: #0d0d0d;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b38e2e;
  color: #fff;
}

/* Sections padding */
.section-padding {
  padding: 70px 0;
}

/* About */
.about h2 {
  color: #d4af37;
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
}

/* Services */
.services h2 {
  color: #d4af37;
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.services h2::after {
  content: "";              
  display: block;
  width: 80px;              
  height: 3px;             
  background-color: #d4af37;
  margin: 10px auto 0;      
  border-radius: 2px;      
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.service-item {
  background-color: #1a1a1a;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px #000;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #b38e2e;
}

.service-item i {
  font-size: 3.2rem;
  color: #d4af37;
  margin-bottom: 18px;
}

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color:#ccc;
}

.service-item p {
  font-size: 1rem;
  color: #ccc;
}

/* Pricing */
.pricing h2 {
  color: #d4af37;
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.pricing h2::after {
  content: "";              
  display: block;
  width: 80px;              
  height: 3px;              
  background-color: #d4af37;
  margin: 10px auto 0;      
  border-radius: 2px;       
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.pricing-item {
  background-color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px #000;
  transition: box-shadow 0.3s ease;
}

.pricing-item:hover {
  box-shadow: 0 0 20px #b38e2e;
}

.pricing-item h3 {
  font-size: 1.7rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-item p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #f3d87f;
}

/* Slika cenika */
.pricing-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.pricing-image img:hover {
  transform: scale(1.02);
}

/* Slika cenika */
.pricing-image {
  margin-top: 40px; /* več prostora nad sliko */
  display: flex;
  justify-content: center; /* poravnava vodoravno na sredino */
  align-items: center;
  width: 100%;
}

.pricing-image img {
  max-width: 80%;
  height: auto;
  border-radius: 14px;
  border: 4px solid #b38e2e;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup.show {
  display: block;
  opacity: 1;
}

/* Popup slika */
.popup-content {
  display: block;
  max-width: 90%;
  max-height: 70%;
  margin: 100px auto 0 auto; /* premik slike malo nižje */
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

/* Gumb za zapiranje */
.close {
  position: fixed; /* ostane v zgornjem desnem kotu ekrana */
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000; /* vedno nad sliko */
  transition: 0.3s;
}

.close:hover {
  color: #d4a017;
}

/* Responsive dizajn */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-image img {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-image img {
    max-width: 95%;
  }

  /* Popup na mobilniku: slika nižje, X ostane zgoraj */
  .popup-content {
    max-height: 65%;
    margin: 120px auto 0 auto;
  }

  .close {
    font-size: 32px;
    top: 10px;
    right: 15px;
  }
}

/* Galerija */
.gallery-section {
  background: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h2 {
  color: #d4af37;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gallery-section h2::after {
  content: "";              
  display: block;
  width: 80px;              
  height: 3px;              
  background-color: #d4af37;
  margin: 10px auto 0;      
  border-radius: 2px;       
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25); 
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(212, 175, 55, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}


/* Hover efekti */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
}

.gallery-item:hover img {
  transform: scale(1.1);
}


/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.review-link {
  text-decoration: none;  
  color: inherit;         
  display: block;         
}

.reviews-section h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  position: relative;
}

.reviews-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 15px auto 0;
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #111;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d4af37;
}

.review-name {
  font-weight: 600;
  color: #fff;
  display: block;
}

.review-stars {
  color: #d4af37;
  font-size: 1.1rem;
}

.review-text {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-source {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/*Contact*/
.contact-section {
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-section h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 15px;
}
.contact-section h2::after {
  content: "";              
  display: block;
  width: 80px;              
  height: 3px;             
  background-color: #d4af37;
  margin: 10px auto 0;      
  border-radius: 2px;      
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.call-button {
  display: inline-block;
  background: #d4af37;
  color: #0a0a0a;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.call-button:hover {
  background: #f3d87f;
  transform: scale(1.05);
}

.contact-info {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  color: #ccc;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #d4af37;
  font-size: 1.6rem;
  margin: 0 12px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #f3d87f;
}



/* Map */
.map-container {
  max-width: 600px;
  margin: 20px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px #000;
}

/* FAQ */
.faq h2 {
  color: #d4af37;
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.faq h2::after {
  content: "";              
  display: block;
  width: 80px;              
  height: 3px;             
  background-color: #d4af37;
  margin: 10px auto 0;      
  border-radius: 2px;      
}

.faq-item {
  background-color: #1a1a1a;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
}

.faq-item h3 {
  color: #f3d87f;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-item p {
  color: #ccc;
  font-size: 1rem;
}

.footer {
  background-color: #0a0a0a;
  padding: 60px 20px 30px;
  color: #ccc;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3.footer-logo {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column h4 {
  font-size: 1.3rem;
  color: #f3d87f;
  margin-bottom: 20px;
  border-bottom: 1px solid #222;
  padding-bottom: 8px;
}

.footer-column p,
.footer-column ul li a {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a:hover {
  color: #d4af37;
  padding-left: 3px;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #d4af37;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #f3d87f;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.95rem;
  color: #777;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    gap: 12px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobilna verzija */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: #111;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }

  .nav.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}