
 
* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; margin: 0; background: #fff; color: #333; }
header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #ddd; position: relative; flex-wrap: wrap; }
.logo img { height: 70px; }
.header-left { display: flex; align-items: center; gap: 20px; }
.search-bar { display: flex; max-width: 300px; width: 100%; }
.search-bar input { padding: 8px; border: 1px solid #ccc; border-radius: 6px 0 0 6px; width: 100%; font-size: 14px; }
.search-bar button { padding: 8px 12px; border: none; background-color: #F2360C; color: white; font-weight: bold; border-radius: 0 6px 6px 0; cursor: pointer; font-size: 14px; white-space: nowrap; }
.search-bar button:hover { background-color: #000; }
.contact { display: flex; gap: 10px; }
.contact a { text-decoration: none; border: 2px solid #F2360C; padding: 6px 12px; border-radius: 6px; color: #F2360C; font-weight: 600; white-space: nowrap; font-size: 14px; }
.menu-toggle { display: none; font-size: 24px; background: none; border: none; cursor: pointer; color: #F2360C; }
.mobile-menu { display: none; flex-direction: column; gap: 10px; margin-top: 10px; width: 100%; }
.mobile-menu .search-bar, .mobile-menu .contact { flex-direction: column; width: 100%; }
.events-section { padding: 20px; }
h2 { margin: 10px 0 10px; font-size: 22px; color: #F2360C; text-align: center; }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.teekiti-header__logout button{
  text-decoration: none; border: 2px solid #F2360C; padding: 6px 12px; border-radius: 6px; color: #F2360C; font-weight: 600; white-space: nowrap; font-size: 14px; 
}
.card-link {
  text-decoration: none;
color: inherit;
display: block;
transition: transform 0.2s ease;
cursor: pointer;
}
.card-link:hover .event-card {
transform: scale(1.02);
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 992px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 600px) { .event-grid { grid-template-columns: 1fr; } }
.event-card { border: 1px solid #ccc; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 6px rgba(0,0,0,0.1); background: white; transition: transform 0.3s ease, box-shadow 0.3s ease;}
.event-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.4s ease;   }
.event-content { padding: 10px; text-align: center; }
.event-title { margin: 0; font-size: 16px; font-weight: 600; background-color: #ffe6eb; color: #333; padding: 8px 0; }
.event-meta-wrap { text-align: left; font-size: 13px; margin-top: 5px; }
.event-meta strong { display: inline-block; min-width: 70px; }
.btn { margin: 10px 0; padding: 10px; font-weight: 600; text-decoration: none; display: block; border-radius: 6px; font-size: 14px; transition: background-color 0.3s ease; }
.btn-primary { background-color: #F2360C; color: white; }
.btn-primary:hover { background-color: #000; color: white; }
.btn-view { color: #F2360C; font-weight: bold; text-decoration: none; display: inline-block; margin-top: 8px; font-size: 14px; }
footer { background-color: #000; text-align: center; padding: 16px 10px; font-size: 14px; color: white; }
@media screen and (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  .header-left { width: 100%; justify-content: space-between; }
  header > .search-bar, header > .contact { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.active { display: flex; }
  .mobile-menu { display: none; flex-direction: column; gap: 10px; margin-top: 10px; width: 100%; }
  .mobile-menu .search-bar { flex-direction: row; max-width: 100%; }
  .mobile-menu .contact a { width: 100%; text-align: center; }
}
 