
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

header {
  background: #fff;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 250px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0;
}

nav ul li a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  color: #e91e63;
}

footer {
  background: #fce4ec;
  color: #555;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}


/* Add this to style.css */
.fixed-side-image {
  position: fixed;
  top: 0;
  left: 50vw;
  height: 100vh;
  width: 55vw;
  object-fit: contain;
  z-index: -1;
  opacity: 0.25;
  transform: translateX(-14%);
}

.centered-image {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 117vh;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 4px 0;
}
nav ul.show {
  display: flex !important;
  flex-direction: column;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    width: 100%;
    left: 0;
    z-index: 1000;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 768px) {
    .hamburger {
        display: none !important;
    }
}


/* Ensure header logo displays correctly */
.logo img{max-width:100%;height:auto;display:block;margin:0 auto;}


/* --- Mobile menu fix --- */
@media (max-width: 767px){
  #menu{ display:none; }
  #menu.open{ display:block; }
  .menu-toggle{ cursor:pointer; }
}


/* --- Bigger hamburger icon for mobile --- */
@media (max-width: 767px){
  .menu-toggle, #mobile-menu {
    font-size: 2rem;
  }
}
