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

body {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: #ffffff;
  padding: 1rem 0;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-title {
  font-size: 2rem;
  font-weight: 500;
}
.site-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-title a:hover {
  color: #ad2a71;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #ad2a71;
}

.site-main {
  flex: 1 0 auto;
}

.masonry-gallery {
  position: relative;
  margin: 2rem 0;
  contain: layout;
}

.gallery-item {
  position: absolute;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 255px;
  margin-bottom: 10px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #f8f8f8;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-caption h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.content-section {
  margin: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #8a1f5a;
}

.newsletter-signup {
  background: linear-gradient(135deg, #ad2a71, #8a1f5a);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  color: white;
  margin: 3rem 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type=email] {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background-color: #ad2a71;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
  background-color: rgb(131.9627906977, 32.0372093023, 86.1953488372);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #f0f0f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ad2a71;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: #ad2a71;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: rgb(131.9627906977, 32.0372093023, 86.1953488372);
}

.site-footer {
  flex-shrink: 0;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #000000;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #ad2a71;
}

.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ad2a71;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  .main-nav ul {
    gap: 1rem;
  }
  .page-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type=email] {
    min-width: auto;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .site-title {
    font-size: 1.5rem;
  }
}
.pswp {
  --pswp-bg: rgba(0, 0, 0, 0.9);
  --pswp-placeholder-bg: rgba(0, 0, 0, 0.9);
}

.pswp__counter {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  color: white;
}

.pswp__button {
  color: white;
}
.pswp__button:hover {
  color: #ad2a71;
}

.gallery-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
}

.gallery-caption {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-caption h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ad2a71;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */