
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body {
    background: #000;
    color: #e6f9ff;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid skyblue;
}

.logo {
    height: 70px;
}

.burger {
    font-size: 28px;
    color: skyblue;
    cursor: pointer;
}

h1 {
	font-size: 28px;
	font-family: "EB Garamond", serif;
	font-style: italic;
	padding-left: 1%;
	padding-top: 10px;
	padding-bottom: 10px;
	letter-spacing: 2px;
	text-decoration-line: underline;
	text-decoration-color: skyblue;
	margin: 10px;
}

h2 {
	font-size: 24px;
	font-family: "EB Garamond", serif;
	font-style: italic;
	padding-left: 1%;
	padding-top: 10px;
	padding-bottom: 10px;
	letter-spacing: 2px;
	text-decoration-line: underline;
	text-decoration-color: skyblue;
	text-align: center;
	margin: 10px;
}

p {
	font-size: 22px;
	font-style: italic;
	font-family: "EB Garamond", serif;
	margin: 20px;
	letter-spacing: 2px;
}

a
{
	color: skyblue;
	text-decoration: none;
}

a:hover{
	color: white;
	text-decoration: none;
}

#image div img {
  display: block;
  margin: auto;
	border-radius: 20px;
	border-style: solid;
	border-color: skyblue;
	padding: 2px;
  }

input, select {
	width: 320px;
	height: 50px;	
	border: 2px solid skyblue;
	border-radius: 0;
	-webkit-appearance: none;
}

textarea {
	width: 320px;
	height: 200px;	
	border: 2px solid skyblue;
	border-radius: 0;
	-webkit-appearance: none;
}

input[type="text"] {
	border: 2px solid skyblue;
	border-radius: 0;
	-webkit-appearance: none;
}

/* NAV MOBILE */
#mobile-nav {
    display: none;
    flex-direction: column;
    background: #000;
    border-bottom: 1px solid skyblue;
}

#mobile-nav.open {
    display: flex;
}

#mobile-nav a {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: skyblue;
    border-top: 1px solid #111;
}

/* SECTIONS */
.section {
    padding: 70px 20px;
    text-align: center;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid skyblue;
}

footer a {
    color: skyblue;
    text-decoration: none;
}

/* FADE ANIMATION */
.fade {
    animation: fadeIn 1.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* COOKIE BANNER */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    padding: 15px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid skyblue;
}

#cookie-banner button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}

#cookie-banner button:first-child {
    background: skyblue;
}

#cookie-banner button:last-child {
    background: #333;
    color: white;
}

/* POPUP RGPD */
#rgpd-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.popup {
    background: #000;
    border: 1px solid skyblue;
    padding: 30px;
    max-width: 600px;
    width: 90%;
}

.popup h2, .popup h3 {
    margin-bottom: 10px;
    color: skyblue;
}

.popup p {
    margin-bottom: 15px;
    font-size: 14px;
}

.close {
    float: right;
    cursor: pointer;
    color: skyblue;
}
