/* body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}
*/

body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #121212;
      color: #f0f0f0;
    }


/* Navbar */
.navbar {
  background-color: #1c1c1c;
  padding: 10px 5px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-title {
  flex-grow: 1;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  color: #c49a6c;
}

.logo img {
  height: 50px;
  margin-left: 15px;
  margin-top: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  margin-right: 3%;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #c49a6c;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 2em;
  color: #c49a6c;
  cursor: pointer;
}

/* Paw icon image */
.paw-icon {
    height: 65px;
    vertical-align: middle;
}

/* Hero section with image */

.hero {
  background: #000 url("IMAGES/MAIN/Freddie3.jpg") top center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}


.hero-content {
  margin-top: 400px; /* adjust this value as needed */
}


.hero-content h1 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.2em;
  color: #ddd;
  margin-bottom: 1em;
}


.dogs-button-area {
  text-align: center;
  margin-top: 120px;
}

.dogs-button-area h1 {
  font-size: 2em;
  color: #c49a6c;
  text-align: center;
  margin-bottom: 0em;
}

.dogs-button-area p {
  font-size: 1.2em;
  color: #ddd;
  margin-bottom: 0m;
}

.cta-buttons a,
.dogs-buttons a {
  background-color: #c49a6c;
  color: #fff;
  padding: 12px 24px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
  width: 150px; /* Set a fixed width */
  text-align: center; /* Center the text inside */
}


.cta-buttons a:hover,
.dogs-buttons a:hover {
  background-color: #a67c52;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  justify-items: center;
}

.dog-card {
  background-color: #2e2e2e;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 250px;
  border: 1px solid #c49a6c;
}

.dog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #c49a6c;
}

.dog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.dog-info {
  padding: 1rem;
  color: #fff;
}

.dog-info h3 {
  color: #c49a6c;
  margin-bottom: 0.5rem;
}

.dog-info p {
  font-size: 1em;
  text-align: center;
  padding: 0 10px;
}


/*
.dog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0rem;
    padding: 2rem;
    justify-items: center;
}

.dog-card {
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
    max-width: 250px;
    border: 1px solid #c49a6c;
    border-radius: 5px;
}

.dog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #c49a6c;
}


.dog-card img,
.dog-header img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
  */


.dog-name {
    font-size: 1.5em;
    color: #fff;
    text-align: center;
    margin-bottom: 0rem;
}

.dog-name h2 {
    color: #c49a6c;
    font-size: 2rem;
    margin: 0 auto;
    margin-bottom: -0.5rem;
}

.dog-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    margin-top: 0rem;
    background-color: #444;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.dog-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 7em auto;
    padding: 2rem;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

.dog-fact {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 0.5rem;
    align-items: center;
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
}

.label {
    font-weight: bold;
    color: #c49a6c;
    font-size: 1em;
}

.value {
    color: #f4f4f4;
    font-size: 1em;
}

/*
.dog-info {
    padding: 1rem;
    color: #fff;
}
    

.dog-info h3 {
    color: #c49a6c;
    margin-bottom: 0.5rem;
}

*/

.dog-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.dog-images img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px #000;
}

.dog-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dog-photo img {
    width: 300px;
    height: 200px;
    object-fit: scale-down;
    border-radius: 10px;
    background-color: #555;
}

.back-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.back-button {
  display: inline-block;
  background-color: #c49a6c;
  color: #f4f4f4;
  font-weight: bold;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 5px #000;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #c49a6c;
}

.help ul {
  list-style: none;
  padding: 0;
  font-size: 1.2em;
}

.help li {
  margin: 10px 0;
}

.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 250px;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #c49a6c;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background-color: #1c1c1c;
  padding: 20px;
  text-align:center;
  height:auto
}

.social-icons a {
  margin: 0 10px;
  color: #c49a6c;
  text-decoration: none;
}

.about-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: auto;
    background: #1e1e1e;
    border: 1px solid #c49a6c;
    padding: 2em;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color:white;
}

.about-container h2 {
    color: #c49a6c;
    text-align: center;
}

.about-container h3 {
    color: #c49a6c;
}

.construction-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: auto;
    background: #444;
    border: 1px solid #c49a6c;
    padding: 2em;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color:white;
}

.construction-container h2 {
    color: #c49a6c;
    text-align: center;
    font-size: 2.0em;
}
.construction-container h3 {
    color: #c49a6c;
}

.volunteer-container {
    position: relative;
    width: 100%;
    max-width: 1275px;
    height: auto;
    background: #1e1e1e;
    border: 1px solid #c49a6c;
    padding: 1.5em;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color:white;
}

.volunteer-container h2 {
    color: #c49a6c;
    text-align: center;
}
.volunteer-container h3 {
    color: #c49a6c;
}

.fundraising-container {
    position: relative;
    width: 100%;
    max-width: 1275px;
    height: auto;
    background: #1e1e1e;
    border: 1px solid #c49a6c;
    padding: 1.5em;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color:white;
}

.fundraising-container h2 {
    color: #c49a6c;
    text-align: center;
}
.fundraising-container h3 {
    color: #c49a6c;
}

/* === Adoption Form === */
.adoption-form {
    max-width: 700px;
    margin: 40px auto;
    margin-top: 100px;
    padding: 40px;
    background-color:#1e1e1e;
    border: 1px solid #c49a6c;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    color: #c49a6c;
    font-size: 1rem;
    line-height: 1.5;
}

.adoption-form h2 {
    color: #c49a6c;
    text-align: center;
    margin-bottom: 20px;
}

.adoption-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px; /* 👈 Adds space between label and field */
    font-weight: bold;
    color: #f4f4f4;
}


.adoption-form input,
.adoption-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #c49a6c;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #f4f4f4;
}

.adoption-form button {
    margin-top: 30px;
    padding: 12px 24px;
    background-color: #c49a6c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 0 5px #000;
}

.adoption-form button:hover {
    background-color: #c49a6c;
}

.gallery {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 100px;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
}

.previous-dog-card {
    flex: 0 1 calc(25% - 1rem);
    box-sizing: border-box;
    padding: 1rem;
    text-align: center;
    border: 1px solid #c49a6c;
    border-radius: 5px;
    background-color: #1e1e1e;
    box-shadow: 0 0 10px #000;
    min-width: 280px;
}

.dog-name {
    font-size: 1.5em;
    color: #c49a6c;
    text-align: center;
    margin-bottom: 1rem;
}

.dog-photo {
    grid-column: 1 / -1;
}

.dog-photo img {
    width: 300px;
    height: 200px;
    object-fit: scale-down;
    border-radius: 10px;
    background-color: #1e1e1e;
}

.acknowledgements-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: auto;
    background: #1e1e1e;
    border: 1px solid #c49a6c;
    padding: 2em;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color:#FFF;
}

.acknowledgements-container h2 {
    color: #c49a6c;
    text-align: center;
}
.acknowledgements-container h3 {
    color: #c49a6c;
}

.carousel-container {
      max-width: 800px;
      margin: 120px auto 40px auto; 
      padding: 1em;
      background-color: #1e1e1e;
      border: 1px solid #c49a6c;
      position: relative;
}

.carousel-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.2em;
      color: #c49a6c;
      margin-bottom: 1em;
}

.carousel-nav .prev,
.carousel-nav .next {
      cursor: pointer;
      font-size: 2em;
}

#carousel-title {
      flex-grow: 1;
      text-align: center;
      font-size: 1.25em;
      margin: 0;
}

.carousel {
      position: relative;
      height: auto;
      visibility: hidden;
}


.carousel.active {
  visibility: visible;
}


.slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
      visibility: hidden;
}

.slide.active {
      opacity: 1;
      position: relative;
      pointer-events: auto;
      visibility: visible;
}
    
.slide-content {
      padding: 1em;
}

.slide-content img {
      max-width: 100%;
      display: block;
      margin: 0 auto 1em auto;
}

.slide-content p {
      margin-bottom: 1em;
      text-align: justify;
}
  
.carousel-container h2 {
    color:  #c49a6c;
}
.carousel-container h3 {
    color:  #c49a6c;
}

.slide h2 {
    color: #c49a6c;
    text-align: center;
}

.carousel-nav h2 {
  flex-grow: 1;
  text-align: center;
  font-size: .9em;
  margin: 0;
}


/* Responsive layout */
@media (max-width: 768px) {

.gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem;
  }

  .previous-dog-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    margin-right: 1rem;
  }

  .hero-content {
    margin-top: 200px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .about-container,
  .construction-container,
  .volunteer-container,
  .fundraising-container,
  .acknowledgements-container {
    padding: 1em;
    margin-top: 80px;
  }


  .slide-content {
    flex-direction: column;
  }

  .slide-content img,
  .slide-content .text {
    flex: 1 1 100%;
  }

  .carousel-container {
    margin-top: 80px;
  }

  #carousel-title {
      font-size: 1em;
}

  .menu-toggle {
    display: block;
  }

  .dogs-buttons {
    margin: 80px auto 30px;
  }

  .dogs-button-area {
    padding: 1rem;
  }

  .dogs-button-area h1 {
    font-size: 1.5em;
    margin-bottom: 1rem;
  }

  .dogs-buttons a {
    display: block;
    margin: 0 auto 1rem auto;
    width: 80%;
    max-width: 250px;
    text-align: center;
  }

  
.nav-links a {
  padding: 15px 0;       /* Increased vertical padding inside each link */
  display: block;
  color: #c49a6c;
  text-decoration: none;
}

.nav-links a:not(:last-child) {
  margin-bottom: 10px;   /* Increased space between links */
}


.nav-links {
  display: none;
  flex-direction: column;
  /*background-color: #2a2a2a;*/
  background-color: #333;
  position: absolute;
  top: 80px;
  /*left: 5%;
  right: 0;*/
  width: 300%;
  padding: 15px 5px;
  text-align: left; /* Align text to the left */
  align-items: flex-start; /* Align items to the left */
}

.navbar-title {
    font-size: 1.2em;
    padding: 5px 10px;
    text-align: center;
    margin: 10px 0;
  }

  .carousel-container {
    margin-top: 80px;
  }

  .nav-links.active {
    display: flex;
  }

 .hero-content {
    margin-top: 150px;
    padding: 0 20px;
    text-align: center;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px; /* adds space before footer */
  }

  .cta-buttons a {
    width: 80%;
    max-width: 250px;
  }

  .dog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 100px;
  }

  .dog-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .dog-info h3 {
    font-size: 1.2em;
    text-align: center;
  }

  .dog-info p {
    font-size: 1em;
    text-align: center;
    padding: 0 10px;
  }


  .newsletter form {
    flex-direction: column;
  }

  footer {
    padding-bottom: 40px;
  }

  .dog-facts-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }

  .dog-fact {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: block;
    color: #c49a6c;
  }

  .value {
    display: block;
    color: #f4f4f4;
  }
  
/* Adjust for smaller screens */
  .construction-container h2 {
        font-size: 1.2em; /* smaller size for tablets and phones */
  }

  .paw-icon {
        height: 60px; /* slightly smaller */
  }
}

/* For very small screens (phones) */
@media (max-width: 480px) {
  .paw-icon {
        height: 40px; /* even smaller */
    }

  .construction-container h2 {
        font-size: 1.0em; /* even smaller for very small screens */
    }
}

