body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #C0F0F7;
  color: #0000FF;
  text-align: center;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 1em;
}

img {
  max-width: 90%;
  height: 90%;
}

.intro .boat-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* ? PREVENT wrapping */
  gap: 20px;
  margin-bottom: 1em;
}

.intro .boat-images img {
  flex: 1 1 auto; /* Allow shrinking */
  max-width: 30%;
  height: auto;
  object-fit: contain;
}

.intro .boat-images .logo {
  flex: 1 1 auto;
  max-width: 30%; /* Adjust this as needed */
}

.link {
  display: block;
  margin: 1em 0;
  color: #0000FF;
  text-decoration: underline;
}

.gallery h2 .events h2 {
  margin-top: 2em;
  color: #0000FF;
}

.custom-line {
   border: none;
   height: 3px;
   background-color: #0000FF;
   width: 50%;
   margin: 20px auto;
}

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

.note {
  font-size: 0.9em;
  font-style: italic;
  margin-bottom: 1em;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
  grid-template-rows: repeat(2, auto);   /* Force 2 rows */
  gap: 20px;
  margin-bottom: 1.5em;
}

.event {
  background: #C0F0F7;
  padding: 1em;
  border: 0px solid #0000FF;
}

.contact {
  font-weight: bold;
  margin-bottom: 2em;
}

.social {
  margin-bottom: 2em;
}

.social a {
  color: #0000FF;
  font-weight: normal;
  text-decoration: underline;
}

.grid-container {
   display: flex;
   justify-content: space-between;
   padding: 50px;
   gap: 50px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.column img {
   width: 100%;
   height: auto;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.left-column {
   width: 25%;
   max-height: 200px;
}

.middle-column {
   width: 40%;
   height: 80%;
   transform: scale(1.2);
   justify-content: center;
}

.right-column {
   width: 25%;
   max-height: 200px;
}

@media (max-width: 768px) {
  .grid-container {
    flex-direction: column;     /* Stack columns vertically */
    align-items: center;
    gap: 30px;
    padding: 20px;
  }

  .column {
    width: 90%;                /* Make each column wider */
  }

  .column img {
    max-width: 90%;           /* Allow image to expand fully */
    height: auto;
    transform: scale(1.1);     /* Slight enlargement */
  }

  .middle-column {
    transform: none;           /* Remove scale override */
  }
}

footer {
  font-size: 0.85em;
  margin-top: 3em;
  color: #0000FF;
  gap: 10px;
}

