/**************/
/* CSS REMEDY */
/**************/
*, *::after, *::before {
  box-sizing:border-box;  
}


/*********************/
/* CUSTOM PROPERTIES */
/*********************/
:root {
	--color-text1:#111;
	--secondary-text:white;
	--color-texth2: rgb(129, 99, 86);
	--color-background:#ffffff;
	--secondary-background: rgb(24, 24, 24);
	--brainmassage-background: #f6f4f2;
	--color-button:rgb(255, 255, 255);
} 

/****************/
/* JOUW STYLING */
/****************/

body {
	margin: 0%;
	background-color: var(--color-background);
}

.verborgen { /* bron: https://www.a11yproject.com/posts/how-to-hide-content/ */
	position: absolute;
	width: 1em;
	height: 1em;
	margin: -1em;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
	
}

/* -----------section 1------------------------- */

.top-text {
  background: #262626;
  color: var(--secondary-text);
  text-align: center;
  font-size: 0.75em;
  font-family: unset;
  font-weight: 100;
  list-style: none;
  margin: 0;
  padding: 0.1em 0;

	li {
  		display: none;
	}

	li.active {
  		display: block;
	}

	a {
		color:#c2ae99;
		text-decoration: underline;
	}
}



/* -----------section 2------------------------- */

.navbar {     /* Bron: week 5: Dé JS 3-stap oefening 2 - Hamburger menu*/

  background: 	var(--secondary-background);
  padding: 0 0.6em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

	a {
  		color: var(--secondary-text);
  		height: 3.75em;
  		font-size: 1.25em;
  		font-weight: 600;
  		letter-spacing: 0,4em;
  		text-transform: uppercase;
  		display: flex;
  		align-items: center;
  		text-decoration: none;
	}

	div {
  		display: flex;
  		gap: 18px;
  		align-items: center;
	}

	div button {
  		background: none;
  		border: none;
  		cursor: pointer;
	}

	div img {
  		width: 28px;
  		height: 28px;
  		object-fit: contain;
  		transition: transform 0.2s ease;
	}

	> button {
  		background: none;
  		border: none;
  		padding: 0;
  		cursor: pointer;
	}

	nav {
  		position: fixed;
  		inset: 0;
  		background: var(--secondary-background);
  		transform: translateX(-100%);
  		transition: 0.3s;
  		padding-top: 20px;
  		display: flex;
  		flex-direction: column;
  		z-index: 9999;

  		ul {
  			list-style: none;
  			margin: 0;
  			padding-left: 10px;
			overflow-y: auto;          
		}

		li {
  			padding: 5px 3px;
  			border-bottom: 1px solid rgba(255,255,255,0.06);
		}

		a {
  			color: var(--secondary-text);
  			font-size: 26px;
  			text-decoration: none;
  			font-family: serif;
		}

		div button {
  			background: none;
  			border: none;
  			padding: 10px;
  			cursor: pointer;
		}
	}
}

nav.toonMenu {
  transform: translateX(0);
}

.zoekbalk {
	background: var(--secondary-background);
    padding: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
		
	input {
    	grid-column: 1 / span 2;
    	grid-row: 2;
    	width: 100%;
    	max-width: 500px;
    	padding: 12px 0;

    	background: transparent;
    	border: 1px solid #555;
		border-radius: 10px;
    	color: var(--secondary-text);
    	font-size: 18px;
    	letter-spacing: 1px;
    	outline: none;
	}	

	button {
		grid-column: 1;
    	grid-row: 1;
    	background: none;
    	border: none;
    	cursor: pointer;
    	padding: 0;

		img {
    		width: 20px;
    		height: 20px;
    		display: block;
		}
	}
}


@media (min-width: 64em) {

  .top-text {
    text-align: left;
    padding-left: 1.5em;
  }

  .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 4.5em;
    padding: 0 2em;
  }

  .navbar > button {
    display: none;
  }

  .navbar > a {
    margin-right: 2em;
  }

  .navbar nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
  }

  .navbar nav ul {
    display: flex;
    gap: 1.5em;
    padding: 0;
  }

  .navbar nav li {
    border: none;
    padding: 0;
  }

  .navbar nav a {
    font-size: 0.85em;
    font-weight: 500;
    font-family: serif;
  }

.navbar nav .zoekbalk {
    display: none;
  }

}




/* -----------section 3------------------------- */

.shopnu {
	background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../images/achtergrond1.png");
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
		
	ul {
    	display: flex;
    	overflow-x: auto;
    	gap: 1.2em;
    	padding: 1.5em 1em;
    	margin: 0;
    	list-style: none;
    	scrollbar-width: none;
	}
	
	ul a {
    	text-decoration: none;
    	font-size: 1rem;
		font-family: "Georgia", "Times New Roman", serif;
    	color: var(--secondary-text);
    	font-weight: 100;
    	white-space: nowrap;
    	padding: 6px 10px;
    	border-radius: 20px;
    	transition: background-color 0.2s ease;

		padding: 8px 18px;
    	border-radius: 999px;
    	background: rgba(0, 0, 0, 0.35);
    	backdrop-filter: blur(5px);
	}

	div {
		justify-content: center; 
    	align-items: center;

    	text-align: center;
    	padding: 150px 10px;
	}

	div h3 {
    	color: var(--secondary-text);
    	letter-spacing: 3px;
    	margin: 10px 20px 10px 20px;
	}

	div h2 {
    	color: var(--secondary-text);
    	margin: 10px 0;
	}

	div button{ 
    	display: inline-block;
    	padding: 12px 30px;
    	margin-top: 20px;
    
    	font-family: "Georgia", serif;
    	font-size: 0.9rem;
    	letter-spacing: 2px;
		text-decoration: none;
	}
}


/* -----------section 4------------------------- */

.top-wishlist{
		h2 {
		color: var(--color-texth2);
    	font-family: "ClassGarmnd BT", "Times New Roman", serif;
    	font-size: 12px;
    	letter-spacing: 1.8px;
    	text-transform: uppercase;
		margin: 40px 20px 10px 30px
		}

		h3 {
			color: var(--color-text1);
			font-family: "ClassGarmnd BT", "Times New Roman", serif;
    		letter-spacing: 1.8px;
			font-size: 30px;
			font-weight: 100;
			margin: 20px 30px 20px 30px
		}
}

.wishlist {	
	background-color: var(--color-background);	

	ul{
    	display: flex;
    	overflow-x: auto;
    	gap: 15px;
    	padding: 1.5em 1em;
    	margin: 0;
    	list-style: none;
    	scrollbar-width: none;

    	a {
        	text-decoration: none;
        	color:var(--color-text1);
			display: flex;
  			flex-direction: column;
    	}

    	img {
    	    height: 20em;
    	    object-fit: cover;
        	scroll-snap-align: start;
        	transition: transform 0.3s ease;
        	cursor: pointer;
			order: -1;
    	}

		p:first-of-type, p:last-of-type {
        	color: var(--color-text1);
        	font-family: "Scala Sans Pro", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
        	font-size: 12px;
        	font-weight: 100;
        	margin-bottom: 2px;
    	}

    	p:nth-of-type(2) {
        	color: var(--color-text1);
        	font-family: "ClassGarmnd BT", "Times New Roman", serif;
        	font-size: 20px;
        	font-weight: 100;
        	margin-bottom: 2px;
        	margin-top: 60px;
    	}

		hr {
  			border: none;
  			border-top: 1px solid #ddd;
  			margin: 8px 0;
		}
	}
}

@media (min-width: 50em) {
  .wishlist {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3em;
    align-items: start;
    padding: 3em;
  }

  .wishlist ul {
    padding: 0;
  }
}


/* -----------section 5------------------------- */

.members {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-background);
  gap: 2em;
  margin-top: 5em;
}

.members-text {
  order: 2;
  margin: 0 1.6em 0 1.6em;

  h2 {
    color: var(--color-texth2);
    font-family: "ClassGarmnd BT", "Times New Roman", serif;
    font-size: 0.75em;
    letter-spacing: 0.1125em;
    text-transform: uppercase;
    margin-bottom: 0.75em;
  }

  h3 {
    color: var(--color-texth2);
    font-family: "ClassGarmnd BT", "Times New Roman", serif;
    font-size: 1.1em;
    font-weight: 100;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
	margin-top: 1.2em;
  }

  p {
    color: var(--color-text1);
    font-size: 1em;
    font-family: "Scala Sans Pro", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
    font-weight: 100;
    line-height: 1.6em;
    margin-bottom: 1em;
  }
  
  button {
    display: block;
    margin: 0 auto;
    padding: 1.5em 2.5em;
    background: var(--color-button);
    color: var(--color-text1);
    font-family: "Georgia", serif;
    font-size: 0.7em;
    letter-spacing: 0.2em;
    border: 1px solid #cccccc;
	margin-bottom: 2em;
	}
}

.members-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.members-image img {
    width: 90%;
    height: 20em;
    object-fit: cover;
    display: block;
}

@media (min-width: 46em) {
  .members {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: 75em;
    margin: 0 auto;
    padding: 2.2em;
  }

  .members-image {
    width: 100%;
    height: 32em;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .members-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .members-text {
    width: 45%;
    text-align: left;
    display: flex;
    flex-direction: column;
	margin-left: 0;
	margin-top: 2em;
  }

  .members-text button {
    margin: 2em 0 0 0;
    align-self: flex-start;
  }
}


/* -----------section 6------------------------- */

.ontdekrituals {
	background-color: var(--color-background);
	
	h2 {
		color: var(--color-texth2);
    	font-family: "ClassGarmnd BT", "Times New Roman", serif;
    	font-size: 12px;
    	letter-spacing: 1.8px;
    	text-transform: uppercase;
		margin: 40px 20px 30px 30px;
		text-align: center;
	}
}

.headings-ontdekrituals {
	display: flex;
    flex-wrap: wrap;
    gap: 1em 2em;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 2em;

  	button {
  		background: none;
    	border: none;
    	color: #999;
    	font-size: 2.5em;
    	font-family: serif;
    	cursor: pointer;
    	white-space: nowrap;
	}
}

.headings-ontdekrituals button.is-active {
  color: var(--color-text1);
  border-bottom: 2px solid #000;
}

@media (max-width: 64em) {
    .headings-ontdekrituals button {
        font-size: 2em;
    }
}

@media (max-width: 48em) {
    .headings-ontdekrituals {
        gap: 0.8em 1.2em;
    }
    .headings-ontdekrituals button {
        font-size: 1.5em;
    }
}

@media (max-width: 30em) {
    .headings-ontdekrituals button {
        font-size: 1.2em;
    }
}


.rituals-images {
    padding: 0em;
}

.rituals-images figure {
  display: none;
}

.rituals-images figure img {
    width: 100%;
    height: 18em;   
    object-fit: cover;
    display: block;
}

.rituals-images figure.is-active {
  	display: grid;
    grid-template-columns: 1fr;
	margin: 0em;
}


@media (min-width: 46em) {
    .rituals-images {
        padding: 0em;
    }

    .rituals-images figure.is-active {
        grid-template-columns: 1fr 1.4fr;
        align-items: stretch;
		gap: 0.6em;
		margin: 3em;
    }

    .rituals-images figure img {
        height: 100%;
        object-fit: cover;
    }
}


/* -----------section 7------------------------- */

.simplythebest {
	display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 4em;

    ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5em;
        justify-items: center;
        max-width: 600px;
    }

    ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 200px;
    }

    ul li img {
         height: 5em;
        object-fit: contain;
        margin-bottom: 0.5em;
        cursor: pointer;
        transition: transform 0.3s ease;
	}

    ul li p {
        color: var(--color-text1);
        font-family: "ClassGarmnd BT", "Times New Roman", serif;
        letter-spacing: 1.8px;
        font-size: 0.8em;
        font-weight: 100;
        line-height: 1.6em;
    }
}

.simplythebest-text {
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
        color: var(--color-texth2);
        font-family: "ClassGarmnd BT", "Times New Roman", serif;
        font-size: 0.75em; 
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 0.5em;
    }

    h3 {
        color: var(--color-text1);
        font-family: "ClassGarmnd BT", "Times New Roman", serif;
        font-size: 1.25em;
        text-align: center;
        font-weight: 100;
        margin-bottom: 2em;
    }
}

@media (min-width: 46em) {
    .simplythebest ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 2em;
    }
}

@media (min-width: 64em) {
    .simplythebest {
        grid-template-columns: 1fr 3fr;
        align-items: start;
        gap: 2em;
		    padding: 1em;
    }

    .simplythebest-text {
        text-align: left;
        margin: 0 0 0.5em 0;

		h3 {
			width: 5em;
		}
    }

    .simplythebest ul {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
        gap: 2em;
        justify-items: start; 
    }
}





/* -----------section 7------------------------- */

.brainmassage {
	display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--brainmassage-background);
    margin-top: 0.6em;
    padding: 0.6em 0 0.6em 0;
    gap: 1em;
}

.brainmassage-text {
	order: 2;

	h2 {
		color: var(--color-texth2);
    	font-family: "ClassGarmnd BT", "Times New Roman", serif;
    	font-size: 12px;
    	letter-spacing: 1.8px;
    	text-transform: uppercase;
		margin: 40px 20px 10px 30px
	}

	h3 {
		color: var(--color-text1);
		font-family: "ClassGarmnd BT", "Times New Roman", serif;
    	letter-spacing: 1.8px;
		font-size: 30px;
		font-weight: 100;
		margin: 20px 30px 20px 30px
	}

	p {
		color: var(--color-text1);
		font-size: 17.5px;
		margin: 20px 30px 20px 30px;
		font-family: "Scala Sans Pro", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
  		font-weight: 150;
		line-height: 1.6;
		letter-spacing: 1px;
	}

	button {
	    display: block;
    	margin: 0 auto;
    	padding: 1.5em 2.5em;
    	background: none;
    	color: var(--color-text1);
    	font-family: "Georgia", serif;
    	font-size: 0.7em;
    	letter-spacing: 0.2em;
    	border: 1px solid #cccccc;
		margin-bottom: 2em;
	}
}

.brainmassage-image {
  order: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.brainmassage-image img {
  width: 90%;
  height: 25em;
  object-fit: cover;
  display: block;
}

@media (min-width: 46em) {
  .brainmassage {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 75em;
    margin: 0 auto;
    padding: 4em 3em;
  }

  .brainmassage-image {
    width: 50%;
    order: 1;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .brainmassage-text {
    width: 45%;
    order: 2;
    text-align: left;
  }

  .brainmassage-image img {
    width: 100%;
    height: auto;
  }

  .brainmassage-text button {
	margin: 2em 0em 0em 2.7em;
	align-self: flex-start;
  }
}


/* -----------advent---section 1------------------ */

.event {
	background:	rgb(76, 1, 1);
}

.advent-shopnu {
	background: #9e8867;
	background: linear-gradient(180deg, rgba(158, 136, 103, 1) 0%, rgba(137, 102, 76, 1) 30%, rgba(128, 82, 77, 1) 49%, rgba(121, 55, 53, 1) 67%, rgba(111, 40, 40, 1) 83%, rgba(76, 1, 1, 1) 100%); /* bron: https://cssgradient.io */
  	padding: 2em 1em;
}

.advent-shopnu > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 2em auto;
  max-width: 70rem;
  padding: 2em 1.5em;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.advent-shopnu div h1 {
	order: 2;
	font-size: 1.9em;
	margin: 0;
	color: #fff;
	line-height: 1.2em;
	font-weight: 300;
	}

.advent-shopnu div p:first-of-type {
	order: 1;
  	font-size: 1.1em;
  	margin: 0.25em 0;
	text-transform: uppercase;
	font-weight: 200;
	line-height: 1.5em;
	color: rgb(175, 155, 112);
}

.advent-shopnu div p:last-of-type {
  	order: 3;
	font-size: 1.125em;
  	margin: 0.25em 0;
	line-height: 1.5em;
	color: white;
  	line-height: 1.5em;
}

.advent-shopnu ul {
  	display: flex;
	justify-content: flex-start;
	overflow-x: auto;
	gap: 2em;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0;
	list-style: none;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.advent-shopnu ul li {
  	display: flex;
	flex: 0 0 auto;
}

.advent-shopnu article {
  	background: rgba(255, 255, 255, 0.1);
  	border: 1px solid #b7b7b7;
  	text-align: center;
  	display: flex;
	flex-direction: column;
  	justify-content: space-between;
	align-items: center;
	overflow: visible;
	width: 18em;

	img {
  		order: 1;
  		width: 100%;
  		height: auto;
		margin: -4em 0 -1em 0;
  		border-radius: 0.5em;
	}

	p:first-of-type {
  		order: 2;
  		margin: 0.25em 0;
  		font-size: 0.9em;
		text-transform: uppercase;
		letter-spacing: 0.15em;

  		color: rgb(175, 155, 112);
	}

	h2 {
  		order: 3;
  		font-size: 1.375em;
  		margin: 0.5em 0;
		color: var(--secondary-text);
		font-weight: 100;
		letter-spacing: 0.05em;
	}

	p:nth-of-type(2) {
		order: 4;
		font-weight: bold;
		font-size: 1.125em;
		color: var(--secondary-text);
		margin: 0.25em 0;
		font-weight: 200;
		margin-bottom: 2em;
		
	}

	p:nth-of-type(3) {
		order: 5;
		font-weight: bold;
		font-size: 1.125em;
		color: var(--secondary-text);
		margin: 0.25em 0;
	}

	button {
		order: 6;
		display: inline-block;
  		background: #ffffff;
		color: black;
  		padding: 1.5em 4em;
  		margin: 0.5em 0.25em;
  		text-decoration: none;
  		font-size: 0.8em;
		text-transform: uppercase;
	}

	a {
		order: 7;
		display: inline-block;
		color: #000;
		padding: 0.75em 1.5em;
		margin: 0.5em 0.25em;
		text-decoration: none;
		border-radius: 0.25em;
		font-size: 0.8em;
		font-weight: 100;
		text-transform: uppercase;
	}

	> a:hover {
		background: #000;
		color: #fff;
	}
}


@media (min-width: 64em) {

  .advent-shopnu {
    padding: 5em 3em 6em;
  }

  .advent-shopnu > div {
    display: block;
    text-align: center;
  }

  .advent-shopnu > div h1 {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }

  .advent-shopnu > div h1 br {
    display: none;
  }

  .advent-shopnu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;

    max-width: 90rem;
    margin: 0 auto;

    overflow: visible;
  }

  .advent-shopnu ul li {
    flex: unset;
  }

  .advent-shopnu article {
    width: 100%;
    min-height: 100%;
    padding: 2em 1.5em 2.5em;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .advent-shopnu article img {
    margin-top: -3.5em;
    margin-bottom: 1em;
    max-width: 90%;
  }
}

@media (hover: hover) {
  .advent-shopnu article:hover {
    transform: translateY(-1.25em);
    box-shadow: 0 2em 4em rgba(0, 0, 0, 0.35);
  }
}

.advent-shopnu article img {
  transition: transform 0.35s ease;
}


/* -----------advent---section 2------------------ */

.magischaftellen {
  background-color: rgb(76, 1, 1);
  padding: 2.5em 1.5em 3em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  color: var(--secondary-text);

	> img:first-of-type {
  		width: 100%;
  		height: 23em;
  		object-fit: cover;
  		display: block;

	}
}

.magischaftellen-text {
	text-align: center;

	> p {
  		color: #AD9485;
  		font-size: 0.7em;
  		letter-spacing: 0.18em;
  		text-transform: uppercase;
  		margin: 0;
	}

	> h2 {
  		color: var(--secondary-text);
  		font-family: "ClassGarmnd BT", "Times New Roman", serif;
  		font-size: 1.55em;
  		font-weight: 100;
  		margin: 0 0 0.5em 0;
	}
}

.product-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4em;
  text-align: center;
  padding: 0 4em 0 4em;


	img {
  		order: 1;
  		width: 65%;
  		max-width: 14em;
  		height: auto;
  		object-fit: contain;
  		margin-bottom: 1em;
	}

	h3 {
  		order: 2;
  		color: var(--secondary-text);
  		font-family: "ClassGarmnd BT", "Times New Roman", serif;
  		font-size: 1.4em;
  		font-weight: 100;
  		margin: 0;
	}

	p:first-of-type {
  		order: 3;
  		color: var(--secondary-text);
  		font-size: 0.85em;
  		line-height: 1.7;
  		margin: 0 0 1em 0;
	}

	button:first-of-type {
  		order: 4;
  		padding: 1.2em 2.4em;
  		font-size: 0.65em;
  		letter-spacing: 0.25em;
  		text-transform: uppercase;
  		background: #d8d3ce;
  		color: #000;
  		border: none;
  		margin-bottom: 1.5em;
	}

	p:nth-of-type(2) {
  		order: 5;
  		font-size: 1.3em;
  		font-weight: 100;
  		margin: 0;
	}

	p:nth-of-type(3) {
  		order: 6;
  		font-size: 0.8em;
  		opacity: 0.8;
  		margin: 0 0 1.5em 0;
	}

	button:nth-of-type(2) {
  		order: 7;
  		padding: 1.4em 2.8em;
  		font-size: 0.65em;
  		letter-spacing: 0.25em;
  		text-transform: uppercase;
  		background: none;
  		color: var(--secondary-text);
  		border: 1px solid #fff;
  		width: 100%;
  		max-width: 22em;
  		margin-bottom: 1.5em;
	}

	a {
  		order: 8;
  		color: var(--secondary-text);
  		font-size: 0.75em;
  		letter-spacing: 0.15em;
  		text-transform: uppercase;
  		text-decoration: none;
	}
}

@media (min-width: 46em) {
  	.magischaftellen {
    	display: grid;
    	grid-template-columns: 1.5fr 1fr;
    	column-gap: 3em;
    	padding: 4em 3em;
    	align-items: start;
  
		> img:first-of-type {
    		grid-row: 3;
    		height: 45em;
    		width: 100%;
    		object-fit: cover;
  		}
	}

	.magischaftellen-text {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
	}

  	.product-layout {
    	grid-row: 3;
    	align-items: flex-start;
    	text-align: left;
    	gap: 1em;
  	
  		img {
    		width: 80%;
    		max-width: 18em;
  		}

  		h3 {
    		font-size: 1.6em;
  		}

  		p:first-of-type {
    		font-size: 0.9em;
			max-width: none;
  		}
	}	
}


/* -----------advent---section 3------------------ */

.experts {
  background:	rgb(76, 1, 1);
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5em 1.5em;
  font-family: "Times New Roman", serif;
  color: var(--secondary-text);

	> h2 {
		font-size: 1.6em;
  		font-weight: 400;
  		margin-bottom: 1.5em;
	}

	details {
  		border-top: 1px solid rgb(177, 70, 70);
  		padding: 1.2em 0;
	}

	details:last-child {
  		border-bottom: 1px solid  rgb(177, 70, 70);
	}

	summary {
		list-style: none;
  		cursor: pointer;
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		font-size: 1.05em;
  		font-weight: 400;
	}

	/* ChatGPT (start) */
	summary::after {
  		content: "+";
  		font-size: 1.5em;
  		line-height: 1;
	}

	details[open] summary::after {
  		content: "-";
	}
	/* ChatGPT (eind) */

	ul {
  		list-style: none;
  		margin: 1em 0 0 0;
  		padding: 0;
	}

	li p {
  		margin: 0;
  		font-size: 0.95em;
  		line-height: 1.7;
  		color: var(--secondary-text);
	}
}


/* -----------footer---section 1------------------ */

.blijfopdehoogte {
	background-color: var(--secondary-background);
	color: var(--secondary-text);
	padding: 30px;
	text-align: center;

	h2 {
		color: var(--secondary-text);
		font-family: "ClassGarmnd BT", "Times New Roman", serif;
    	letter-spacing: 1.8px;
		font-size: 28px;
		font-weight: 100;
		margin: 20px 30px 20px 30px;
	}

	p {
		margin: 20px 45px 20px 45px; 
		font-size: 15px; 
		font-weight: 100; 
		line-height: 1.5; 
		letter-spacing: 1px;
	}

	a {
		color:#c2ae99;
		text-decoration: underline;
	}

	input {
    	width: 80%;
    	max-width: 500px;
    	padding: 18px 20px;
    	background: #2d2d2d;
    	border: none;
    	color: var(--secondary-text);
    	font-size: 16px;
    	letter-spacing: 1px;
    	margin-bottom: 25px;
	}

	button {
	    padding: 20px 36px;
    	background: white;
    	color: var(--color-text1);
    	border: none;
    	font-family: "Georgia", serif;
    	font-size: 12px;
    	letter-spacing: 2px;
		background-color: var(--color-button);
	}
}


/* -----------footer---section 2------------------ */

.info {
  background: var(--secondary-background, #111);
  color: var(--secondary-text, #fff);
  font-family: "Times New Roman", serif;
  padding: 2em 1.5em;

	details {
  		border-top: 1px solid rgba(255,255,255,0.25);
  		padding: 1.5em 0;
	}

	details:last-child {
  		border-bottom: 1px solid rgba(255,255,255,0.25);
	}

	summary {
  		list-style: none;
  		cursor: pointer;
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		font-size: 1.2em;
  		font-weight: 400;
	}

	/* ChatGPT (start) */
	summary::after {
  		content: "+";
  		font-size: 1.6em;
  		line-height: 1;
  		transition: transform 0.2s ease;
	}
 
	details[open] summary::after {
  		content: "-";
	}
	/* ChatGPT (eind) */

	ul {
  		list-style: none;
  		padding: 1.5em 0 0 0;
  		margin: 0;
	}

	li {
  		margin-bottom: 1em;
	}

	a {
  		color: rgba(255,255,255,0.75);
  		text-decoration: none;
  		font-size: 1em;
	}
}


/* -----------footer---section 3------------------ */

.overig {
	background:	var(--secondary-background);
    padding:20px;
    color:var(--secondary-text);

	h3 {
		color: #c2ae99;
    	font-family: "ClassGarmnd BT", "Times New Roman", serif;
    	font-size: 12px;
    	letter-spacing: 1.8px;
    	text-transform: uppercase;
		margin: 0px;
	}

	> a {
		display: inline-block;
  		margin-right: 8px;
	}

	img {
		width: 155px;
  		height: auto;
  		display: block;
		margin-top: 15px;
		margin-bottom: 25px;
	}

	p {
		font-size: 14px;
    	margin-bottom: 10px;
    	display: block;
    	opacity: .7;
	}
}


@media (prefers-color-scheme:dark) {
	:root {
		--color-text1:#ffffff;
		--color-texth2: rgb(217, 189, 178);
		--color-background:#313131;
		--brainmassage-background: #717171;
		--color-button:rgb(77, 77, 77);
	}
}