/* Kế thừa introduce.css nhưng mở rộng thêm */
@import url('introduce.css');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  color: #333;
  transition: opacity 0.8s ease-in;
}

/* Tiêu đề */
.section-title_In {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #2c3e50;
}

/* Container card */
.activities-cards_In {
   display: flex;
  flex-wrap: wrap;        /* ✅ Cho phép các thẻ xuống dòng */
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  
}
.activities-card_In p{
  cursor: pointer;
}
/* Card mỗi hoạt động */
 .box-title {
      
      padding: 16px 24px;
      border-radius: 12px;
      display: inline-block;
      
      
    }

    .activities-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}



.activities-card_In {
  flex: 0 0 280px;
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.activities-card_In:hover {
  transform: scale(1.05);
}

.activities-card_In img {
  width: 100%;
  border-radius: 12px;
}

.activities-card_In h3 {
  margin-top: 16px;
  font-size: 1.2rem;
  color: #333;
}

.activities-card_In p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.side-arrow {
  width: 60px;
  height: 60px;
  font-size: 28px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.side-arrow:hover {
  background-color: #333;
  transform: scale(1.1);
}

/* Nút về đầu trang */
#backToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Modal chi tiết hoạt động */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: center;
}
.modal-content img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.modal-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #333;
}
.modal-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  color: #666;
  cursor: pointer;
}
.close-btn:hover {
  color: #000;
}

.experience-section {
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px 20px;
  background: #fff;
  margin: 40px auto; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 1200px; 
}
.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #555;
  padding: 0 5px;
}

.card-info .rating {
  color: #f39c12; /* Màu vàng sao */
  font-weight: bold;
}

.card-info .views {
  color: #777;
}







