/* =========================================================
   WARMBLOOD HORSE SALES - CLEAN STABLE STYLE SYSTEM
   ========================================================= */

/* RESET */
* {
  box-sizing: border-box;
}

/* BASE */
body {
  margin: 0;
  background: #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* LINKS */
a {
  color: #FFD700;
  text-decoration: none;
}

a:hover {
  color: #FFC107;
}

/* LAYOUT */
.wrapper {
  max-width: 1150px;
  margin: auto;
  padding: 20px;
}

/* LOGO FIX (mobile safe) */
.logo {
  text-align: center;
  margin-bottom: 25px;
}

.logo img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

/* HEADINGS */
.main-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.horse-title {
  text-align: center;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 10px;
}

.intro-link {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

/* DIVIDERS */
.gold-line {
  height: 1px;
  margin: 25px 0;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.section-line {
  height: 1px;
  margin: 20px auto;
  width: 120px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.divider {
  height: 1px;
  margin: 40px 0;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
}

/* BOXES */
.box {
  background: #161616;
  border: 1px solid #b8860b;
  padding: 25px;
  margin: 25px 0;
  border-radius: 6px;
}

/* MEDIA */
.hero-media {
  border: 1px solid #b8860b;
  padding: 12px;
  margin: 25px 0;
}

.hero-media video {
  width: 100%;
}

/* GRID */
.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-card img {
  width: 100%;
}

/* BUTTON SYSTEM (FINAL FIX) */
.btn-gold {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #FFD700;
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-gold:hover {
  background: #FFD700;
  color: #000000;
}

.button-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.button-row .btn-gold {
  display: block;
  width: 100%;
  text-align: center;
}

/* LISTS */
.tick-list {
  list-style: none;
  padding: 0;
}

.tick-list li {
  margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
  margin-top: 50px;
  border-top: 1px solid #b8860b;
  padding: 30px 20px;
  text-align: center;
}

.site-footer a {
  color: #FFD700;
}

.site-footer a:hover {
  color: #FFC107;
}

/* MOBILE */
@media (max-width: 768px) {
  .image-grid-3 {
    grid-template-columns: 1fr;
  }

  .button-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .logo img {
    max-width: 360px;
    margin: 0 auto;
  }
}
/* SHOW JUMPING PAGE */
.topline {
  text-align: center;
  color: #cccccc;
  margin-bottom: 10px;
  font-size: 18px;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 10px;
}

.intro {
  max-width: 900px;
  margin: 0 auto 25px;
  text-align: center;
  font-size: 20px;
}

.notice {
  max-width: 900px;
  margin: 0 auto 35px;
  text-align: center;
  color: #FFD700;
  font-size: 18px;
  border: 1px solid #444444;
  padding: 16px;
  background: #111111;
}

.section-title {
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  margin: 30px 0 10px;
}

.horse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.horse-card {
  background: #0d0d0d;
  border: 1px solid #333333;
  border-radius: 14px;
  padding: 18px;
  transition: 0.25s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.horse-card:hover {
  border-color: #c8a94a;
  box-shadow: 0 0 15px rgba(200, 169, 74, 0.2);
}

.horse-card video,
.horse-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #444444;
  margin-bottom: 12px;
  background: #000000;
  display: block;
}

.horse-card h2 {
  color: #FFD700;
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.3;
}

.horse-card h2 a {
  color: #FFD700;
  text-decoration: none;
}

.horse-card h2 a:hover {
  color: #ffffff;
}

.price-line {
  font-size: 19px;
  font-weight: bold;
  margin: 0 0 14px 0;
  line-height: 1.6;
}

.price-line .gbp {
  color: #FFD700;
  font-size: 22px;
}

.price-line .usd,
.price-line .eur {
  color: #ff4d4d;
}

.status-line {
  color: #FFD700;
  font-size: 21px;
  font-weight: bold;
  margin: 0 0 14px 0;
}

.horse-card p {
  font-size: 18px;
  margin: 0 0 14px 0;
}

.button-wrap {
  text-align: center;
  margin-top: 22px;
}

.featured-note {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 30px;
}

.footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  color: #bfbfbf;
}

.footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.footer a {
  color: gold;
}

@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  .intro {
    font-size: 18px;
  }

  .notice {
    font-size: 17px;
  }

  .horse-card h2 {
    font-size: 24px;
  }

  .horse-card p {
    font-size: 17px;
  }

  .horse-card video,
  .horse-card img {
    height: auto;
  }
}