/* --- 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;
}

/* Container for the privacy policy section */
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  line-height: 1.6;
  color: #333;
}

/* Section titles */
.privacy-policy h2,
.privacy-policy h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* General icon sizing */
.privacy-policy i {
  font-size: 1.2rem;
}

/* Paragraph spacing */
.privacy-policy p {
  margin-bottom: 1.2rem;
}

/* Links inside policy */
.privacy-policy a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.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;
  } 

  .privacy-policy {
    padding: 1.5rem 1rem;
  }

  .privacy-policy i {
    font-size: 1rem;
  }

  .follow, .hours, .contact {
    padding-left: 0px;
    padding-right: 0px;
  }
}
