/* =========================================
   CTA BUTTONS - Samlet styling for hele sitet
   ========================================= */

/* =========================================
   SEKTION 1: HERO CTA BUTTONS
   ========================================= */

/* ---------- 1A. HOME HERO (.hero-cta) ----------
   Bruges på: front-page.php (.home-hero)
   Reference: assets/css/components/hero.css (HOME sektion)
   ========================================= */
.hero-cta {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 1.1rem 2.8rem !important;
  color: #0a1628 !important;
  background: #ffffff !important;
  border: none !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  overflow: hidden !important;
}

.hero-cta::before {
  content: none !important;
}

.hero-cta *,
.hero-cta span,
.hero-cta div {
  position: relative !important;
  z-index: 2 !important;
  color: #0a1628 !important;
  background-color: transparent !important;
  background: none !important;
  border: none !important;
  fill: #0a1628 !important;
  stroke: #0a1628 !important;
}

.hero-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
  background: #f0f0f0 !important;
}

.hero-cta:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* ---------- ABOUT HERO (.hero-cta) ----------
   Bruges på: page-om-os.php (.about-hero)
   Reference: assets/css/components/hero.css (OM OS sektion)
   ========================================= */
.about-hero .hero-cta {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 28px !important;
  color: #ffffff !important;
  background: linear-gradient(
    135deg,
    var(--cpht1-navy) 0%,
    var(--cpht1-navy-dark) 50%,
    var(--cpht1-navy) 100%
  ) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 32px rgba(11, 42, 82, 0.35), 0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  cursor: pointer !important;
}

.about-hero .hero-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 40px rgba(11, 42, 82, 0.55), 0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(
    135deg,
    var(--cpht1-navy-dark) 0%,
    var(--cpht1-navy) 50%,
    var(--cpht1-navy-dark) 100%
  ) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* =========================================
   SEKTION 2: CONTENT CTA BUTTONS
   ========================================= */

/* ---------- 2B. BOOKING BUTTON (.booking-button) ----------
   Bruges på: Booking sektioner, Call-to-action områder
   Reference: front-page.php, page-kontakt.php
   ========================================= */
.booking-button {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 8px;
  background: var(--cpht1-navy);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid var(--cpht1-navy-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.booking-button:hover {
  background: var(--cpht1-navy-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* ---------- 2C. SERVICE CTA LINK (.services-cta) ----------
   Bruges på: Service cards på forsiden
   Reference: front-page.php (.services-box)
   ========================================= */
.services-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--cpht1-navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 42, 82, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.services-cta:focus {
  outline: 3px solid rgba(11, 42, 82, 0.4);
  outline-offset: 4px;
}
