/* ========================================
   UNIVERS CARIBÉEN — Page dédiée
   Couleurs chaudes, ambiance tropicale
   ======================================== */

/* --- Page Background Override --- */
.caribeen-page {
  background: linear-gradient(180deg, #1a0a00 0%, #0d0805 50%, #0a0604 100%);
}

/* --- Navbar Override --- */
.caribeen-navbar {
  background: rgba(26, 10, 0, 0.92) !important;
  border-bottom-color: rgba(255, 107, 53, 0.2) !important;
}

.caribeen-navbar .nav-links a:hover {
  color: #FF6B35;
}

.caribeen-navbar .nav-links a.active {
  color: #FF6B35;
}

.caribeen-navbar .nav-links a::after {
  background: #FF6B35;
}

.caribeen-navbar .nav-links a.active::after {
  width: 100%;
}

.caribeen-logo-circle {
  background: linear-gradient(135deg, #FF6B35 0%, #F4A261 50%, #E9C46A 100%) !important;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3) !important;
}

/* --- Hero Caribéen --- */
.caribeen-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.caribeen-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.caribeen-hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, rgba(230, 57, 70, 0.05) 40%, transparent 70%);
  border-radius: 50%;
}

.caribeen-hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.caribeen-hero-content {
  position: relative;
  z-index: 2;
}

.caribeen-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: #FF6B35;
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}

.caribeen-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #FFE4C4 20%, #FF6B35 60%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.caribeen-hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2.5vw, 24px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #F4A261;
  margin-bottom: 24px;
  font-weight: 400;
}

.caribeen-hero-desc {
  font-size: 17px;
  color: #b8a090;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.caribeen-scroll-line {
  background: linear-gradient(to bottom, #FF6B35, transparent) !important;
}

/* --- Text Warm Accent --- */
.text-warm {
  color: #FF6B35;
}

/* --- Section Labels Override --- */
.caribeen-label {
  color: #F4A261 !important;
}

.caribeen-desc-text {
  color: #b8a090 !important;
}

/* --- Caribeen Services Grid --- */
.caribeen-services {
  background: linear-gradient(180deg, #0d0805 0%, #1a0f08 50%, #0d0805 100%);
}

.caribeen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* --- Caribeen Cards --- */
.caribeen-card {
  background: linear-gradient(135deg, rgba(30, 18, 10, 0.9) 0%, rgba(20, 12, 6, 0.95) 100%);
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.caribeen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35, #F4A261, #E9C46A);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.caribeen-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.12), 0 0 60px rgba(230, 57, 70, 0.05);
  transform: translateY(-6px);
}

.caribeen-card:hover::before {
  opacity: 1;
}

.caribeen-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFE4C4;
}

.caribeen-card p {
  font-size: 14px;
  color: #b8a090;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- Caribeen Card Icons --- */
.caribeen-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.caribeen-card-icon.ka {
  background: rgba(255, 107, 53, 0.15);
  color: #FF6B35;
}

.caribeen-card-icon.danse {
  background: rgba(230, 57, 70, 0.15);
  color: #E63946;
}

.caribeen-card-icon.cuisine {
  background: rgba(244, 162, 97, 0.15);
  color: #F4A261;
}

.caribeen-card-icon.histoire {
  background: rgba(233, 196, 106, 0.15);
  color: #E9C46A;
}

.caribeen-card-icon.chant {
  background: rgba(255, 140, 66, 0.15);
  color: #FF8C42;
}

.caribeen-card-icon.langues {
  background: rgba(214, 93, 14, 0.15);
  color: #D65D0E;
}

/* --- Caribeen Details List --- */
.caribeen-details {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.caribeen-details li {
  font-size: 13px;
  color: #998070;
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}

.caribeen-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #F4A261);
}

/* --- Caribeen Tags --- */
.caribeen-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  border: 1px solid rgba(255, 107, 53, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- CTA Section --- */
.caribeen-cta-section {
  background: linear-gradient(180deg, #0d0805 0%, #1a0a00 100%);
  text-align: center;
  padding: 100px 0 120px;
}

.caribeen-cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.caribeen-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* --- Warm Buttons --- */
.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #FF6B35 0%, #E63946 50%, #F4A261 100%);
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-warm:hover {
  box-shadow: 0 6px 32px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

.btn-warm-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: transparent;
  color: #FF6B35;
  border: 1.5px solid #FF6B35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-warm-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

/* --- Footer Override --- */
.caribeen-footer {
  background: #0a0604 !important;
  border-top-color: rgba(255, 107, 53, 0.15) !important;
}

.caribeen-footer .footer-tagline {
  color: #FF6B35;
}

.caribeen-footer .footer-col a:hover {
  color: #FF6B35;
}

.caribeen-footer .footer-social a:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  color: #FF6B35;
}

.caribeen-footer .footer-legal a:hover {
  color: #FF6B35;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .caribeen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .caribeen-hero {
    padding: 100px 20px 60px;
    min-height: 100svh;
  }

  .caribeen-hero-title {
    font-size: clamp(36px, 8vw, 60px);
  }

  .caribeen-hero-tagline {
    letter-spacing: 3px;
    font-size: 14px;
  }

  .caribeen-grid {
    grid-template-columns: 1fr;
  }

  .caribeen-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-warm,
  .btn-warm-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .caribeen-navbar .nav-links {
    background: rgba(26, 10, 0, 0.98) !important;
  }
}

@media (max-width: 480px) {
  .caribeen-hero-title {
    letter-spacing: 2px;
  }

  .caribeen-card {
    padding: 28px 20px;
  }
}
