/* glow de la souris*/

.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(245, 119, 192, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(255, 0, 150, 0.6);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
}

/* barre de nav */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #000000;
}

header {
    background-color: #000000;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    width: 150px;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
}

.navbar .menu a:hover {
    color: #ffbce4;
}

.navbar .menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffbce4;
    transition: 0.3s;
}

.navbar .menu a:hover::after {
    width: 100%;
}

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

.parallax {
  background-image: url('img/print2.png');
  height: 50vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 0;
}

@media screen and (max-width: 900px) {
  .parallax {
      height: 30vh;
      margin-top: 0;
  }
}

/* Logo animé centré */
.logo-animé {
    position: absolute; /* Position absolue par rapport à .parallax */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centre parfaitement le logo */
    height: 10vh;
    
}


@media screen and (max-width: 900px){
    .logo-animé {
            height: 10vh;


}}




header {
  margin-bottom: 0;
  padding-bottom: 0;
}

.content {
    background-color: rgb(0, 0, 0);
    padding: 50px;
    text-align: center;
    font-size: 1.5rem;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    transition: text-shadow 0.3s ease;
}

h1:hover {
    text-shadow: 0 0 10px rgb(238, 83, 150), 0 0 20px pink, 0 0 30px pink;
}

.gallery {
    text-align: center;
    padding: 50px 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.grid-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.grid-item:hover img {
    transform: scale(1.1);
}

footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}
