@import url('styles.css');

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  max-height: 600px;
  background: url('images/Dog\ Friendly\ Room.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-section.parallax {
  background-attachment: fixed;
  background-size: cover;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  padding: 2.5rem;
  border-radius: 12px;
  color: #fff;
  max-width: 800px;
  width: 90%;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-content .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.hero-content .btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

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

/* Section Labels */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 1rem;
}

/* Pet Policy Section */
.pet-policy-section {
  padding: 4rem 1.25rem;
  background-color: #f9f9f9;
  text-align: center;
}

.pet-policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.policy-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.policy-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
}

.policy-content p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.guest-info p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--dark-color);
  line-height: 1.8;
  margin: 0.5rem 0;
}

.guest-info p strong {
  color: var(--primary-color);
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.policy-note {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--dark-color);
  margin-top: 1.5rem;
}

.policy-content .btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.policy-content .btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }

  .pet-policy-section {
    padding: 2.5rem 1rem;
  }

  .policy-container {
    padding: 1.5rem;
  }

  .policy-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }

  .policy-content h3 {
    font-size: 1.3rem;
  }

  .policy-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .policy-content .btn-primary {
    padding: 0.75rem 1.5rem;
  }
}