/* Google Fonts */
body {
  font-family: 'Lato', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

/* === BLOG WRAPPER === */
.articlepage-wrapper {
  max-width: 960px;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* === HERO SECTION === */
.articlepage-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.articlepage-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: brightness(0.7);*/
}

.articlepage-hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
}

.articlepage-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.articlepage-hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === CONTENT SECTION === */
.articlepage-content-section {
  padding: 40px 30px;
  background: #fff;
}

.articlepage-content h2 {
  color: #D98B28;
  margin-top: 30px;
  font-size: 1.4rem;
}

.articlepage-content p {
  margin-bottom: 20px;
}

.articlepage-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.articlepage-content blockquote {
  border-left: 4px solid #D98B28;
  padding-left: 20px;
  margin: 20px 0;
  color: #555;
  font-style: italic;
}

.articlepage-grid {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.articlepage-grid > div {
  flex: 1;
  background: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
}

.articlepage-grid h4 {
  font-size: 1.1rem;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.articlepage-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.articlepage-content th,
.articlepage-content td {
  padding: 10px 12px;
  border: 1px solid #ccc;
}

.articlepage-content th {
  background: #f6f6f6;
  font-weight: 600;
}

/* CTA Box */
.articlepage-cta-box {
  background: #fffbf4;
  padding: 25px;
  border-left: 5px solid #D98B28;
  border-radius: 5px;
  margin-top: 40px;
}

.articlepage-btn {
  background: #D98B28;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 4px;
  margin-top: 15px;
  text-decoration: none;
}

.articlepage-btn:hover {
  background: #b6731f;
}

/* Comments */
.articlepage-comments {
  padding: 40px 30px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.articlepage-comment-list .comment-item {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

.articlepage-comment-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.articlepage-comment-form input,
.articlepage-comment-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.articlepage-comment-form button {
  align-self: start;
  padding: 10px 20px;
  background-color: #D98B28;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
}

.articlepage-comment-form button:hover {
  background: #b6741f;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.amenity-card {
  background: #f9f9f9;
  border-left: 6px solid #D98B28;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.amenity-title {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.amenity-card ul {
  padding-left: 20px;
  list-style: disc;
}

.amenity-card li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}

/* === Wellness & Environment Grid Cards === */
.wellness-grid, .environment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

/* Card Utility */
.wellness-card, .environment-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border-left: 5px solid #D98B28;
  transition: transform 0.2s ease;
}

.wellness-card:hover, .environment-card:hover {
  transform: translateY(-5px);
}

.wellness-card h4,
.environment-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #2e2e2e;
}

.wellness-card ul {
  margin-top: 10px;
  padding-left: 20px;
}

.wellness-card ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #555;
}

/* === Amenities Section === */
.amenities-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.amenity-detail-card {
  background: #f9f9f9;
  padding: 25px;
  border-left: 5px solid #D98B28;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.amenity-detail-card:hover {
  transform: translateY(-4px);
}

.amenity-detail-card h4 {
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.amenity-detail-card ul {
  list-style-type: disc;
  padding-left: 20px;
}

.amenity-cta-text {
  margin-top: 20px;
  font-weight: 500;
  color: #444;
}

/* === Surrounding Section === */
.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 25px;
  margin-bottom: 40px;
}

.surrounding-card {
  background: #f1f1f1;
  padding: 20px 22px;
  border-radius: 8px;
  border-left: 4px solid #D98B28;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.surrounding-card:hover {
  transform: translateY(-5px);
}

.surrounding-card h4 {
  font-size: 1.1rem;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.surrounding-card ul {
  padding-left: 20px;
  margin-top: 10px;
}