/* ==========================
   RESET
   ========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fafafa;
  color: #333;
}

/* ==========================
   HEADER & NAVIGATION
   ========================== */

header {
  background: #e8b7b7;
  color: white;
  padding: 20px 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* .header {
  display: flex;
  align-items: center;
  position: relative;
} */

header h1 {
  font-size: 32px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.nav.show {
  display: flex;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 0;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
}

.logo {
  width: 150px;
  border-radius: 8%;
}

.mobile-logo {
  display: none;
}

.desktop-logo {
  display: block;
}

/* Hamburger */

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #f6e7cf;
  font-size: 32px;
  cursor: pointer;
}

/* ==========================
   HERO
   ========================== */

.hero {
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/pupheader.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f6e7cf;
}

.hero h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

/* Amber page */

.hero-amber {
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/amberheader.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #f6e7cf;
}

.hero-contact {
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/contact-hero-large.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: flex-end;
  color: #f6e7cf;
}

.hero-our-story {
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/patricia-and-amber.JPG');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: flex-end;
  color: #f6e7cf;
}

.our-story img {
  max-width: 100%;
  height: auto;
}
.our-story p {
  padding: 20px;
  line-height: 1.6;
  /* text-indent: 2rem; */
}

.our-story {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}
.about-us {
  width: 80%;
  margin: 0 auto;
}
.about-us-float-left {
  float: left;
  width: 500px;
  padding: 20px;
  margin-right: 30px;
}
.about-us-float-right {
  float: right;
  width: 500px;
  padding: 20px;
  margin-left: 30px;
}
.about-us-words {
  font-size: 20px;
  padding-left: 20px;
  line-height: 1.6;
}

.amber {
  font-family: 'Dancing Script', cursive;
  font-size: 70px;
}
.why ul {
  margin-bottom: 50px;
  list-style-image: url(/images/bone.png);
  list-style-position: inside;
}
.head-our-story {
  font-size: 1.5em;
  font-weight: 500;
}

.meet-puppies {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ==========================
   BUTTONS
   ========================== */

.btn {
  background: #e8b7b7;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.btn:hover {
  background: #f6e7cf;
  color: #444;
}

.btn-contact {
  background: #e8b7b7;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  display: inline-block;
  margin-top: 40px;
}

/* ==========================
   GENERAL
   ========================== */

section {
  padding: 70px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #444;
}

.gooddog {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gooddog img {
  width: 250px;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.gooddog img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================
   CARDS
   ========================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
} */

.card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.price {
  color: #ff6b00;
  font-size: 22px;
  font-weight: bold;
  margin-top: 15px;
}

/* ==========================
   ABOUT
   ========================== */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 12px;
}

/* ==========================
   TESTIMONIALS
   ========================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial {
  background: white;
  padding: 25px;
  border-left: 6px solid #e8b7b7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* ==========================
   FOOTER
   ========================== */

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

.footer-link a {
  color: #fafafa;
  text-decoration: none;
}

.footer-link a:hover {
  text-decoration: underline;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
}

.social-media img {
  padding: 10%;
  width: 80%;
}

.social-media a {
  border-radius: 100%;
}

/* ==========================
   MOBILE
   ========================== */

@media (max-width: 800px) {
  .header {
    justify-content: space-between;
    padding: 10px 20px;
  }

  .hamburger {
    display: block;
  }

  .mobile-logo {
    display: block;
  }

  .desktop-logo {
    display: none;
  }

  .logo {
    width: 170px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff8ee;
    flex-direction: column;
    z-index: 10;
    gap: 0;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    color: #444;
    margin: 6px 0;
    padding: 10px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 8%;
  }
}
