/* Cấu trúc chung */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

header .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2em;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Phần sự kiện */
#events {
  padding: 40px 0;
  background-color: #f0f0f0;
  text-align: center;
}

#events h2 {
  font-size: 2em;
  margin-bottom: 25px;
}

.event-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-card {
  background-color: #fff;
  padding: 20px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.event-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 1em;
  margin-bottom: 15px;
}

.event-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Footer */
#footer {
  background: linear-gradient(
    135deg,
    #000000,
    #fdfdfd
  ); /* Nền gradient đẹp mắt */
  color: #fff;
  padding: 60px 0;
  font-family: "Arial", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Footer-top */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-contact-info h3,
.footer-customer-service h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #fff; /* Màu trắng cho tiêu đề */
}

.footer-contact-info p,
.footer-customer-service li {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Liên kết mạng xã hội */
.social-links {
  margin-top: 20px;
}

.social-links a {
  font-size: 1.6em;
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2); /* Hiệu ứng hover tăng kích thước */
}

/* Liên hệ */
.footer-contact-info i {
  color: #fff;
  margin-right: 10px;
}

/* Dịch vụ khách hàng */
.footer-customer-service {
  flex: 1;
  min-width: 250px;
}

.footer-customer-service .service-links {
  list-style: none;
  padding-left: 0;
  font-size: 1em;
}

.footer-customer-service .service-links li {
  margin-bottom: 10px;
}

.footer-customer-service .service-links li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-customer-service .service-links li a:hover {
  color: #f8f9fa; /* Màu trắng khi hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-contact-info,
  .footer-customer-service {
    text-align: center;
    min-width: 100%;
  }
}
