/* ==== FONTS & RESET ==== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #E0F7FA 0%, #B3E5FC 100%);
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}

body {
  color: #1565c0 !important;
}


/* ==== CONTAINER ==== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }

/* ==== GLASSMORPHISM ==== */
.glass, .glass-card {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 2.5rem;
  margin: 2rem auto;
  transition: all 0.4s ease;
}
.glass:hover, .glass-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

/* ==== HEADER ==== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(21, 101, 192, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.logo { height: 48px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
nav ul {
  display: flex; gap: 2.2rem; list-style: none;
}
nav a {
  color: white; text-decoration: none; font-weight: 600;
  font-size: 1.05rem; position: relative; transition: 0.3s;
}
nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: #BBDEFB; transition: 0.3s;
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover { color: #BBDEFB; }

/* Mobile Menu */
.menu-toggle {
  display: none; background: none; border: none; color: white;
  font-size: 1.8rem; cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul { 
    position: fixed; top: 70px; left: -100%; width: 100%; 
    background: rgba(21, 101, 192, 0.98); flex-direction: column;
    padding: 2rem; transition: 0.4s; text-align: center;
  }
  nav ul.show { left: 0; }
}

/* ==== HERO ==== */
/* HERO WITH BACKGROUND */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed; /* Parallax effect */
  transform: scale(1.05);
  z-index: -2;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 0.6s ease;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.75) 0%,
    rgba(79, 195, 247, 0.6) 100%
  );
  backdrop-filter: blur(4px);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  background: linear-gradient(90deg, #BBDEFB, #E3F2FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.4rem;
  margin: 0 auto 2rem;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.verse {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2rem;
  border-radius: 20px;
  max-width: 750px;
  margin: 2rem auto;
  font-size: 1.15rem;
  line-height: 1.9;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Parallax on scroll */
@media (min-width: 768px) {
  .hero-bg {
    background-attachment: fixed;
  }
}

/* BUTTON */
.btn {
  display: inline-block; background: #1976D2; color: white;
  padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600;
  text-decoration: none; box-shadow: 0 6px 20px rgba(25,118,210,0.3);
  transition: all 0.3s; margin-top: 1rem;
}
.btn:hover { background: #0D47A1; transform: translateY(-3px); }

/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(25,118,210,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(25,118,210,0); }
  100% { box-shadow: 0 0 0 0 rgba(25,118,210,0); }
}

/* IMAGE GRID */
.img-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem; margin: 2rem 0;
}
.img-card {
  overflow: hidden; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
}
.img-card img {
  width: 100%; height: 230px; object-fit: cover; transition: 0.5s;
}
.img-card:hover img { transform: scale(1.1); }
.caption {
  padding: 1rem; background: rgba(255,255,255,0.9); text-align: center;
  font-weight: 500; font-size: 0.95rem; color: #1565C0;
}

/* FOOTER */
footer {
  background: rgba(21, 101, 192, 0.95); color: white; text-align: center;
  padding: 2.5rem; font-size: 0.95rem;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.15rem; }
}
/* Centered bulleted list — bullet and text move together */

.centered-list {
  max-width: 600px;           /* adjust width to your taste */
  margin: 0 auto;             /* centers the whole block */
  padding-left: 0;            /* removes default left indent */
  list-style-position: inside; /* keeps bullet inside the centered box */
  text-align: left;           /* keeps text left-aligned inside the centered block */
}