/* 🎨 Kartica broda */
.yacht-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 25px;
  margin: 40px auto;
  max-width: 1000px;
  font-family: 'Segoe UI', sans-serif;
}

/* 🛥️ Naslov i meta */
.yacht-card .yacht-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
  color: #002244;
}

.yacht-card .yacht-meta {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #c0392b;
  margin-bottom: 20px;
}

/* 🖼️ Glavna slika */
.yacht-card .yacht-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* 📊 Tablica specifikacija */
.yacht-card .yacht-specs {
  width: 90%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 20px auto;
  font-size: 16px;
}

.yacht-card .yacht-specs th {
  background: #c0392b;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.yacht-card .yacht-specs td {
  background: #fff;
  padding: 14px 20px;
  color: #333;
}

.yacht-card .yacht-specs tr:nth-child(even) td {
  background: #f9f9f9;
}

/* 📝 Opis */
.yacht-card .yacht-desc {
  margin: 25px 0;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #444;
}

/* 🖼️ Galerija - 3 slike po redu */
.yacht-card .yacht-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 25px auto;
  max-width: 900px;
}

.yacht-card .yacht-gallery a {
  width: 33.333%;   /* tri slike po redu */
  padding: 7px;     /* razmak između slika */
  box-sizing: border-box;
  display: block;
}

.yacht-card .yacht-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* slika se reže ali drži dimenziju */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.yacht-card .yacht-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* 📱 Mobitel (1 slika u redu) */
@media (max-width: 600px) {
  .yacht-card .yacht-gallery a {
    width: 100%;
    padding: 5px 0;
  }
}

/* 📱 Tablet (2 slike u redu) */
@media (min-width: 601px) and (max-width: 1024px) {
  .yacht-card .yacht-gallery a {
    width: 50%;
    padding: 7px;
  }
}

/* 🔘 Gumb */
.yacht-card .yacht-btn {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.yacht-card .yacht-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c0392b;
  color: #fff;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.yacht-card .yacht-btn a:hover {
  background: #a93226;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}