/*
 Theme Name:   stemlp
 Theme URI:    https://stemlp.nl/
 Description:  Child theme for Twenty Twenty-Five
 Author:       stemlp
 Author URI:   https://stemlp.nl/
 Template:     twentytwentyfive
 Version:      0.0.1
*/

/* Add your custom CSS below */
.footer-nav ul li a::before {
    content: "\f061";
    display: inline-block;
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-right: 10px;
    color: #666666;
  }

.footer-title:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--wp--preset--color--accent-3);
    margin-right: 10px;
    border-radius: 50%;
}

footer {
  color: var(--wp--preset--color--base);
  background-color: var(--wp--preset--color--contrast);
}


/* Base header styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

main {
  padding-top: 20px;
}

header > div {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  */
  padding: 20px 40px;
  color: var(--wp--preset--color--base);
  background-color: var(--wp--preset--color--contrast);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .header-logo img {
  height: 60px;
  transition: height 0.3s ease;
}

header .nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Cover section */
#site-header .header-cover {
  width: 100%;
  height: 300px; /* large cover height */
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}

#site-header .header-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shrunk state */
#site-header.header-shrink .header-cover {
  height: 0;
  opacity: 0;
}

#site-header.header-shrink .header-logo img {
  height: 40px;
}


.wp-block-cover {
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}

.em-events-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--wp--preset--spacing--50);
}

@media (max-width: 600px) {
  .em-events-list {
    grid-template-columns: 1fr;
  }
}
.em-item {
	position: relative;
	font-size: var(--wp--preset--font-size--medium);
}

.em-item-image {
  align-items: center;
  background-position: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  overflow: clip;
  padding: 1em;
  position: relative;
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}

.em-item-image img {
  border: none;
  bottom: 0;
  box-shadow: none;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.em-event-add-to-calendar {
  border: none;
  border-radius: 0px;
  font-size: var(--wp--preset--font-size--medium);
  color: #fff;
  background-color: #03254c;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1em 2.25em;
  margin: 2em 0;
}

.em-item-single .em-item-image {
	display: none;
}