/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #eaeaea;
  overflow-x: hidden;

  /* Faint background logo */
  background-image: url('/img/expression-of-hope.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 600px;
  background-attachment: fixed;
  opacity: 0.98;
}

/* CLASSY CURSIVE HEADERS */
h1, h2, h3 {
  font-family: 'Great Vibes', cursive;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 12px #7b2cbf, 0 0 22px #9d4edd;
  animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 10px #7b2cbf; }
  50% { text-shadow: 0 0 25px #9d4edd; }
  100% { text-shadow: 0 0 10px #7b2cbf; }
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.7);
  border-bottom: 2px solid #7b2cbf;
  backdrop-filter: blur(6px);
}

.logo {
  height: 70px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.08);
}

.parent-logo {
  height: 60px;
  opacity: 0.85;
}

/* SIDE MENU */
#sideMenu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  border-right: 3px solid #7b2cbf;
  transition: 0.35s ease;
  padding: 1rem;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

#sideMenu.open {
  left: 0;
}

.menu-logo {
  width: 100px;
  margin: 0 auto;
  display: block;
}

.side-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #d8b4ff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.side-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px #7b2cbf;
}

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #7b2cbf55, #9d4edd55);
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 1rem auto;
  line-height: 1.7rem;
}

/* BUTTON */
.btn {
  background: #7b2cbf;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  transition: 0.3s ease;
  box-shadow: 0 0 12px #7b2cbf;
}

.btn:hover {
  background: #9d4edd;
  box-shadow: 0 0 20px #9d4edd;
}

/* ABOUT PAGE */
.about-flex {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: flex-start;
}

.about-photo {
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 0 20px #7b2cbf;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.9rem;
  color: #eaeaea;
}

/* GALLERY GRID */
.grid, .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.grid img, .products img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px #7b2cbf;
  transition: 0.3s ease;
}

.grid img:hover, .products img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #9d4edd;
}

/* CONTACT FORM */
form input, form textarea {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  border: 2px solid #7b2cbf;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
}

form button {
  background: #7b2cbf;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 12px #7b2cbf;
  transition: 0.3s;
}

form button:hover {
  background: #9d4edd;
  box-shadow: 0 0 20px #9d4edd;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.8);
  border-top: 2px solid #7b2cbf;
  color: #d8b4ff;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-photo {
    margin: 0 auto;
  }

  header {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    height: 60px;
  }

  .parent-logo {
    height: 50px;
  }
}
