/* --- Reset & Base --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #fffafc;
  color: #444;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(50deg, #000, #c2185b, pink, #fff, #eee);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Links */
a {
  color: #c2185b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- Header --- */
header {
  background-color: #fffafc;
  padding: 1rem 2rem;
  border-bottom: 2px solid #c2185b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.Logo a {
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-michelle {
  font-family: 'kapakana', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: #c2185b;
  user-select: none;
  display: inline-block;
  transform: rotate(-4deg);
}

.logo-sub {
  font-family: 'hanken grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  user-select: none;
  margin-top: -25px;
  padding: 0px 50px;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-menu li a {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #8b0047;
}

/* Hamburger menu toggle (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #c2185b;
}

/* --- Footer --- */
footer {
  background-color: #f8f2f6;
  padding: 2.5rem 1rem;
  color: #444;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
  padding-bottom: 20px;
}

.footer-section h4 {
  margin-bottom: 0.75rem;
  color: #c2185b;
  font-size: 1.3rem;
  user-select: none;
}

.hours {
  padding-left: 90px;
}

.follow {
  padding-left: 40px;
}

.contact {
  padding-right: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

.social-embeded a {
  color: #444;
  transition: color 0.3s ease;
}

.social-embeded a:hover {
  color: #c2185b;
}

/* --- Gallery --- */
.gallery-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.gallery-container h2 {
  font-family: 'Playfair Display', serif;
  color: #c2185b;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  user-select: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  /*box-shadow: 0 2px 6px rgba(194, 24, 91, 0.15);*/
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  margin-bottom: 1rem;
}
.close {
  position: absolute; top: 20px; right: 40px;
  color: #fff; font-size: 2rem; cursor: pointer;
}
.arrow {
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer;
  position: absolute; top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.arrow.left { left: 40px;
   
}

.arrow.right { right: 40px; 

}


.site-info  {
  text-align: center;
  border-top: 2px solid #c2185b;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 20px 0px 0px 0px;   /* Tight vertical padding */
  line-height: 1.2;
}

.site-info p,
.site-info nav {
  margin: 0;
  padding: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: #fffafc;
    padding: 1rem 0;
    border-top: 1px solid #c2185b;
  }

  .nav-menu.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  header {
    justify-content: space-between;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .follow, .hours, .contact {
    padding-left: 0px;
    padding-right: 0px;
  }
}
