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

body {
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;*/
	font-family:"Montserrat-Regular", sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(to bottom, rgb(24, 15, 50), rgb(105, 29, 110));
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

@font-face {
  font-family: 'Montserrat-Regular'; /* Nom que vous utiliserez dans votre CSS */
  src: url('../assets/fonts/Montserrat-Regular.woff2') format('woff2'),
  url('../assets/fonts/Montserrat-Regular.woff') format('woff'),
  url('../assets/fonts/Montserrat-Regular.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Caveat Brush'; /* Nom que vous utiliserez dans votre CSS */
  src: url('../assets/fonts/caveatbrush-regular.woff2') format('woff2'),
  url('../assets/fonts/caveatbrush-regular.woff') format('woff'),
  url('../assets/fonts/caveatbrush-regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

:root{
	--white:#ffffff;
	--dark-yellow:#ffc23b;
	--light-yellow:#ffe67d;
	--shadow-yellow:#f9b233;
	--star-turquoise:#5BFFBA;
	--star-pink:#FF88FE;
	--hair-blue:#92C5FC;
	--dark-purple:#4b5563;
	--light-purple:#E9E5F6;
}

nav {
    background: var(--light-purple);
    backdrop-filter: blur(0.625rem);
    padding: 0 1.2rem 0 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 0.063rem solid var(--light-purple);
	font-family:"Caveat Brush", cursive;
}

.navbar{
    position: fixed;
    top:0rem;
    width: 100%;
	transition: top 0.3s;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    width: auto;
}

.logo img{
    height: 3.75rem; 
}

.btn-nav {
    background:var(--dark-yellow);
    background-size: cover;
    color: black !important;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
	font-size:1.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
	font-family:"Caveat Brush", cursive;
}

.btn-nav:hover {
	background:var(--light-yellow);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.625rem 1.563rem rgba(249, 178, 51, 0.3);
}

.hero {
    margin-top: 10rem;
    padding: 1rem 5% 3rem;
    background-size: cover;
    text-align: center;
}

.hero p {
    font-family: "Montserrat-Regular", sans-serif;
	font-size: 1.3rem;
    max-width: 50rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-align: center;
}

.section-heading {
    text-align: center;
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}


.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 5%;
	justify-items:center;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.094rem;
}

/* Footer */
footer {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="footGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(15,23,42);stop-opacity:1" /><stop offset="100%" style="stop-color:rgb(30,41,59);stop-opacity:1" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23footGrad)"/></svg>');
    background-size: cover;
    color: #94a3b8;
    text-align: center;
}

.footer-socials {
	display: flex;
    gap: 0.5rem;
  	justify-content: flex-end; /* Aligne le contenu à droite */
  	padding: 1.25rem;
}

.footer-socials img {
  margin-left: 1rem; /* Espace entre les images */
  height: 3rem;      /* Taille de vos icônes */
}

footer p {
    margin-bottom: 1rem;
}

footer img {

}

.footer-three-column {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr 0.5fr;
    gap: 2rem;
    align-items: center;
    margin: 0rem 0;
	justify-items:center;
	justify-content:center;
    margin-left:auto;
    margin-right:auto;
}

