/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #222;
  background: #ffd6e0; /* soft baby pink */
  line-height: 1.5;
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.navbar {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 1.5rem;
}
.nav-links a {
  font-size: 1rem;
  padding: 0.3rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #ff6f91;
}

/* Hero */
.hero {
  height: 90vh;
  background: url('images/IMG_2239 copy.JPG') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 60px; /* adjust if navbar height affects it */
}
.hero-text {
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.hero-text h1 {
  font-size: 3rem;
}
.hero-text p {
  font-size: 1.3rem;
  margin-top: 1rem;
}

/* Sections common */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Image gallery style */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.image-gallery img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Plants & Art background tweaks */
.art .image-gallery {
  /* maybe slightly darker overlay or muted color */
}
.plants {
  background: transparent;  
}
.photography {
  background: transparent;
}
.science {
  background:transparent;
}
.contact {
  background: transparent;
  text-align: center;
}

/* Science text */
.science .text-content {
  max-width: 700px;
  margin: auto;
}
.science ul {
  margin-top: 1rem;
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background: #222;
  color: #fff;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 5%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 6px;
}

#caption {
  margin: 15px auto;
  text-align: center;
  color: #ccc;
  font-size: 1rem;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.hero-text h1 {
  font-family: 'Pacifico', cursive;
  font-size: 4rem;
  color: #ff6f91; /* retro pink */
  text-shadow: 3px 3px #ffd6e0; /* two-tone effect */
}

body, p, li, .nav-links a, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #222;
}

/* Logo = retro cursive */
.logo a {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #ff6f91;
  text-shadow: 2px 2px #ffd6e0;
  text-decoration: none;
}


/* Nav links = sleek minimalist */
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #222;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #ff6f91;
}
