﻿/* Flor-Flor bridge page */

.florflor {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.ff-container {
  max-width: 500px;
  padding: 20px;
}

.ff-logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.ff-text {
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
}

.ff-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center; /* 👈 belangrijk */
}

.ff-link {
  display: inline-block;
  padding: 12px 20px;
  min-width: 260px; /* 👈 dit maakt ze even breed */
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Primary (Brappr links) */
.main-link {
  background: #128C7E;
  color: #fff;
  font-weight: 600;
}

.main-link:hover {
  background: #0f6f63;
}

/* Secondary (Boatrefit) */
.secondary-link {
  color: #128C7E;
  font-size: 14px;
}

.secondary-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.ff-footer {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.6;
}