/* Centrage et style moderne pour la page skipper */
.skipper-hero .hero-content {
    text-align: center;
    color: #fff;
    padding: 48px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.skipper-hero h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.skipper-hero .hero-content > div {
    display: inline-block;
    margin-bottom: 18px;
}

.skipper-intro .intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.skipper-fleet .fleet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.boat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(30,60,114,0.08);
    padding: 24px 18px;
    max-width: 340px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boat-image img {
    width: 100%;
    max-width: 260px;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30,60,114,0.12);
    margin-bottom: 16px;
}

.boat-info h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
    text-align: center;
}

.boat-info p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.pricing .price {
    font-size: 1.2rem;
    color: #A51A1E;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
    text-align: center;
}

.btn-primary {
    background: #A51A1E;
    color: #fff;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(30,60,114,0.08);
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #7d1517;
    box-shadow: 0 4px 16px rgba(30,60,114,0.18);
}

.skipper-tarifs-table-wrapper {
    margin: 40px auto 0 auto;
    max-width: 520px;
    text-align: center;
}

.skipper-tarifs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,60,114,0.08);
    overflow: hidden;
    margin: 0 auto;
}

.skipper-tarifs-table th {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 16px 0;
    border: none;
    text-align: center;
}

.skipper-tarifs-table td {
    padding: 14px 0;
    text-align: center;
    font-size: 1.08rem;
}

.skipper-tarifs-table tr:nth-child(even) {
    background: #e3e7ef;
}

.skipper-tarifs-table tr:nth-child(odd) {
    background: #f8f8f8;
}

.skipper-tarifs-table td:last-child {
    color: #A51A1E;
    font-weight: 700;
}

@media (max-width: 900px) {
    .skipper-fleet .fleet-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .boat-card {
        max-width: 98vw;
    }
    .skipper-tarifs-table-wrapper {
        max-width: 98vw;
    }
}
/* Skipper - Style professionnel et moderne */
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #f6f8fa 0%, #e9ecef 100%);
  color: #222;
  margin: 0;
  padding: 0;
}

.skipper-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(60, 72, 88, 0.12);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.skipper-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.skipper-header img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(60, 72, 88, 0.10);
}

.skipper-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.skipper-subtitle {
  font-size: 1.1rem;
  color: #5c6e7e;
  margin-bottom: 0;
}

.skipper-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2d3e50;
  margin-bottom: 16px;
}

.skipper-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.skipper-feature {
  background: #f2f6fa;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  color: #1a2a3a;
  box-shadow: 0 1px 4px rgba(60, 72, 88, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}

.skipper-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0077ff;
  margin-bottom: 12px;
}

.skipper-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0077ff 0%, #00c6ff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  margin-top: 8px;
}

.skipper-btn:hover, .skipper-btn:focus {
  background: linear-gradient(90deg, #005ecb 0%, #0099cc 100%);
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.18);
}

@media (max-width: 600px) {
  .skipper-container {
    padding: 18px 8px;
  }
  .skipper-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .skipper-header img {
    width: 60px;
    height: 60px;
  }
  .skipper-title {
    font-size: 1.4rem;
  }
}