/*!
 * Superior Design CSS
 * Author: Superior Design (superiordesign.hr)
 * Created: 2025
 * Description: Custom styles for Teranino Rossi
 */

* { box-sizing: border-box; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  overflow-x: hidden;
}

.navbar-custom {
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  transition: color 0.3s;
}

.logo_navbar {
  height: 70px; width: auto;
}

#hero {
  background: url('../../img/pozadina.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 15px;
}

#hero .logo {
  width: 250px;
  margin-bottom: 40px;
}

.hero-bottles {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.hero-bottles a img {
  transition: transform 0.3s;
}
.hero-bottles a img:hover {
  transform: scale(1.05);
}
.hero-bottles .small { width: 100px; }
.hero-bottles .large { width: 160px; }

.white-section {
  background: white;
  padding: 50px 15px;
  text-align: center;
}

.parallax-section {
  background: url('../../img/pozadina.jpg') center center / cover no-repeat fixed;
  text-align: center;
  color: #5a3c35;
}

footer {
  background: #5a3c35;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #ddd;
}

.text-rossi { color: #5a3c35; transition: color 0.3s; }
.text-rossi.white { color: white !important; }

.bg-with-text {
  background: url('../../img/pozadina.jpg') center center / cover no-repeat;
  color: #5a3c35;
  padding: 40px;
}

.fancy-border {
  padding: 8px;
  border: 3px double #8E776A;
  border-radius: 8px;
}

.dark-section {
  background: #5a3c35;
  color: white;
  padding: 50px 15px;
  text-align: center;
}
.dark-section h2 { font-size: 4vw; }

.small-image {
  width: auto;
  max-height: 300px;
  object-fit: cover;
  transition: transform 0.3s;
}
.small-image:hover { transform: scale(1.05); }

.btn-rossi {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  padding: 12px 30px;
  background-color: transparent;
  color: #5a3c35;
  border: 2px solid #5a3c35;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-rossi:hover {
  background-color: #5a3c35;
  color: white;
  border-color: #5a3c35;
}

@media (max-width: 768px) {
  #hero .logo { width: 180px; margin-bottom: 30px; }
  .hero-bottles { gap: 30px; }
  .hero-bottles .small { width: 70px; }
  .hero-bottles .large { width: 120px; }
  #hero { background: url('../../img/pozadina-mobile_.jpg') center center / cover no-repeat; }
  .dark-section h2 { font-size: 8vw; }
}

.video-thumbnail {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

html { scroll-padding-top: 80px; }

/* Uklanja rub oko hamburgera */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}
