/* Global resets or standard styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.5;
}


/* header.css */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
  }
  
  .header-container .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
  }
  
  .header-container nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .header-container nav ul li {
    margin-right: 15px;
  }
  
  .header-container nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
  }
  
  .header-container nav ul li a:hover,
  .header-container nav ul li a.active {
    background-color: #444;
    border-radius: 4px;
  }
  

 

/* Highlights */
.highlights {
  padding: 2rem;
  background: #fff;
}

.highlight-cards {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.highlight-cards article {
  flex: 1;
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
}

.highlight-cards article h3 {
  margin-bottom: 0.5rem;
}

/* About snippet */
.about-snippet {
  height: 100vh; /* Full viewport height */
  background-image: url('https://firebasestorage.googleapis.com/v0/b/anna-1996.appspot.com/o/images_horses%2FIMG-20250421-WA0061.jpg?alt=media&token=baf6bc08-6df8-408c-bfbe-a59400310d89');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-snippet a.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}


.our-horses {
  height: 100vh; /* Full viewport height */
  background-image: url('https://firebasestorage.googleapis.com/v0/b/anna-1996.appspot.com/o/images_horses%2FIMG-20250421-WA0060.jpg?alt=media&token=b3b4476f-8da4-4bfe-bb7b-9b95cecf5a03');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.our-horses h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.our-horses p {
  font-size: 1.25rem;
  max-width: 700px;
}

.our-horses a.btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}



.farm-gallery {
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full screen height */
  padding: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
}

.farm-gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.farm-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  flex-wrap: nowrap;
}

.farm-images img {
  width: 30%;
  object-fit: cover;
  height: 60vh;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
  .farm-images {
    flex-direction: column;
    align-items: center;
  }

  .farm-images img {
    width: 90%;
    height: auto;
  }
}



/* Quick Links Cards */
.quick-links {
  padding: 2rem;
}

.quick-links .cards {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.quick-links .card {
  flex: 1;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.quick-links .card a.btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #c30f0f;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Horses Page */
.horse-filters {
  padding: 1rem 2rem;
  background: #e9e9e9;
}
.horse-filters .filters {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.horse-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.horse-card {
  background: #fff;
  width: calc(33.333% - 2rem);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.horse-card img {
  max-width: 100%;
  border-radius: 8px;
}

/* News Page */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem;
  box-sizing: border-box;
}

.news-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-item h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.news-item .date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.news-item .summary {
  margin-bottom: 1rem;
}

.news-item a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.news-item a:hover {
  text-decoration: underline;
}


/* About Page */
.about-section, .team-section {
  padding: 2rem;
  background: #fff;
  margin-bottom: 1rem;
}

.team-section .owner-info {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.team-section .owner-info img {
  max-height: 200px;
  border-radius: 8px;
}

/* Contact Page */
.contact-info {
  padding: 2rem;
  background: #fff;
}

.feedback-form {
  padding: 2rem;
  background: #e9e9e9;
}

.feedback-form form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.feedback-form form div {
  display: flex;
  flex-direction: column;
}

.captcha-placeholder {
  background: #fff;
  border: 1px dashed #ccc;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.map-section {
  padding: 2rem;
  background: #fff;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  max-width: 900px;
  height: 450px;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-cards,
  .quick-links .cards,
  .horse-list {
    flex-direction: column;
  }
  .horse-card,
  .quick-links .card {
    width: 100%;
  }
  .team-section .owner-info {
    flex-direction: column;
  }
}

 

/* Hero section styling */
.hero {
  height: 100vh; /* Full height of the viewport */
  background-image: url('https://firebasestorage.googleapis.com/v0/b/anna-1996.appspot.com/o/images_horses%2FIMG-20250421-WA0017.jpg?alt=media&token=82a7bc7a-d6f8-4359-945b-1fca03388824');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}


/*footer layout **/
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-media,
.footer-contact {
  margin-top: 1rem;
}

.footer-media ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-media ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-media ul li a:hover {
  text-decoration: underline;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}


/* News Detail Page */
   .news-detail {
      max-width: 800px;
      margin: 2rem auto;
      padding: 1rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .news-detail h1 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    .news-detail .date {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 1rem;
    }

    .news-detail img,
    .news-detail iframe {
      width: 100%;
      border-radius: 8px;
      margin: 1rem 0;
      max-height: 450px;
      object-fit: cover;
    }

    .news-detail .content {
      font-size: 1.1rem;
      line-height: 1.6;
    }


/* Game Page */
    .game {
  height: 100vh;
  width: 100%;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/anna-1996.appspot.com/o/images_horses%2FGAme_horse1.png?alt=media&token=e9326b54-a0a5-412c-8513-e207fee61bb4');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.game p {
  font-size: 1.25rem;
  max-width: 700px;
  margin-bottom: 1rem;
}

.game a.btn {
  padding: 0.6rem 1.2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.game-team {
  margin-top: 3rem;
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.game-team h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.game-team p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.game-team ul {
  list-style: none;
  padding: 0;
}

.game-team ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}



/* Our Partners */
.our-partners {
  padding: 2rem;
  text-align: center;
}

.partners-media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
}

.partners-media-gallery a {
  display: block;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.partners-media-gallery a:hover {
  transform: scale(1.05);
}

.partners-media-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Admin sidebar layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 200px;
  background: #333;
  color: #fff;
  padding: 20px 0;
}

.admin-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-sidebar li {
  margin-bottom: 10px;
}

.admin-sidebar a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  display: block;
}

.admin-sidebar a:hover {
  background: #444;
}

.admin-main {
  flex: 1;
  padding: 20px;
}

/* Video Gallery */
.video-gallery {
  padding: 2rem;
  background: #fff;
  text-align: center;
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.video-row iframe {
  flex: 1 1 300px;
  max-width: 100%;
  height: 315px;
}

