@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;

    /* lumière douce, presque immatérielle */
    background: radial-gradient(circle at center,
        rgb(245, 243, 235),
        rgb(230, 226, 192),
        rgb(210, 206, 185)
    );

    color: rgba(60, 40, 20, 0.85);

    /* sensation d’espace */
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* CONTENEUR = “espace d’exposition” */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px;
}

/* TITRES = très discrets, presque des labels */
h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(60, 40, 20, 0.75);
    margin-bottom: 30px;
}

h1 {
    font-size: 2.8rem;
    text-align: center;
}

h2 {
    font-size: 1.6rem;
    opacity: 1.2;
}

h3 {
    font-size: 0.8rem;
    text-align: center;
}

/* TEXTE = très “gallery label” */
p {
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 600px;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* IMAGES = objets lumineux */
.photo {
    width: 100%;
    max-width: 650px;
    height: auto;

    display: block;
    margin: 80px auto;

    border-radius: 2px;

    /* effet lumière / profondeur */
    box-shadow:
        0 30px 80px rgba(0,0,0,0.12),
        0 2px 10px rgba(255,255,255,0.2);

    filter: brightness(1.05) contrast(1.05);

    transition: transform 1.2s ease, filter 1.2s ease, box-shadow 1.2s ease;
}

/* interaction très subtile */
.photo:hover {
    transform: scale(1.01);
    filter: brightness(1.15) contrast(1.1);
    box-shadow:
        0 40px 120px rgba(0,0,0,0.18);
}

/* “silence visuel” entre sections */
section {
    margin-bottom: 140px;
}

/* option: disparition des bordures / distractions */
* {
    box-sizing: border-box;
}

a {
    color: rgb(74, 32, 5);
    text-decoration: none;
}