body {
  background: #f0f4f8;
  font-family: 'Lora', serif;
  margin: 0;
  padding: 40px 20px;
  text-align: center;
  color: #2c3e50;
}

h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #1a3c40;
}

.modern-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  
}
.modern-gallery a {
  text-decoration: none;
  color: inherit; /* Ensures the link text matches the surrounding text color */
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item .info {
  padding: 15px;
  text-align: left;
}

.gallery-item .info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #007a79;
}

.gallery-item .info p {
  font-size: 0.95rem;
  color: #4a6572;
  margin-top: 6px;
}

/* Back to Home Button */
.back-to-home {
  
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #4A90E2, #5BB5A2);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

.back-to-home:hover {
  background: linear-gradient(to right, #5BB5A2, #4A90E2);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-home:hover::before {
  left: 0;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #fff; /* Navy */
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-right: 10px;
  font-size: 18px;
}

.logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #1a3c40;
}

.logo-text .highlight {
  color: #fff; /* lighter navy accent */
}



.well {
	color: #3d566e;
    font-size: 1.2rem;
   max-width: 1200px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}