/* --- 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;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-image {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.7);
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
  color: #c2185b;
  border-radius: 3px;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.carousel-side-img {
  width: 500px;
  height: 800px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-arrow:hover {
  background-color: rgba(255,255,255,0.9);
}

.carousel-arrow.left {
  left: 1rem;
}

.carousel-arrow.right {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #c2185b;
}

/* --- About Us Section --- */
.about-us {
  background-color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
  box-shadow: 0 2px 6px rgb(194 24 91 / 0.15);
  border-radius: 8px;
}

.about-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c2185b;
  margin-bottom: 1.5rem;
  user-select: none;
}

.about-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* --- 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;
}

.hours {
  padding-left: 90px;
}

.follow {
  padding-left: 40px;
}

.contact {
  padding-right: 20px;
}

.footer-section h4 {
  margin-bottom: 0.75rem;
  color: #c2185b;
  font-size: 1.3rem;
  user-select: none;
}

.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;
}

.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;
  }

  .follow, .hours, .contact {
    padding-left: 0px;
    padding-right: 0px;
  }

  .carousel {
    order: 1;
    width: 100%;
    max-width: 400px;
  }
  .carousel-side-img.left-img {
    order: 2;
    margin-bottom: 10px;
  }
  .carousel-side-img.right-img {
    order: 3;
    margin-top: 10px;
  }

    .carousel-wrapper {
    flex-direction: column;
    align-items: center; /* Center the stacked items */
  }

  /* Make side images and main carousel smaller & fluid */
  .carousel-side-img {
    width: 90%;
    max-width: 400px;
    height: auto;          /* Let height scale with width */
    min-height: 800px;     /* Give them some minimum height */
    object-fit: cover;     /* Keep them nicely cropped */
  }

  .carousel {
    width: 90%;
    max-width: 400px;
    height: auto;
  }

}


