/*
Theme Name: Bridge Child
Theme URI: http://demo.qodeinteractive.com/bridge/
Description: A child theme of Bridge Theme
Author: Qode Interactive
Author URI: http://www.qodethemes.com/
Version: 1.0.0
Template: bridge
*/
@import url("../bridge/style.css");

/*EVENTPAGINA*/

.events-title {
    font-size: 100px;
    font-weight: 800;
    color: #2c5383; /* donkerblauw */
    margin-bottom: 2rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.event-item:not(:last-child){
     border-bottom: 1px solid #e0e0e0;  
}

.event-date {
    background: #6fa8ff;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    margin-right: 1rem;
    font-size: 18px;
    min-width: 100px;
    text-align: center;
}

.event-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c5383;
    flex-grow: 1;
    margin: 0 1rem;
}

.event-readmore {
    font-weight: 600;
    color: #2c5383;
    text-decoration: none;
    font-size: 20px;
}

.events-overview{
    margin-left: 100px;
    margin-right: 100px;
    font-family: 'Source Sans 3', sans-serif;
}

.event-readmore:hover {
    text-decoration: underline;
}

/*DETAIL EVENTPAGINA*/

/* Container */
.event-detail-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  font-family: 'Source Sans 3', sans-serif;
}

.event-detail-card {
  display: grid;
  grid-template-columns: 40% 60%;
  background: #f7f8ff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1300px;
  width: 100%;
  align-items: center;
}

/* Afbeelding */
.event-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-placeholder {
  background: #d6d6d6;
  height: 100%;
  width: 100%;
}

/* Content */
.event-detail-content {
  padding: 40px;
  color: #2B517A;
}

.event-detail-date {
  background: #71AAFB;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.event-detail-title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
  color: #2B517A;
}

.event-detail-excerpt {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #2B517A;
}

.event-detail-button {
  background: #203a5f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-size: 16px;
}
.event-detail-button:hover {
  background: #102030;
}
