* { margin: 0; padding: 0; box-sizing: border-box; }

#petals-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

body {
  font-family: 'Georgia', serif;
  background-color: #fdf6f8;
  color: #4a2d3a;
}

header {
  background: linear-gradient(135deg, #f9e4ee 0%, #ede8f5 100%);
  text-align: center;
  padding: 64px 20px 52px;
  border-bottom: 1px solid #e8c8d8;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.site-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
}

@media (max-width: 540px) {
  .site-logo { max-width: 320px; }
  header { padding: 44px 20px 36px; }
}

nav {
  background-color: #fff0f5;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8c8d8;
  box-shadow: 0 2px 12px rgba(192, 82, 122, 0.07);
}

nav a {
  color: #c0527a;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: #8b2252; }

/* HERO */
.hero {
  text-align: center;
  padding: 44px 20px 40px;
  background: linear-gradient(180deg, #fdf0f5 0%, #fdf6f8 100%);
}

.hero h2 {
  font-size: 2.2rem;
  color: #c0527a;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #7a5060;
}

.hero a.btn {
  display: inline-block;
  border: 1px solid #c0527a;
  color: #c0527a;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.hero a.btn:hover {
  background-color: #c0527a;
  color: #fff;
}

.features-slogan {
  width: 100%;
  text-align: center;
  padding-top: 16px;
  font-style: italic;
  font-size: 1.1rem;
  color: #b090a0;
  letter-spacing: 1px;
}

/* GALLERY */
.gallery-section {
  padding: 60px 20px;
  background-color: #fdf6f8;
}

.gallery-section:nth-child(even) {
  background-color: #f5eef8;
}

.gallery-section h2 {
  text-align: center;
  color: #c0527a;
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #fff0f5;
  border: 2px solid #e8a0bc;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 4px 18px rgba(192, 82, 122, 0.12);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  cursor: zoom-in;
  position: relative;
  z-index: 3;
}

.gallery-item:hover {
  box-shadow: 0 8px 32px rgba(192, 82, 122, 0.28);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fde8f0 0%, #ede8f5 100%);
}

.feature {
  background: #fff;
  border: 1px solid #e8c8d8;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(192, 82, 122, 0.08);
}

.feature .icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature h3 { color: #c0527a; margin-bottom: 12px; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }
.feature p { font-size: 0.95rem; line-height: 1.7; color: #7a5060; }

/* CONTACT */
.contact {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(180deg, #fdf0f5 0%, #fdf6f8 100%);
  border-top: 1px solid #e8c8d8;
}

.contact h2 {
  font-size: 1.8rem;
  color: #c0527a;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact p { font-size: 1rem; margin-bottom: 10px; color: #7a5060; }

.contact a {
  color: #c0527a;
  text-decoration: none;
}

.contact a:hover { text-decoration: underline; }

.contact-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-links a {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-links .email-btn {
  border: 1px solid #c0527a;
  color: #c0527a;
  background: #fff;
}

.contact-links .email-btn:hover {
  background-color: #c0527a;
  color: #fff;
}

.contact-links .fb-btn {
  background-color: #1877f2;
  color: white;
  border: 1px solid #1877f2;
}

.contact-links .fb-btn:hover { background-color: #1558b0; }

/* UNDER DEVELOPMENT */
.gallery-section--dev {
  text-align: center;
}

.under-development {
  padding: 48px 20px;
  color: #a07890;
}

.under-development .dev-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.under-development p {
  font-size: 1rem;
  line-height: 1.9;
  font-style: italic;
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(60, 20, 40, 0.88);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#lightbox.active { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border: 2px solid #e8a0bc;
  padding: 6px;
  background: #fff;
  box-shadow: 0 0 60px rgba(192, 82, 122, 0.4);
  border-radius: 12px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

#lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: #f2c0d0;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}

#lightbox-close:hover { color: #fff; }

#lightbox-prev,
#lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #f2c0d0;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px 18px;
  user-select: none;
  transition: color 0.2s;
}

#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
#lightbox-prev:hover, #lightbox-next:hover { color: #fff; }

footer {
  background: linear-gradient(135deg, #f9e4ee 0%, #ede8f5 100%);
  color: #b090a0;
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-top: 1px solid #e8c8d8;
}

@media (max-width: 540px) {
  html, body {
    overflow-x: hidden;
  }

  nav {
    gap: 16px;
    padding: 12px 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    font-size: 0.78rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .hero {
    padding: 36px 16px 32px;
  }

  .hero h2 {
    font-size: 1.35rem;
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero p {
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }

  .hero a.btn {
    padding: 12px 28px;
    letter-spacing: 1px;
    font-size: 0.85rem;
  }

  .gallery-section h2,
  .contact h2 {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .features {
    padding: 40px 16px;
  }

  .contact {
    padding: 48px 16px;
  }
}

