@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

:root {
  --teal: #2ec4b6;
  --coral: #ff6b6b;
  --cream: #fffaf3;
  --gray: #555;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

.logo .script-font {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    Font-weight: 700;
    color: #a0522d;
}
body {
  background: var(--cream);
  color: var(--gray);
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.fade { opacity: 1; }

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}
.logo span { color: var(--coral); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
    url('https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=1200&q=80')
    center/cover no-repeat;
}
.hero-content h1 {
  font-size: 2.4rem;
  color: var(--teal);
  animation: fadeInDown 1s ease forwards;
}
.hero-content p {
  margin: 1rem 0;
  color: var(--gray);
  animation: fadeInUp 1.2s ease forwards;
}
.cta-btn {
  background: var(--coral);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.cta-btn:hover {
  background: var(--teal);
  transform: scale(1.05);
}

.section {
  padding: 6rem 2rem;
  text-align: center;
  animation: fadeIn 0.8s ease;
}
.section h2 {
  color: var(--teal);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 2rem auto 0;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.contact-form button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--coral); }

footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  color: var(--gray);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile single-page behavior */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .nav-links.show { display: flex; }
  .menu-toggle { display: block; }

  /* Show all sections stacked */
  .mobile-section {
    display: block;
  }

  /* Override page transitions (stay on one page) */
  .nav-links a {
    pointer-events: auto;
  }
}
