/* ================================
   MCL Refined Stay Experiences
================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

.mcl-refined-stays {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.mcl-stays-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mcl-stays-header {
  text-align: center;
  margin-bottom: 3rem;
}

.mcl-stays-header h2 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  color: #1f1f1f;
}

.mcl-stays-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* ================================
   Grid Layout (2 x 2)
================================ */

.mcl-stays-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ================================
   Cards
================================ */

.mcl-stay-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #2f6f55;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mcl-stay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.mcl-stay-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: #1f1f1f;
}

.mcl-stay-tag {
  display: inline-block;
  background-color: #e8f0ec;
  color: #2f6f55;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.mcl-stay-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.mcl-stay-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mcl-stay-details li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #333;
}

/* ================================
   Mobile Responsive
================================ */

@media (max-width: 768px) {
  .mcl-stays-grid {
    grid-template-columns: 1fr;
  }

  .mcl-stays-header h2 {
    font-size: 1.9rem;
  }

  .mcl-stay-card {
    padding: 1.6rem;
  }
}





.logo  {
    height: 60px; /* change to any height you want */
    width: auto;  /* keeps the image proportionate */
    display: block; /* removes extra space below image */
}