/* Aqua Filter Serve - Calm Water Theme */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  text-shadow: 1px 1px 2px #000;
}

header {
  background-color: rgba(0, 51, 102, 0.6);
  padding: 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

section {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  color: #003366;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

h2 {
  margin-top: 0;
  color: #005580;
}

.contact ul {
  list-style: none;
  padding-left: 0;
}

.contact li::before {
  content: "✉️ ";
  margin-right: 0.5rem;
}

.contact a {
  color: #003366;
  text-decoration: none;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact a:hover {
  text-decoration: underline;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  text-align: center;
  color: #003366;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.email-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;   /* makes it round */
  background-color: #005580; /* optional background */
  padding: 5px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.email-icon:hover {
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 51, 102, 0.6);
  color: #fff;
  font-size: 0.9rem;
}