/*
Theme Name: ET-productions
Theme URI: https://www.etproductions.be/
Author: BRITTvisualdesign
Author URI: https://www.brittvisualdesign.be/
Description: Een maatwerk WordPress-thema voor ET-productions.
Version: 1.0
Text Domain: et-productions
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}



.hero h1 {
  color: white;
  font-size: 3rem;
}

.cta-button {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.custom-header {
  background-color: #000;
  padding: 1.5rem 2rem;
  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-title {
  font-size: 1.5rem;
  margin: 0;
}

.site-description {
  font-size: 1rem;
  margin: 0;
}

/* Header container styling */
.custom-header {
  background-color: #000;
  padding: 1.5rem 2rem;
  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo, titel en slogan */
.site-title-description {
  margin-left: 1rem;
}

.site-title {
  font-size: 1.5rem;
  margin: 0;
}

.site-description {
  font-size: 1rem;
  margin: 0;
}

.custom-header {
  background-color: #000;
  padding: 1.5rem 2rem;
  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between; /* logo links, menu rechts */
  align-items: center;
}

.site-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.custom-logo {
  max-height: 50px;
}

/* Menu */
.main-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-menu li {
  list-style: none;
}

.main-menu li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.main-menu li a:hover {
  color: #00a2ff;
}

/* Force WP gallery naast elkaar (ACF WYSIWYG + Elementor) */
.gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px;
}

.gallery-item {
    float: none !important;
    flex: 0 0 calc(33.333% - 10px) !important;
    max-width: calc(33.333% - 10px) !important;
    box-sizing: border-box;
}

.gallery-icon {
    width: 100%;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobiel: 1 kolom */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

