/* ============================================
   DRONE SHOTS IN THE ALGARVE — shared styles
   Used by both index.html and business.html
   ============================================ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- Sticky header scroll shadow ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(31, 58, 75, 0.10);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:focus-visible {
  outline: 3px solid #D67D5C;
  outline-offset: 3px;
}

.btn-primary {
  background: #D67D5C;
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-primary:hover {
  box-shadow: 0 4px 18px rgba(214, 125, 92, 0.38);
}

.btn-secondary {
  background: transparent;
  color: #1F3A4B;
  border: 2px solid #1F3A4B;
  padding: 0.75rem 1.85rem;
  font-size: 1rem;
}

.btn-secondary:hover {
  box-shadow: 0 4px 14px rgba(31, 58, 75, 0.15);
}

.btn-outline-ocean {
  background: transparent;
  color: #6B9FB5;
  border: 2px solid #6B9FB5;
  padding: 0.75rem 1.85rem;
  font-size: 1rem;
}

.btn-outline-cream {
  background: transparent;
  color: #FAF6EE;
  border: 2px solid #FAF6EE;
  padding: 0.75rem 1.85rem;
  font-size: 1rem;
}

.btn-outline-cream:hover {
  box-shadow: 0 4px 14px rgba(250, 246, 238, 0.2);
}

/* ---- Caveat stamp ---- */
.stamp {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  display: inline-block;
}

/* ---- Instagram embeds wrapper ---- */
.reel-wrap {
  max-width: 480px;
  width: 100%;
  box-shadow: 0 6px 28px rgba(229, 213, 183, 0.55);
  border-radius: 6px;
  overflow: hidden;
}

/* ---- Pricing cards ---- */
.pricing-card {
  background: #fff;
  border: 1.5px solid #E5D5B7;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.pricing-card.featured {
  border-color: #D67D5C;
}

.most-booked-tag {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: #D67D5C;
  font-size: 0.9rem;
  transform: rotate(-4deg);
  background: #FAF6EE;
  padding: 0 0.35rem;
}

/* ---- Team placeholder image ---- */
.team-img-placeholder {
  width: 100%;
  max-width: 300px;
  height: 400px;
  background: #E5D5B7;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    text-align: center;
  }

  .reels-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-grid {
    flex-direction: column;
  }

  .team-grid {
    flex-direction: column;
  }

  .footer-btn-row {
    flex-direction: column;
    align-items: center;
  }
}
