/* ============================================
   ABOUT SECTION STYLES
   ============================================ */

.about-section {
  padding: 160px 20px 100px;
  background: #f9f9f9;
}

.about-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro .lead {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.yurt-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.yurt-link:hover {
  border-bottom-color: #ff6b35;
}

/* Airbnb button with brand styling */
.yurt-buttons {
  display: flex;
  gap: 15px;
  margin: 1.5rem 0 2rem 0;
  flex-wrap: wrap;
}

.airbnb-button,
.whatsapp-yurt-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 250px;
  justify-content: center;
}

.airbnb-button {
  background: #ff5a5f;
  box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.airbnb-button:hover {
  background: #e0484e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
}

.whatsapp-yurt-button {
  background: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-yurt-button:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.airbnb-logo {
  width: 24px;
  height: 24px;
  fill: white;
}

.about-location,
.about-contact {
  margin-top: 2rem;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-location h4,
.about-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.about-location p {
  margin: 0;
}

.phone-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #ff8c42;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-intro .lead {
    font-size: 1.2rem;
  }

  .yurt-buttons {
    flex-direction: column;
  }

  .airbnb-button,
  .whatsapp-yurt-button {
    min-width: 100%;
  }
}
