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

:root {
  --cream: #1a473b;
  --ink: #f9efbe;
}

html, body {
  cursor: none;
}

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}

.cursor.hover {
  width: 24px;
  height: 24px;
}

a, button, .photo-card {
  cursor: none;
}

*, *::before, *::after {
  cursor: none !important;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
}

nav {
  position: fixed;
  top: 0; right: 0;
  z-index: 100;
  padding: 2rem 2.5rem;
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-size: 15px;
  color: #a8b58c;
  text-decoration: none;
  opacity: .6;
  transition: opacity .25s;
}

nav a:hover { opacity: 1; }

.logo {
  position: fixed;
  top: -1rem; left: -1.7rem;
  z-index: 100;
  padding: 2rem 2.5rem;
}

.logo img {
  height: 65px;
  width: auto;
}


.layout {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Colonne gauche — image rotative */
.col-image {
  width: 45%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-image img {
  width: 340px;
  height: auto;
  border-radius: 0;
}

/* Colonne droite — texte fixe */
.col-info {
  width: 40%;
  height: 100vh;
  position: fixed;
  right: 18rem;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
}

.description {
  font-size: 15px;
  line-height: 1.7;
  max-width: 50ch;
  position: relative;
  padding-bottom: 1rem;
}

.description::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100vw;
  height: 1px;
  background: #a8b58c;
}

/* Menu mobile */
.menu-btn { display: none; }

.menu-mobile {
  display: flex;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--cream);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity .4s ease, transform .4s ease;
}

.menu-mobile.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-mobile a {
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
  opacity: .8;
}

.menu-mobile a:hover { opacity: 1; }



@media (max-width: 768px) {
   html, body { overflow: hidden; }


  .col-image {
    overflow: auto;
  }

  nav { display: none; }

  .menu-btn {
    display: block;
    position: fixed;
    top: 0.9rem; right: 1.5rem;
    z-index: 200;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .menu-btn img {
    width: 44px;
    height: 44px;
    object-fit: contain; 
    margin-top: 1rem;

  }

  .layout {
    flex-direction: column;
    height: auto;
  }

.col-image {
  width: 100%;
  height: auto;
  padding-top: 9rem;
  padding-bottom: 0rem;
  overflow: visible;
}

 .col-image img {
  margin-top: 4rem;
  width: 280px;
  height: auto;
}

  .col-info {
    width: 100%;
    position: relative;
    top: -8rem; right: auto;
  padding: 2rem 1.5rem 4rem 3rem;
}
}