@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&family=Josefin+Sans:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #3c3a36;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

/* Fixed Contact Bar */
.fixed-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #867943;
  color: #fff;
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  animation: slideUp 0.5s ease-out 1s both;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.fixed-contact__text {
  font-size: 1.1rem;
  font-weight: 400;
}

.fixed-contact__tel {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.fixed-contact__tel:hover {
  transform: scale(1.05);
}

.fixed-contact__button {
  background: #fff;
  color: #867943;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.fixed-contact__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #f2f1ed 0%, #fff 100%);
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__logo {
  width: 180px;
  margin-bottom: 25px;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #867943;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero__title strong {
  font-weight: 600;
  font-size: 1.1em;
  display: block;
  color: #3c3a36;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero__price {
  background: linear-gradient(45deg, #867943, #a49658);
  color: #fff;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 5px 20px rgba(134, 121, 67, 0.3);
}

.hero__price::before {
  content: "特別価格";
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero__features {
  list-style: none;
  margin-bottom: 30px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero__feature i {
  color: #867943;
  font-size: 1.1rem;
  width: 18px;
}

.hero__cta {
  display: inline-block;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero__cta:hover {
  background: linear-gradient(45deg, #c0392b, #a93226);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.hero__visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__image-main {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  height: 350px;
}

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

.hero__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  color: #867943;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero__form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__form-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #3c3a36;
  margin-bottom: 15px;
  text-align: center;
}

.hero__form-subtitle {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

.hero__form .form__group {
  margin-bottom: 18px;
}

.hero__form .form__input {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #f2f1ed;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hero__form .form__input:focus {
  outline: none;
  border-color: #867943;
}

.hero__form .form__submit {
  width: 100%;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.hero__form .form__submit:hover {
  background: linear-gradient(45deg, #c0392b, #a93226);
  transform: translateY(-2px);
}

.hero__form-tel {
  text-align: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f2f1ed;
}

.hero__form-tel-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}

.hero__form-tel-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: #867943;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.hero__form-tel-number:hover {
  transform: scale(1.05);
}

/* Available Puppies */
.puppies {
  padding: 80px 0;
  background: #fafafa;
}

.section__title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 300;
  color: #867943;
  margin-bottom: 15px;
}

.section__subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

.puppies__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.puppy__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.puppy__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.puppy__status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 1;
}

.puppy__status--available {
  background: #27ae60;
}

.puppy__status--reserved {
  background: #f39c12;
}

.puppy__image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.puppy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.puppy__card:hover .puppy__image img {
  transform: scale(1.08);
}

.puppy__content {
  padding: 30px;
}

.puppy__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
}

.puppy__name {
  font-size: 1.2rem;
  font-weight: 500;
  color: #3c3a36;
}

.puppy__gender {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #867943;
  font-size: 1rem;
}

.puppy__details {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.puppy__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.puppy__feature {
  background: #f2f1ed;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #666;
}

.puppy__price {
  font-size: 1.6rem;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.puppy__price-original {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.puppy__cta {
  width: 100%;
  background: #867943;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.puppy__cta:hover {
  background: #a49658;
  transform: translateY(-2px);
}

/* Why Choose Us */
.why-us {
  padding: 80px 0;
  background: #fff;
}

.why-us__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.why-us__item {
  text-align: center;
  padding: 25px 15px;
  background: #fafafa;
  border-radius: 18px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us__item:hover {
  background: #f2f1ed;
  transform: translateY(-5px);
}

.why-us__icon {
  font-size: 2.5rem;
  color: #867943;
  margin-bottom: 15px;
}

.why-us__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #3c3a36;
  margin-bottom: 12px;
}

.why-us__description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Contact Form */
.contact {
  padding: 80px 0 130px;
  background: #f2f1ed;
}

.contact__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact__box {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
}

.form__input,
.form__textarea {
  padding: 14px 18px;
  border: 2px solid #f2f1ed;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #867943;
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__submit {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 16px 35px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 15px;
}

.form__submit:hover {
  background: linear-gradient(45deg, #c0392b, #a93226);
  transform: translateY(-2px);
}

.contact__info {
  text-align: center;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #f2f1ed;
}

.contact__info-title {
  font-size: 1.2rem;
  color: #867943;
  margin-bottom: 15px;
}

.contact__info-tel {
  font-size: 1.8rem;
  color: #3c3a36;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__info-tel:hover {
  color: #867943;
}

.contact__info-hours {
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.footer {
  background: #3c3a36;
  color: #fff;
  padding: 35px 0;
  text-align: center;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__logo {
  font-size: 1.4rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer__address {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-contact {
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .fixed-contact__text {
    display: none;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .hero__logo {
    margin: 0 auto 25px;
  }

  .hero__features {
    text-align: left;
    max-width: 280px;
    margin: 0 auto 35px;
  }

  .hero__form {
    max-width: 380px;
    margin: 0 auto;
    padding: 30px 25px;
  }

  .puppies__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .contact__box {
    padding: 35px 25px;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 2rem;
  }
}

/* Loading */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f2f1ed;
  border-top-color: #867943;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
