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

/* 🌈 Body Gradient — Pink to Green */
body {
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #ff00cc, #a3ffae, #1f4037);
  color: #000;
  line-height: 1.6;
  padding: 1rem;
}


/* ✨ Glow Text Styling */
.glow-text {
  color: #000;
  text-shadow:
    0 0 4px #ff99cc,
    0 0 8px #ccfff2;
  transition: text-shadow 0.3s ease-in-out;
}

/* 🌅 Banner Image */
.top-banner {
  width: 100%;
  height: auto;
  border-bottom: 4px solid #ff99cc;
  box-shadow: 0 4px 12px rgba(255, 153, 204, 0.3);
  margin-bottom: 1rem;
}

/* 🧭 Navigation */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

nav ul li a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff66cc;
}

nav ul li a.active {
  color: #ff66cc;
  font-weight: bold;
  text-decoration: underline;
}

/* ✨ Headings & Glow Text */
h1, h2, .glow-text {
  text-align: center;
  color: #1f4037;
  text-shadow: 0 0 6px #ff99cc;
  margin-bottom: 1rem;
  transition: text-shadow 0.3s ease-in-out;
}

/* 📖 Sections */
section {
  padding: 2rem 1rem;
}

/* 📸 Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.03);
}

/* ✨ CTA Image */
.cta-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* 👤 About Section Layout */
.newspaper-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sam-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.sam-photo {
  max-width: 300px;
}

/* 📖 About Text */
.about-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* 🔮 Booking */
.book-reading {
  background: #fff0f5;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 8px rgba(255, 204, 255, 0.5);
  text-align: center;
  max-width: 700px;
  margin: 2rem auto;
}

/* 🪐 Footer */
footer {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  bottom: 0;
  left: 0;
}

.footer-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-top: 4px solid #ff99cc;
  box-shadow: 0 -4px 12px rgba(204, 255, 204, 0.3);
}

/* 📱 Responsive Tweaks */
@media (min-width: 768px) {
  .newspaper-layout {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .about-text,
  .book-reading {
    text-align: left;
  }

  .cta-img {
    max-width: 600px;
  }
}
