/*
Theme Name: SwiftRoamer
Theme URI: https://swiftroamer.com
Author: SwiftRoamer Team
Author URI: https://swiftroamer.com
Description: A modern, responsive WordPress theme for travel blogs and destination guides. Features custom post types for destinations, news, and travel tips, ACF integration, optimized performance, and WCAG 2.1 AA accessibility compliance.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swiftroamer
Domain Path: /languages
Tags: travel, blog, responsive, accessibility-ready, custom-post-types, acf, performance-optimized

SwiftRoamer WordPress Theme, Copyright 2024 SwiftRoamer
*/

/* ============================================
   SWIFTROAMER TRAVEL BLOG - MAIN STYLESHEET
   WordPress Theme Styles
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  line-height: 1.6;
  color: #1E2A38;
  background-color: #F9F7F4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #FF6B3D;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #FF6B3D;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   2. LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-wide {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

/* ============================================
   3. GRID SYSTEM
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .md\:grid-cols-2,
  .md\:grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
}

/* ============================================
   4. FLEXBOX UTILITIES
   ============================================ */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ============================================
   5. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1E2A38;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================
   6. COLORS
   ============================================ */

/* Primary Colors */
.text-primary-50 { color: #FFF5F0; }
.text-primary-100 { color: #FFE8DA; }
.text-primary-500 { color: #FF6B3D; }
.text-primary-600 { color: #E55A34; }
.text-primary-700 { color: #CC4F2E; }

.bg-primary-50 { background-color: #FFF5F0; }
.bg-primary-100 { background-color: #FFE8DA; }
.bg-primary-500 { background-color: #FF6B3D; }
.bg-primary-600 { background-color: #E55A34; }
.bg-primary-700 { background-color: #CC4F2E; }

/* Secondary Colors */
.text-secondary-50 { color: #F0F8FF; }
.text-secondary-100 { color: #E0F1FE; }
.text-secondary-500 { color: #5AB5E8; }
.text-secondary-600 { color: #4A9DD4; }
.text-secondary-700 { color: #3A85C0; }

.bg-secondary-50 { background-color: #F0F8FF; }
.bg-secondary-100 { background-color: #E0F1FE; }
.bg-secondary-500 { background-color: #5AB5E8; }
.bg-secondary-600 { background-color: #4A9DD4; }
.bg-secondary-700 { background-color: #3A85C0; }

/* Accent Colors */
.text-accent-50 { color: #FFFBF0; }
.text-accent-100 { color: #FFF4DA; }
.text-accent-500 { color: #FFC857; }
.text-accent-600 { color: #E5B34E; }
.text-accent-700 { color: #CC9E45; }

.bg-accent-50 { background-color: #FFFBF0; }
.bg-accent-100 { background-color: #FFF4DA; }
.bg-accent-500 { background-color: #FFC857; }
.bg-accent-600 { background-color: #E5B34E; }
.bg-accent-700 { background-color: #CC9E45; }

/* Text Colors */
.text-text-primary { color: #1E2A38; }
.text-text-secondary { color: #5A5E66; }

/* Standard Colors */
.text-white { color: #ffffff; }
.text-gray-50 { color: #f9fafb; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }

.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }

.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }

.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-yellow-500 { color: #eab308; }

/* Background Colors */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }

.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }

.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }

.bg-background { background-color: #F9F7F4; }

/* Gradient Backgrounds */
.bg-gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.bg-gradient-dark {
  background: linear-gradient(to right, #111827, #1f2937, #111827);
}

/* ============================================
   7. SPACING
   ============================================ */

/* Margin */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }

/* ============================================
   8. BORDERS & SHADOWS
   ============================================ */

.border { border: 1px solid #e5e7eb; }
.border-0 { border: 0; }
.border-2 { border-width: 2px; }

.border-t { border-top: 1px solid #e5e7eb; }
.border-b { border-bottom: 1px solid #e5e7eb; }

.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-700 { border-color: #374151; }

.border-orange-200 { border-color: #ffedd5; }
.border-orange-500 { border-color: #f97316; }

.border-blue-500 { border-color: #3b82f6; }

.border-primary-500 { border-color: #FF6B3D; }

.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-card { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }

/* ============================================
   9. BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
  color: #ffffff;
}

.btn-secondary {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #e5e7eb;
  color: #374151;
}

.btn-outline:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.btn-outline-orange {
  background-color: transparent;
  border: 2px solid #f97316;
  color: #f97316;
}

.btn-outline-orange:hover {
  background-color: #f97316;
  color: #ffffff;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* ============================================
   10. CARDS
   ============================================ */

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-body { padding: 1.5rem; }

/* ============================================
   11. HEADER / NAVIGATION
   ============================================ */

.site-header {
  background: linear-gradient(to right, #111827, #1f2937, #111827);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
  width: 2.5rem;
  height: 2.5rem;
}

.site-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6B3D;
}

.main-navigation {
  display: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #d1d5db;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #ffffff;
}

.nav-menu .current-menu-item a,
.nav-menu a[aria-current="page"] {
  color: #ffffff;
  border-bottom-color: #FF6B3D;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle i {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-navigation {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #374151;
}

.mobile-navigation.is-open {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-menu a {
  display: block;
  color: #d1d5db;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus {
  color: #ffffff;
  background-color: rgba(55, 65, 81, 0.5);
}

.mobile-nav-menu .current-menu-item a {
  color: #ffffff;
  background-color: rgba(255, 107, 61, 0.2);
}

/* ============================================
   12. FOOTER
   ============================================ */

.site-footer {
  background: linear-gradient(to right, #111827, #1f2937, #111827);
  color: #d1d5db;
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  max-width: 24rem;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #FF6B3D;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #374151;
  border-radius: 50%;
  color: #d1d5db;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
  background-color: #FF6B3D;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: #FF6B3D;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #E55A34;
}

/* ============================================
   13. HERO SECTIONS
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  color: #ffffff;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero h1 span {
  color: #fde047;
  display: block;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ============================================
   14. BREADCRUMBS
   ============================================ */

.breadcrumb {
  background-color: #f9fafb;
  padding: 1rem 0;
}

.breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-nav li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-nav a {
  color: #6b7280;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb-nav a:hover,
.breadcrumb-nav a:focus {
  color: #f97316;
}

.breadcrumb-nav .current {
  color: #1f2937;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #9ca3af;
}

/* ============================================
   15. ARTICLE CARDS
   ============================================ */

.article-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.article-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.article-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-image-wrap {
  position: relative;
  overflow: hidden;
}

.article-image-wrap img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image-wrap img {
  transform: scale(1.05);
}

.article-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(to right, #ffedd5, #fee2e2);
  color: #c2410c;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #fed7aa;
}

.article-content {
  padding: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.article-card:hover .article-title {
  color: #f97316;
}

.article-excerpt {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ============================================
   16. DESTINATION CARDS
   ============================================ */

.destination-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.destination-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.destination-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.destination-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.destination-rating i {
  color: #facc15;
  font-size: 0.875rem;
}

.destination-rating span {
  font-size: 0.875rem;
}

.destination-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination-price {
  font-size: 1.125rem;
  font-weight: 600;
}

/* ============================================
   17. NEWS CARDS
   ============================================ */

.news-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-image-wrap {
  position: relative;
  overflow: hidden;
}

.news-image-wrap img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image-wrap img {
  transform: scale(1.05);
}

.news-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.news-breaking-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ef4444;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: #2563eb;
}

.news-excerpt {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-source {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Breaking News Banner */
.breaking-news-banner {
  background: linear-gradient(to right, #ef4444, #f97316);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .breaking-news-banner {
    padding: 2rem;
  }
}

.breaking-news-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.breaking-news-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #ffffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.breaking-news-label {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breaking-news-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .breaking-news-content {
    flex-direction: row;
    align-items: center;
  }
}

.breaking-news-text {
  flex: 2;
}

.breaking-news-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .breaking-news-text h3 {
    font-size: 1.5rem;
  }
}

.breaking-news-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.breaking-news-image {
  flex: 1;
}

.breaking-news-image img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .breaking-news-image img {
    height: 10rem;
  }
}

/* ============================================
   18. CATEGORY CARDS
   ============================================ */

.category-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, #ffedd5, #fee2e2);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: linear-gradient(to right, #fed7aa, #fecaca);
}

.category-icon i {
  font-size: 1.5rem;
  color: #f97316;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.category-description {
  color: #4b5563;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 500;
}

.category-card:hover .category-link i {
  transform: translateX(4px);
}

.category-link i {
  transition: transform 0.2s ease;
}

/* ============================================
   19. CAROUSEL STYLES
   ============================================ */

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .carousel-slide {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    width: 33.333%;
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background-color: #ffffff;
}

.carousel-nav:focus {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.carousel-nav.prev { left: 0.5rem; }
.carousel-nav.next { right: 0.5rem; }

.carousel-nav i {
  font-size: 1.25rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot:hover {
  background-color: #9ca3af;
}

.carousel-dot.active {
  width: 1rem;
  background-color: #f97316;
}

.carousel-dot:focus {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

/* ============================================
   20. FORMS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

/* ============================================
   21. RESPONSIVE UTILITIES
   ============================================ */

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

@media (max-width: 639px) {
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
}

@media (min-width: 640px) {
  .sm\:hidden { display: none; }
}

@media (max-width: 767px) {
  .md\:hidden { display: none; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
}

@media (max-width: 1023px) {
  .lg\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
}

/* ============================================
   22. ANIMATIONS
   ============================================ */

.transition {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-shadow {
  transition: box-shadow 0.3s ease;
}

.transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ============================================
   23. WORDPRESS-SPECIFIC CLASSES
   ============================================ */

/* WordPress alignment classes */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* WordPress caption */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

/* WordPress gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  margin: 0;
}

.gallery-icon img {
  border-radius: 0.5rem;
}

/* WordPress blockquote */
blockquote {
  border-left: 4px solid #f97316;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563;
}

blockquote p {
  margin-bottom: 0.5rem;
}

blockquote cite {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
}

/* WordPress tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

th {
  background-color: #f9fafb;
  font-weight: 600;
}

/* Screen reader text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: #f9fafb;
  z-index: 100000;
}

/* ============================================
   24. UTILITY CLASSES
   ============================================ */

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333%; }
.w-2\/3 { width: 66.666%; }

.h-full { height: 100%; }
.h-screen { height: 100vh; }

.min-h-screen { min-height: 100vh; }

.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.object-center { object-position: center; }

.cursor-pointer { cursor: pointer; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aspect-square {
  aspect-ratio: 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* ============================================
   25. PRINT STYLES
   ============================================ */

@media print {
  .site-header,
  .site-footer,
  .breadcrumb,
  .btn,
  .carousel-nav,
  .carousel-dots,
  .mobile-menu-toggle,
  .social-links {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }

  a {
    text-decoration: underline;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }

  .article-card,
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* ============================================
   26. ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid #fff;
  }

  .nav-menu a:focus,
  .footer-links a:focus {
    outline: 3px solid #FF6B3D;
    outline-offset: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .carousel-track {
    transition: none;
  }
}

/* Focus visible polyfill support */
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

/* ============================================
   27. CONTENT STYLES
   ============================================ */

.entry-content {
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.8;
}

.entry-content > * {
  margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content img {
  border-radius: 0.75rem;
  margin: 2rem 0;
}

.entry-content a {
  color: #f97316;
  text-decoration: underline;
}

.entry-content a:hover {
  color: #ea580c;
}

/* ============================================
   28. PAGINATION
   ============================================ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination a {
  color: #374151;
  background-color: #f3f4f6;
}

.pagination a:hover,
.pagination a:focus {
  background-color: #e5e7eb;
  color: #111827;
}

.pagination .current {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
  color: #ffffff;
}

/* ============================================
   29. AFFILIATE DISCLAIMER
   ============================================ */

.affiliate-disclaimer {
  background: linear-gradient(to right, #f97316, #dc2626);
  color: #ffffff;
  padding: 5rem 0;
}

.affiliate-disclaimer h2 {
  color: #ffffff;
  margin-bottom: 2rem;
}

.affiliate-disclaimer p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 64rem;
  margin: 0 auto;
}

/* ============================================
   30. SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #ea580c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
}

/* Section header with action */
.section-header-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-header-flex {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header-flex h2 {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #ea580c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section-header-flex p {
  color: #4b5563;
  font-size: 1.125rem;
}
