.regate-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
margin-bottom: 40px
}

.regate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.regata-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.regata-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.regata-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.regata-info {
  padding: 20px;
}

.regata-info h3 {
  margin-bottom: 10px;
color: #242424;
  font-size: 1.2rem;
margin-top: 0px
}

.regata-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 30px;
}
.regata-meta a {
text-decoration: none;
color: #555;
}
.regata-buttons .btn {
margin-bottom: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  margin-right: 8px;
font-size: 0.9rem;
  transition: background 0.2s;
    border: 1px solid #333;
color: #333;
display: inline-flex;
  align-items: center;
  gap: 6px;
}
.regata-buttons .btn img {
  transition: filter 0.2s;
}

.regata-buttons .btn:hover {
  background: #333;
	color: white
}
.regata-buttons .btn:hover img {
  filter: invert(1);
}

.first-section {
position: relative;
  height: 350px;
  background-image: url('/assets/uploads/hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.first-section h1 {
z-index: 2;
    color: white;
    font-size: 40px;
    font-weight: bold;
    position: relative;
    margin: 0;
    padding-top: 30px;
}


/* Responsive */

@media (max-width: 768px) {
  .first-section {
background-attachment: unset;
    height: 250px;
  }

.first-section h1 {
z-index: 2;
    color: white;
    font-size: 33px;
    font-weight: bold;
    position: relative;
    margin: 0;
    padding-top: 45px;
}

}