@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary: #f7825b;
  --primary-dark: #e46a43;
  --outline: #f7a17c;
  --font-family: "Inter", sans-serif;
}

@font-face {
  font-family: 'Basics Serif Free';
  src: url('./assets/font/basics_serif/Basics\ Serif\ -\ Free.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.banner-header {
  background: linear-gradient(to top, #FFFFFF 0%, #E4B0A0 74.04%, #DFA391 85.72%, #DA947F 100%);
  text-align: center;
  color: white;
  height: 300px;
}

.banner-head  {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
   font-family: 'Basics Serif Free';
}

.banner-header .banner-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}

.banner-header .banner-breadcrumb a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.eventslist{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.featured-title {
  text-align: center;
  font-size: 36px;
  padding-top: 5%;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Basics Serif Free';
}

.featured-subtitle {
  text-align: center;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  width: 60%;
  margin-bottom: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}

.event-card {
  background-color: #f2e8e3;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  display: flex;
  gap: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.event-image {
  width: 250px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.event-title {
  font-size: 22px;
  color: #5A303E;
  margin-bottom: 12px;
   font-family: 'Basics Serif Free';
   font-weight: 700;
}

.event-description {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-desc{
    width: 85%;
    padding-left: auto;
    padding-right: auto;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #A5A5A7;
  font-size: 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.meta-row .meta-text {
   color: #A5A5A7;
   font-size: 14px;
     font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
}

.event-meta span::before {
  content: "🎥";
  font-size: 14px;
}

.event-meta span:last-child::before {
  content: "🕐";
}

.learn-more-btn-event {
  background-color: #7B3F50;
  color: white;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.learn-more-btn-event a{
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;

}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  padding: 20px 0;
}

.pagination button {
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: black;
  transition: all 0.3s;
  min-width: 40px;
}

.pagination button:hover {
  background-color: #e29b89;
  color: white;
  border-color: #e29b89;
}

.pagination button.active {
  background-color: #8b6f6f;
  color: white;
  border-color: #8b6f6f;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination button:disabled:hover {
  background-color: white;
  color: #333;
  border-color: #ddd;
}

.pagination .dots {
  border: none;
  background: none;
  cursor: default;
}

.pagination .dots:hover {
  background: none;
  color: #333;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }
.featured-subtitle{
    width: 100%;
}
  .event-image {
    width: 100%;
    height: 200px;
  }
  .eventslist{
    width: 100%;
  }

  .event-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .banner-header h1 {
    font-size: 36px;
  }

  .featured-title {
    font-size: 32px;
  }
  .event-desc{
    width: 100%;
    padding-left: auto;
    padding-right: auto;
}
.event-title {
  font-size: 18px;
  color: #5A303E;
  margin-bottom: 12px;
   font-family: 'Basics Serif Free';
   font-weight: 700;
}

.event-description {
  color: #000000;
    font-size: 12px !important;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
}
.meta-text{
    font-size: 14px !important;
}
.banner-header {
  background: linear-gradient(to top, #FFFFFF 0%, #E4B0A0 74.04%, #DFA391 85.72%, #DA947F 100%);
  text-align: center;
  color: white;
  height: 350px;
}
.banner-head  {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.7;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Basics Serif Free';
}
  .banner-header{
    height: 250px;
  }
}

@media (min-width: 200px) and (max-width: 320px) {
  .banner-header{
    height: 250px;
  }
}
