/* General Styles */
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  scroll-behavior: smooth;
  color: #333;
}

/* Header and Nav */
header {
  background: linear-gradient(90deg, #0e2954, #1e3a8a);
  color: white;
  text-align: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 1px;
  color: #ffcc00;
}

.tagline {
  color: #fff;
  background: #ff6600;
  padding: 5px;
  font-weight: bold;
  font-size: 0.95rem;
  border-radius: 5px;
}

/* Navigation Bar */
nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* Hero Section with Slideshow */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay Text */
.slide-overlay {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  color: white;
  text-align: right;
  max-width: 400px;
  z-index: 2;
}

.slide-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.slide-overlay p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.slide-overlay .btn {
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Hero Content Below Slideshow */
.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  width: fit-content;
  margin: -120px auto 0 auto; /* centers below slideshow */
}

.hero-content h2 {
  font-size: 2rem;
  color: #ffcc00;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e6e6e6;
  margin: 15px 0;
}

.btn {
  background: #ffcc00;
  color: #000;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* Sections */
.section-light {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-blue {
  background: #e7f0ff;
  padding: 3rem 1rem;
  text-align: center;
}

.section-yellow {
  background: #fff8e1;
  padding: 3rem 1rem;
  text-align: center;
}

.section-purple {
  background: #ede7f6;
  padding: 3rem 1rem;
  text-align: center;
}

.section-dark {
  background: #0e2954;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

/* Headings Colors */
.section-blue h2 { color: #0e2954; }
.section-yellow h2 { color: #ff9800; }
.section-purple h2 { color: #6a1b9a; }
.section-light h2 { color: #0e2954; }
.section-dark h2 { color: #ffcc00; }

/* Images */
section img {
  width: 80%;
  max-width: 600px;
  margin-top: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Landscape fix for single wide photo */
.landscape {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Footer */
footer {
  background: #1e3a8a;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
