/* Premium izgled za AZ Automotive */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #0e0e0e;
    color: #f1f1f1;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d6b04b; /* PREJ: #facc15 */
    margin-bottom: 15px;
}


h2 {
    text-align: center;
    font-size: 2.5rem;
}

header {
    background: #000;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 220px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {

#rental {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.rental-vehicles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.rental-vehicle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rental-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.rental-info {
  max-width: 700px;
}

.rental-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.vehicle-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

@media (min-width: 768px) {
  .rental-vehicle {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
  }

  .rental-image {
    width: 50%;
  }

  .rental-info {
    width: 50%;
  }
}

    color: #d6b04b;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d6b04b;
    transition: width 0.3s;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #facc15;
    cursor: pointer;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-center {
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    color: #d6b04b;
    margin-left: 0;
    margin-right: auto;
  }
}


/* Hero sekcija */
.hero {
    position: relative;
    height: 100vh;
    text-align: center;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
}

.slideshow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    animation: fadeZoom 12s infinite ease-in-out;
    transition: opacity 1.5s ease-in-out;
}

.slide:nth-child(1) {
  background-image: image-set(
    url('bmw.webp') type("image/webp"),
    url('bmw.jpeg') type("image/jpeg")
  );
  animation-delay: 0s;
}

.slide:nth-child(2) {
  background-image: image-set(
    url('porschecayenneturbo.webp') type("image/webp"),
    url('porschecayenneturbo.jpeg') type("image/jpeg")
  );
  animation-delay: 6s;
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1.02);
    }
    45% {
        opacity: 1;
        transform: scale(1.04);
    }
    55% {
        opacity: 0;
        transform: scale(1.04);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content p {
    font-size: 1.3rem;
    color: #ddd;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #d6b04b, #b8913a);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #d6b04b;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 221, 51, 0.6);
}

section {
    padding: 60px 20px;
    border-bottom: 1px solid #222;
}

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

.service-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.service-card i {
    font-size: 30px;
    color: #d6b04b;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Kontakt */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #222;
    color: #fff;
}

.contact-form button {
    background: #d6b04b;
    color: #000;
    padding: 12px;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #b8913a;
}

footer {
    text-align: center;
    padding: 25px;
    background-color: #000;
    color: #999;
}

/* Socials */
.socials {
    margin-top: 20px;
    text-align: center;
}
.socials a {
    color: #d6b04b;
    margin: 0 10px;
    text-decoration: none;
}
.socials a:hover {
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

#galerija {
    padding: 60px 20px;
    background-color: #0d0d0d;
}

.vehicle {
    background-color: #1a1a1a;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.vehicle-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d6b04b;
    margin-bottom: 15px;
    text-align: center;
}

.vehicle-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.vehicle-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.vehicle-images img:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(241, 196, 15, 0.4);
}

html {
    scroll-behavior: smooth;
}

.center-btn {
  text-align: center;
  margin-top: 15px;
}
.order-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d6b04b;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.order-btn:hover {
  background-color: #d6b04b;
  transform: scale(1.05);
}

.order-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d6b04b, #d4ac0d);
  color: #000;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.order-btn:hover {
  background: linear-gradient(135deg, #d4ac0d, #d6b04b);
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left {
  flex: 1;
}

.header-center {
  flex: 1;
  text-align: center;
}

.logo {
  height: 100px;
  max-width: 100%;
}

.email-link {
  color: #d6b04b;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.email-link:hover {
  text-decoration: underline;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.email-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #d6b04b;
  color: #000;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
  transition: all 0.3s ease;
}

.email-button:hover {
  background-color: #d4ac0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(241, 196, 15, 0.5);
}

.email-button i {
  font-size: 1rem;
}

/* Lightbox ozadje */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Povečana slika */
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

/* Zapiranje s klikom */
.lightbox-overlay.active {
    display: flex;
    cursor: zoom-out;
}

/* Lightbox osnova */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox-overlay.active {
  display: flex;
}

/* Povečana slika */
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Puščice */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #d6b04b;
  background: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}
.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.8);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px; /* prilagodi glede na višino tvojega headerja */
}

/* Gumb v spodnjem desnem kotu */
.quick-popup-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #d6b04b;
  color: black;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  transition: background 0.3s;
}
.quick-popup-btn:hover {
  background-color: #d6b04b;
}

/* Ozadje pop-upa */
.quick-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Vsebina obrazca */
.quick-popup-content {
  background-color: #111;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #444;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  color: white;
  text-align: center;
}

.quick-popup-content input,
.quick-popup-content button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
  font-family: 'Lato', sans-serif;
}
.quick-popup-content input {
  background-color: #222;
  color: #fff;
}
.quick-popup-content button {
  background-color: #d6b04b;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.quick-popup-content button:hover {
  background-color: #b8913a;
}

.close-popup {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.quick-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.quick-popup-content {
  background: white;
  padding: 30px;
  max-width: 400px;
  margin: 10% auto;
  border-radius: 8px;
  position: relative;
  animation: slideUp 0.4s ease;
}

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

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

.quick-popup-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #d6b04b;
  color: #000;
  font-size: 24px;
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease;
}

.quick-popup-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.quick-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Črno ozadje z 70% prosojnostjo */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.quick-popup-overlay.active {
  display: flex;
}

.quick-popup-content {
  background: #000; /* PREJ: #fff */
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
  position: relative;
  color: white; /* Dodano za belo besedilo */
}


.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  } to {
    transform: scale(1);
    opacity: 1;
  }
}

.inventory-section {
  background-color: #121212;
  padding: 60px 0;
}

.iframe-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  border-radius: 10px;
  overflow: hidden;
}

.socials {
  text-align: center;
  margin-top: 30px;
}

.socials a {
  display: inline-block;
  margin: 0 15px;
  color: #ffd700;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  color: #fff;
  transform: scale(1.05);
}

.socials i {
  margin-right: 8px;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.social-icon-header {
  color: #ffd700;
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon-header:hover {
  transform: scale(1.2);
  color: #ffffff;
}

.social-img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon-header:hover .social-img {
  transform: scale(1.2);
  opacity: 0.8;
}

.kontakt-link {
  color: #d6b04b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 24px;
    color: #d6b04b;
    margin-left: 10px;
    margin-right: auto;
    align-self: flex-start;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #000;
    width: 100%;
    padding: 15px 20px;
  }

  nav.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .slideshow .slide {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000; /* dodano za črno ozadje okoli slike */
    height: 400px; /* ali po potrebi višina hero sekcije */
  }

  .hero {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
  }
}

/* Najem vozil sekcija */
.rental-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.rental-section h2 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 600;
}

.rental-intro {
  font-size: 16px;
  color: #222;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rental-vehicle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  gap: 30px;
}

.rental-img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rental-description {
  max-width: 480px;
  text-align: left;
}

.rental-description h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000;
}

.rental-description p {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
}

.rental-description .order-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.rental-description .order-btn:hover {
  background-color: #c49e2c;
}

.rental-section {
  background-color: #111; /* temna podlaga */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.rental-section .section-title {
  font-size: 36px;
  color: #d4af37; /* zlata barva */
  margin-bottom: 15px;
}

.rental-intro {
  color: #ccc;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.rental-vehicle {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.rental-img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
  margin: auto;
}

.rental-description {
  flex: 1;
  padding: 20px;
  text-align: left;
  color: #f5f5f5;
}

.rental-description h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.rental-description p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.rental-description .btn.order-btn {
  background-color: #d4af37;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
  text-decoration: none;
}

.rental-description .btn.order-btn:hover {
  background-color: #b9932e;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .rental-vehicle {
    flex-direction: column;
    text-align: center;
  }

  .rental-description {
    text-align: center;
    padding: 20px 0 0;
  }

  .rental-img {
    max-width: 90%;
  }
}

.rental-buttons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.download-btn {
  background-color: #daa92d;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.download-btn:hover {
  background-color: #c9982b;
  color: #000;
}

.rental-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.rental-btn {
  background-color: #daa520;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.rental-btn:hover {
  background-color: #c89b1f;
  color: #000;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #daa520;
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.gallery-description {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Gladko scrollanje in pravilno odmikanje sekcij */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* višina sticky headerja – prilagodi po potrebi */
}

/* Poskrbi, da vse sekcije začnejo ravno pod menijem */
section {
  scroll-margin-top: 100px; /* enako kot zgoraj */
}

.section-title {
  font-family: 'Playfair Display', serif !important;
  color: #daa520 !important;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background-color: #111;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}

.custom-modal-content h2 {
  color: #d6b04b;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.custom-modal-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.custom-modal-content ul li {
  margin-bottom: 10px;
}

.custom-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #d6b04b;
  cursor: pointer;
  font-weight: bold;
}

/* MODAL OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); /* Blur ozadja */
  background-color: rgba(0, 0, 0, 0.6); /* Temen overlay */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-fullscreen-content {
  background: rgba(20, 20, 20, 0.95);
  color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  width: 65%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); /* zlat sijaj */
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
  animation: slideInLeft 0.4s ease forwards;
  position: relative;
  font-family: 'Poppins', sans-serif;
}


@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
}

/* ZA MOBILNE NAPRAVE */
@media (max-width: 768px) {
  .modal-fullscreen-content {
    max-width: 90%;
    max-height: 90vh;
  }
}

.modal-fullscreen-content h2 {
  color: #d4af37; /* zlata barva */
  margin-bottom: 20px;
}

.modal-fullscreen-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.modal-fullscreen-content h2 {
  color: #d4af37; /* zlata */
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-fullscreen-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-fullscreen-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.modal-fullscreen-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #f0f0f0;
}

/* Zlata kljukica */
.modal-fullscreen-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4af37; /* zlata */
  font-weight: bold;
}

/* Odstrani default pike pri seznamih */
.modal-fullscreen-content ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style: none;
}

/* PREMIUM kljukice */
.modal-fullscreen-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  animation: fadeInUp 0.6s ease both;
}

.modal-fullscreen-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: gold;
  font-weight: bold;
}

/* Fino animirano odpiranje (slide in z leve) */
.modal-fullscreen-content {
  animation: slideIn 0.6s ease forwards;
}

/* Fade-in posameznih elementov z zamikom */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animacija za modal */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade-out ob zapiranju modala */
.modal-overlay.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* Hover efekt (če želiš) */
.modal-fullscreen-content:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  border: 1px solid gold;
  transition: 0.3s ease;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-fullscreen-content {
  background-color: #1c1c1c;
  color: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 75%;
  position: relative;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
  animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.modal-fullscreen-content ul {
  list-style: none;
  padding-left: 0;
}

.modal-fullscreen-content li::before {
  content: '✔';
  color: gold;
  margin-right: 10px;
  font-weight: bold;
}

/* Osnovna postavitev kartic */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Kartice storitev */
.service-card {
  background-color: #0f0f0f;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 1px solid #333;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card i {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: #ccc;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-fullscreen-content {
  background: #111;
  color: #fff;
  max-width: 750px;
  width: 90%;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  animation: slideIn 0.5s ease-out;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

.modal-fullscreen-content h2 {
  color: gold;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.modal-fullscreen-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.modal-fullscreen-content ul li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}

.modal-fullscreen-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: gold;
}

/* 🎯 Modal background & typography */
.modal-fullscreen-content {
  background-color: #111; /* temno ozadje */
  color: #f5f5f5; /* svetla pisava */
  font-family: 'Poppins', sans-serif;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  animation: slideInLeft 0.4s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

/* 🧊 Overlay z blur efektom */
.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

/* ✅ Zlat kljukica in premium seznami */
.modal-fullscreen-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.modal-fullscreen-content ul li::before {
  content: "✔";
  color: #d4af37; /* zlata */
  margin-right: 12px;
  font-weight: bold;
}

/* 🔥 Premium naslovi */
.modal-fullscreen-content h2 {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ❌ Gumb za zapiranje */
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
  z-index: 10000;
}

/* 🕹 Animacija modalov */
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 📦 Mreža storitev */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* ✨ Premium kartice storitev */
.service-card {
  background-color: #111; /* temno ozadje */
  border: 1px solid #333;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

.service-card i {
  font-size: 40px;
  color: #d4af37; /* zlata ikona */
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

/* 🔥 Hover efekt */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

/* 💎 Gumb za “Preveri ponudbo” */
.order-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: #d4af37;
  color: #111;
}


