
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans&display=swap');

@font-face {
  font-family: 'Blackletter';
  src: url('fonts/Blackletter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

/* HERO SEKCIJA */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GORNJI MENI */
.main-nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.main-nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #cc0000;
}

/* LEVI IKONICE */
.social-icons {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.social-icons a {
  color: white;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #cc0000;
}

/* LOGO U CENTRU */
.hero-logo img {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.8));
}

/* FONTOVI */
body {
  font-family: 'Open Sans', sans-serif;
  background: url('slike/pozadina.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-nav a,
h2, h3, h4, h5, h6,
.booking-form button {
  font-family: 'Montserrat', sans-serif;
}

.brand-container h1, .logo h1 {
  font-family: 'Blackletter', serif;
}
/* KRAJ FONTOVA */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ANIAMCIJA ZA BRITVE */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2s ease-out 2s forwards;
}

.loader img {
  width: 100px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
/* KRAJ ANIMACIJE BRITVE */

/* KRAJ CLEAN DELA */

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0px;
  padding: 30px;
  box-shadow: 0 0 0px rgba(224, 176, 0, 0.2);
  color: white;
}

.card {
  background-color: rgba(26, 26, 26, 0.9);
  padding: 20px;
  border: 1px solid #cc0000; /* bakar umesto zlata */
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px #cc0000; /* bakarni sjaj */
}

.card strong {
  font-weight: bold;
  color: #cc0000; /* bakarni tekst cene */
}

header {
      background-color: rgba(0, 0, 0, 0.7);
      text-align: center;
      padding: 60px 20px;
      border-bottom: 2px solid #cc0000; /* chrome copper */
    }

    header img {
      width: 120px;
      height: auto;
      margin-bottom: 20px;
    }

    header h1 {
      font-size: 48px;
      letter-spacing: 2px;
      color: white;

    }

    header p {
      font-size: 18px;
      color: #ccc;
    }

nav {
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 10px 0;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

section {
    padding: 60px 0;
    }

    .section-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }


h2 {
    color: white;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    }

ul {
    list-style: none;
    padding: 0;
    }

li {
    margin: 10px 0;
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
    }

/*button {
    background: white;
    color: black;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    }*/

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 20px;
    }

footer {
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
    }

.brand-container img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.brand-container h1 {
  font-size: 48px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  letter-spacing: 2px;
}

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

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

textarea {
  width: 100%;
}

.tekst-blok {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 20px auto;
  font-size: 22px;
  color: white;
  padding: 0 20px;
}

.tekst-levo, .tekst-desno {
  flex: 1;
}

.tekst-levo {
  text-align: left;
}

.tekst-desno {
  text-align: right;
}

/* Responsive */

@media (max-width: 768px) {

  .main-nav {

    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.9);
  }

  .social-icons {
    left: 10px;
    gap: 15px;
  }

  .social-icons a {
    font-size: 20px;
  }

  .hero-logo img {
    max-width: 250px;
  }

  .section-container {
    padding: 0 15px;
  }

  .price-list {
    padding: 20px;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .tekst-blok {
    flex-direction: column;
    text-align: center;
  }

  .tekst-levo, .tekst-desno {
    text-align: center;
  }
}

/* === NOVA SEKCIJA APPSTORE === */
.booking-app-section {
  background: rgba(0,0,0,0.85);
  padding: 80px 20px;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 20px rgba(204,0,0,0.3);
}

.booking-app-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.app-text {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 40px;
}

.phone-info {
  font-size: 18px;
  color: #ccc;
}

.phone-info strong {
  background: #cc0000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(204,0,0,0.6);
}

.phone-info a {
  text-decoration: none;
}

/* CUSTOM VENENO BUTTONS */
.veneno-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  padding: 14px 22px;
  border: 2px solid #cc0000;
  border-radius: 12px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(204,0,0,0.3);
}

.veneno-btn:hover {
  background: #cc0000;
  border-color: #ff3333;
  box-shadow: 0 0 18px rgba(255,0,0,0.6);
  transform: translateY(-2px);
}

.veneno-btn-icon svg {
  filter: drop-shadow(0 0 4px rgba(255,0,0,0.6));
}

/* ==== GLASSMORPHISM SEKCIJA ==== */
.booking-app-glass {
  padding: 90px 20px;
  display: flex;
  justify-content: center;
}

.glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px 30px;
  max-width: 650px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  text-align: center;
}

/* Naslov */
.glass-container h2 {
  font-size: 32px;
  color: #cc0000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Opis */
.app-text {
  font-size: 18px;
  color: #eee;
  margin-bottom: 40px;
}

/* Dugmići */
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Pojedinačno dugme */
.veneno-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.65);
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,0,0,0.4);
  color: white;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Pulse red glow animacija */
.veneno-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 15px 3px rgba(255,0,0,0.55);
  opacity: 0;
  animation: pulseGlow 2.4s infinite;
}

/* Efekti */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { color: #cc0000; }
  50% { color: #ff3333; }
}

@keyframes pulseGlow {
  0% { opacity: 0.2; }
  50% { opacity: 0.7; }
  100% { opacity: 0.2; }
}

.zakazite-tekst {
  display: block;
  margin-top: 10px;
  color: #ddd;
}

.zakazite-broj {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
}

.zakazite-broj strong {
  color: #fff;
  background: #cc0000;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(204, 0, 0, 0.6);
  transition: background 0.3s, transform 0.3s;
}

.zakazite-broj strong:hover {
  background: #ff3333;
  transform: scale(1.05);
}

.veneno-btn:hover {
  background: rgba(204,0,0,0.85);
  transform: translateY(-2px);
}

.veneno-btn-icon svg {
  display: block;
  filter: drop-shadow(0 0 4px rgba(255,0,0,0.7));
}

/* Tekst na dugmetu – potpuno poravnat */
.veneno-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn-title {
  font-size: 11px;
  opacity: 0.85;
}

.btn-store {
  font-size: 17px;
  font-weight: bold;
}

/* Telefon */
.phone-info {
  font-size: 18px;
  color: #ccc;
  margin-top: 30px;
}

.phone-info a {
  text-decoration: none;
}

.phone-info strong {
  background: #cc0000;
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
}


/* ===== MOBILNI =====  */
@media (max-width: 600px) {
  .soon-section p {
    line-height: 1.6;
  }

  .zakazite-tekst,
  .zakazite-broj {
    display: block;
    text-align: center;
  }

  .zakazite-broj strong {
    font-size: 20px;
  }

  .booking-app-section p,
  .booking-app-section h2 {
    margin-bottom: 25px !important;
  }

  .glass-container {
    padding: 40px 20px;
  }

  .veneno-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
  }

  .app-buttons {
    gap: 20px;
  }

  .btn-store {
    font-size: 16px;
  }
}