/* === Reset général === */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* empêche le scroll horizontal */
}

body {
    margin: 0px;
    font-family: Arial, sans-serif;
    background-color: #13526f;
    color: white;
    width: 100%;
}

/* === Header === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2vw;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: clamp(1.2rem, 4vw, 2rem);
}

/* === Navigation === */
nav {
    padding-right: 5vw;
}

nav a {
    color: white;
    margin: 0.6vw;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 1.8rem);
    padding: 0.3rem 0.8rem;
    font-family: "Arial Rounded MT Bold", Arial, sans-serif;
    transition: all 0.4s ease;
}

nav a:hover,
nav a.active {
    color: #111111;
    background-color: #13526f;
    font-weight: bolder;
    border-radius: 20px;
}


/* === Footer === */
footer {
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
    background-color: black;
    z-index: 3;
}

.etsy-logo-circle {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Logo */
.etsy-logo-circle img {
    width: 120px;
    height: auto;
    z-index: 2;
    position: relative;
}

/* Cercle noir invisible au départ */
.etsy-logo-circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background-color: black;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0); /* cercle réduit à 0 */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

/* Effet au survol */
.etsy-logo-circle:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

/* Effet au clic (active seulement pendant le clic) */
.etsy-logo-circle:active::before {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

main {
    display: flex;
    justify-content: center;  /* centre horizontalement */
    align-items: center;      /* centre verticalement */
    min-height: 100vh;        /* prend toute la hauteur de la fenêtre */
}

.etsy-section {
    display: flex;
    flex-direction: column; /* empile le texte et l'image */
    justify-content: center;
    align-items: center;
    gap: 15px; /* espace entre le texte et l'image */
    min-height: 100vh; /* centre verticalement dans la page */

}

.etsy-section p {
    margin: 0;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 1.8rem);
    margin-bottom: 20%;
    font-family: "Arial Rounded MT Bold", Arial, sans-serif;

}
.map-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.map-container iframe {
    max-width: 90%;  /* pour être responsive */
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
