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

body {
  font-family: 'Inter', sans-serif;
  background: #fff4f7;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('photos/photo1.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 192, 203, 0.5), rgba(255, 105, 180, 0.3));
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 0 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: opacity 0.5s;
}

.fade-in {
  opacity: 1;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-btn {
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ff9eb6;
  color: white;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: #ff6a8d;
}

/* About Section */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #fffafc;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  text-align: center;
  background: #fef0f5;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.photo-card {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(255, 0, 128, 0.1);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #ffe3ed;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .scroll-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }

  .about p {
    font-size: 1rem;
  }
}
