/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and background */
body {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: navy;
}

/* Main content container */
.content-box {
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  min-height: 100vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

/* Header row */
.header-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: black;
  text-align: center;
}

/* Social buttons container */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

/* Social buttons style */
.social-buttons a {
  min-width: 150px;
  padding: 0.5rem 1rem;
  background: navy;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-align: center;
}

/* Smaller text inside buttons */
.social-buttons a span {
  display: block;
  font-size: 0.9rem;
  color: gold;
  margin-bottom: 4px;
}

/* Hover effect */
.social-buttons a:hover {
  background: gold;
  color: navy;
}

/* Video embed */
.video iframe {
  width: 100%;
  height: 360px;
  border: none;
  margin-bottom: 1rem;
  border-radius: 8px;
}

/* Mission message styling */
.mission-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: black;
  max-width: 800px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery container */
.gallery {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  gap: 10px;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: navy gold;
}

/* Scrollbar styling for WebKit */
.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.gallery::-webkit-scrollbar-thumb {
  background: navy;
  border-radius: 8px;
}

/* Gallery images */
.gallery img {
  height: 150px;
  border: 3px solid white;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Slight zoom on hover */
.gallery img:hover {
  transform: scale(1.05);
}
