/* ✨ GLOBAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans&family=Playfair+Display:wght@700&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fefefe;
}

/* ✨ HEADER */
#header-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* ✨ LOGO TEXT */
#blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #ff69b4;
  text-shadow: 0 0 5px #ffc0cb, 0 0 10px #ff69b4;
}

/* ✨ NAVIGATION */
#nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#nav a {
  text-decoration: none;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

#nav a:hover {
  color: #E91E63;
}

/* ✨ HERO SECTIONS */
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#intro {
  background-image: url('https://your-image-url.com/intro.jpg');
}

#about {
  background-image: url('https://your-image-url.com/about.jpg');
}

#stories {
  background-image: url('');
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px;
  border-radius: 10px;
}

/* ✨ TYPOGRAPHY */
.hero-section h1 {
  font-size: 650%;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin: 0 0 20px;
}

h2 {
  font-size: 350%;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

h3 {
  font-size: 350%;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

h4 {
  font-size: 250%;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

p {
  font-size: 200%;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

/* ✨ RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  #header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  #nav {
    width: 100%;
    justify-content: flex-start;
    padding-top: 10px;
    gap: 15px;
  }

  .hero-section {
    padding-top: 140px;
  }
}
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px; /* optional: softens corners */
}
#footer {
  background-color: #ffe0eb;
  color: #5c0033;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border-top: 3px double #ff69b4;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer-nav {
  margin-top: 15px;
}

.footer-nav a {
  margin: 0 12px;
  color: #5c0033;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #E91E63;
}
/* ✨ Center Section Headings */
h1, h2, h3, h4 {
  text-align: center;
}
/* ✨ Animated Intro Paragraph */
.intro-paragraph {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



