body {
  min-height: 100vh;
  margin: 0;
  background: #F7F5EE;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Glowing Cursor */
#glowing-cursor {
  position: fixed;
  left: -100px;
  top: -100px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: linear-gradient(135deg, #fdc468 0%, #df4996 100%);
  box-shadow: 0 0 10px 2px #fdc46866, 0 0 4px 0 #df499666;
  opacity: 0.68;
  transition: left 0.07s cubic-bezier(.4,0,.2,1), top 0.07s cubic-bezier(.4,0,.2,1);
}

/* Universal box-sizing for safety */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Navbar */
#navbar {
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #FBF6EE;
  z-index: 50;
  box-shadow: 0 2px 10px 0 rgba(190, 200, 210, 0.07);
  border-bottom: 1.5px solid #F8ECD6;
  backdrop-filter: blur(5px);
}

/* Left logo + title */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E6E6E6;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 1px 6px 0 rgba(190,200,210,0.07);
}

.site-title {
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  color: #3E4145;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Right links + social */
.navbar-right {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  min-width: 0;
  flex-wrap: wrap;
}

/* Nav Links */
.navbar-links {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  align-items: center;
}

/* Socials */
.navbar-social {
  display: flex;
  flex-direction: row;
  gap: 1.1rem;
  align-items: center;
}

/* Links */
#navbar a {
  color: #3E4145;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
#navbar a:hover {
  text-decoration: underline;
  color: #C13584;
}

/* Icon Buttons */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin: 0;
  box-shadow: 0 2px 6px 0 rgba(190,200,210,0.12);
  transition: transform 0.18s;
}
.icon-btn:hover { transform: scale(1.1); }
.icon-btn.whatsapp { background: #E6F7DD; border: 1.5px solid #BFDFF7; }
.icon-btn.whatsapp .bi { color: #25D366; font-size: 22px; }
.icon-btn.instagram { background: #FFE5EC; border: 1.5px solid #F4B6C2; }
.icon-btn.instagram .bi { color: #C13584; font-size: 21px; }


/* ----- MOBILE NAVBAR ----- */
@media (max-width: 700px) {
  #navbar {
    flex-direction: column;
    align-items: center;
    padding: 1.1rem 2vw 0.7rem 2vw;
    row-gap: 0.4rem;
  }
  .navbar-left {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.13rem;
    margin-bottom: 0.1rem;
    display: flex;
  }
  .logo {
    margin-bottom: 0.22rem;
    width: 54px;
    height: 54px;
  }
  .site-title {
    text-align: center;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.13rem;
    width: 100%;
    letter-spacing: 0.2px;
  }
  .navbar-right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.12rem 0;
    display: flex;
  }
  .navbar-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 0.16rem;
    align-items: center;
  }
  .navbar-links a {
    font-size: 0.99rem;
    margin: 0 3px;
    padding: 2px 0;
    display: inline-block;
  }
  .navbar-social {
    display: flex;
    flex-direction: row;   /* <<< KEY: icons side by side on mobile */
    gap: 1.1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0.05rem;
  }
  .icon-btn {
    margin: 0;
  }
}

/* Even tighter for tiny screens */
@media (max-width: 480px) {
  .logo {
    width: 45px;
    height: 45px;
  }
  .site-title {
    font-size: 0.96rem;
  }
  .navbar-links a {
    font-size: 0.93rem;
  }
  .navbar-links { gap: 0.43rem; }
  .navbar-social { gap: 0.7rem; }
}



/* Hero */
header#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 8px 24px 8px;
  background: #F4F1ED;
}
.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 1px 8px 0 rgba(190,200,210,0.18);
  border: 1px solid #ECECEC;
}
header h1 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #3E4145;
}
.hero-tagline {
  margin-top: 8px;
  font-size: 1.14rem;
  text-align: center;
  color: #8F8B87;
  font-family: 'Quicksand', sans-serif;
}

/* Highlight Section */
.highlight-section {
  max-width: 830px;
  margin: 36px auto 0 auto;
  background: #F4F1ED;
  border-radius: 1.5rem;
  box-shadow: 0 1px 6px 0 rgba(190,200,210,0.07);
  padding: 22px 18px 18px 18px;
  transition: background 0.5s, box-shadow 0.3s, transform 0.35s;
}
.highlight-section:hover {
  background: linear-gradient(120deg, #FFE5EC 0%, #F7E7CE 60%, #E6F7DD 100%);
  box-shadow: 0 16px 40px 0 rgba(190, 200, 210, 0.20), 0 6px 24px 0 #F7E7CE;
  transform: translateY(-8px) scale(1.018);
  z-index: 2;
}
.highlight-section.reverse {
  flex-direction: row-reverse;
}
.highlight-section h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #3E4145;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.16;
}

/* List & Info */
.highlight-section ul {
  padding-left: 20px;
  color: #3E4145;
  font-size: 1.09rem;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 0;
}
.location-info {
  color: #3E4145;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.location-info a { color: #808080; text-decoration: none; }
.location-info .map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(190,200,210,0.15);
  height: 180px;
  margin-top: 16px;
  margin-bottom: 12px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 9px;
}
.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  padding: 10px 13px;
  border: 1px solid #E2E2E2;
  background: #F7F5EE;
  font-size: 1rem;
  color: #3E4145;
  font-family: 'Quicksand', sans-serif;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #BFDFF7;
  background: #fff;
}
.contact-form button {
  margin-top: 4px;
  border-radius: 0.7rem;
  font-weight: 600;
  padding: 10px 0;
  background: #BFDFF7;
  color: #3E4145;
  font-family: 'Montserrat', sans-serif;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.contact-form button:hover { background: #E6F7DD; }

/* Floating Icons */
#floating-icons { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 12; }
.float-icon {
  position: fixed;
  opacity: 0.33;
  z-index: 12;
  animation: stationeryFloat 7s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(0.5px);
  transition: opacity 0.4s;
}
@keyframes stationeryFloat {
  0% { transform: translateY(0) scale(1); }
  60% { transform: translateY(-22px) scale(1.1); }
  100% { transform: translateY(12px) scale(1.03); }
}

/* Footer */
footer {
  text-align: center;
  padding: 18px 0 12px 0;
  font-size: 0.97rem;
  color: #8F8B87;
  font-family: 'Quicksand', sans-serif;
  margin-top: 40px;
  background: transparent;
  border: none;
}

/* Responsive Design */
@media (max-width: 700px) {
  .highlight-section { padding: 13px 4vw; }
  .location-info .map { height: 130px; }
  .navbar-right { gap: 9px; }
  .site-title { font-size: 1rem; }
  header h1 { font-size: 1.28rem; }
  .hero-logo { width: 72px; height: 72px; }
}

@media (max-width: 480px) {
  #navbar { flex-direction: column; padding: 0.55rem 4vw; }
  .navbar-left, .navbar-right { width: 100%; justify-content: center; }
  .site-title { font-size: 0.98rem; }
  .highlight-section h2 { font-size: 1.09rem; }
}

/* Thank You Message Styling */
#thank-you {
  text-align: center;
  padding: 40px 20px;
}

#thank-you h2 {
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  color: #3E4145;
  font-weight: 600;
  margin-bottom: 12px;
}

.thank-message {
  font-size: 1.1rem;
  font-family: 'Quicksand', sans-serif;
  color: #4E4E4E;
  margin-bottom: 10px;
}

.thank-subtext {
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  color: #6F6F6F;
}

.back-home-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 0.6rem;
  background: #E6F7DD;
  color: #3E4145;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.back-home-btn:hover {
  background: #BFDFF7;
}
