/* ===========================================
   FONT IMPORTS
=========================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ===========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
=========================================== */
:root {
  /* === BRAND COLORS === */
  --primary-color: #2ec4b6; /* Tropical teal (ocean + calm) */
  --secondary-color: #ff6b6b; /* Coral red (fun, adventure) */
  --accent-color: coral; /* Warm sand yellow (relaxation) */
  --highlight-color: #118ab2; /* Sky blue (freedom, travel) */

  /* === TEXT COLORS === */
  --text-color: #1a1a1a; /* Default dark text */
  --text-muted: #6c757d;
  --text-light: #ffffff;

  /* === BACKGROUNDS === */
  --bg-primary: #ffffff;
  --bg-secondary: #f6f9fa;
  --bg-tertiary: #eef2f3;
  --bg-dark: #212529;
  --bg-darker: #141414;
  --border-color: #ccc;

  /* === NAV & FOOTER === */
  --nav-bg: #ffffff;
  --nav-bg-dark: #0e1a1a;
  --footer-text: #f0f0f0;

  /* === GRADIENTS === */
  --gradient-primary: linear-gradient(135deg, #2ec4b6 0%, #118ab2 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffd166 100%);
  --gradient-tertiary: linear-gradient(135deg, #ff7b00 0%, #ff9900 100%);
  --gradient-accent: linear-gradient(135deg, #2ec4b6 0%, #ff6b6b 100%);

  /* === EFFECTS === */
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease-in-out;
  --radius-sm: 0.25rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  /* === TYPOGRAPHY === */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --font-elegant: "Playfair Display", serif;

  /* === LAYOUT === */
  --nav-height: 70px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;
  --spacing-4xl: 6rem;
  --card-bg-light: #f7f7f7;
  --card-bg-light2: #fff;
  --card-bg-dark: #2a2a2a;
}

/* ===========================================
   DARK THEME
=========================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #3fd0c6; /* Softer teal */
    --secondary-color: #ff8585; /* Gentle coral */
    --accent-color: coral; /* Warm sand glow */
    --highlight-color: #48cae4; /* Ocean highlight */

    --text-color: #f5f5f5;
    --text-muted: #b0b0b0;
    --text-light: #ffffff;

    --bg-primary: #0e1a1a;
    --bg-secondary: #152020;
    --bg-tertiary: #1e2a2a;
    --bg-dark: #0b1212;
    --bg-darker: #050909;
    --border-color: #0a433dff;

    --nav-bg: #121c1c;
    --nav-bg-dark: #000000;
    --footer-text: #e0e0e0;

    --gradient-primary: linear-gradient(135deg, #3fd0c6 0%, #48cae4 100%);
    --gradient-secondary: linear-gradient(135deg, #ff8585 0%, #ff7f50 100%);
    --gradient-accent: linear-gradient(135deg, #3fd0c6 0%, #ff8585 100%);

    --card-bg-light: #1f2a2a;
    --card-bg-light2: #1f2a2a;
    --card-bg-dark: #121c1c;
  }
}

/* ===========================================
   GLOBAL STYLES & RESET
=========================================== */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-primary);
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.8rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

/* Section subtitle styling - Consistent across all sections */
.section-subtitle,
.tours-subtitle,
.testimonials-subtitle {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-family: var(--font-elegant);
  text-align: center;
  margin-bottom: 15px;
  text-transform: capitalize; /* Only first letter capitalized */
}

/* Buttons with fill effect - no translate on hover */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gradient-secondary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: rgba(0, 0, 0);
  z-index: -1;
  transition: height 420ms ease-in-out;
  transform-origin: bottom;
  border-radius: inherit;
  opacity: 0.95;
  pointer-events: none;
  border: none;
}

.btn:hover::before {
  height: 100%;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: all var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Firefox Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-secondary);
}

/* Scroll Animations and Transitions */
.scroll-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-slide-left {
  transform: translateX(-60px) translateY(30px);
}

.scroll-animate.animate-slide-right {
  transform: translateX(60px) translateY(30px);
}

.scroll-animate.animate-scale {
  transform: scale(0.8) translateY(30px);
}

.scroll-animate.animate-fade {
  transform: translateY(30px);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Text Animation Classes */
.text-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.scroll-animate:nth-child(1) {
  transition-delay: 0s;
}
.scroll-animate:nth-child(2) {
  transition-delay: 0.1s;
}
.scroll-animate:nth-child(3) {
  transition-delay: 0.2s;
}
.scroll-animate:nth-child(4) {
  transition-delay: 0.3s;
}
.scroll-animate:nth-child(5) {
  transition-delay: 0.4s;
}
.scroll-animate:nth-child(6) {
  transition-delay: 0.5s;
}

/* Text stagger delays */
.text-animate:nth-child(1) {
  transition-delay: 0s;
}
.text-animate:nth-child(2) {
  transition-delay: 0.15s;
}
.text-animate:nth-child(3) {
  transition-delay: 0.3s;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dark mode logo switching */
@media (prefers-color-scheme: dark) {
  .nav-logo img,
  .footer-column img {
    content: url("../images/logo2.png");
  }
}

/* a {
  text-decoration: none;
}
a:hover {
  color: var(--text-primary);
}

img,
picture,
video,
canvas,
svg,
label,
input {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button {
  display: inline-block;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

ul {
  list-style-type: none;
} */
