/*
Theme Name: Tkanal Theme
Theme URI: https://tkanalparck.ht/
Author: Antigravity AI
Author URI: https://tkanalparck.ht/
Description: Thème WordPress sur mesure, ultra moderne et super professionnel pour T-kanal Parck, mini parc touristique et resort en Haïti. Offre la gestion des chambres à louer (semaine/mois), piscine, détente et espaces magnifiques.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: resort, tourism, haiti, hotel, rooms-rental, swimming-pool, park, luxury, responsive-layout, custom-menu, featured-images
Text Domain: tk-theme
*/

/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
  /* Palette de Couleurs Resort Tropical & Luxe */
  --primary: #0284c7;        /* Bleu Lagune */
  --primary-dark: #0369a1;   /* Bleu Profond Caraïbes */
  --primary-light: #38bdf8;  /* Cyan Lumineux */
  --accent: #f59e0b;         /* Or / Sable Chaud */
  --accent-hover: #d97706;   /* Or Foncé */
  --secondary: #10b981;      /* Vert Palmier Tropical */
  --secondary-dark: #047857;

  /* Neutres Dark / Light Mode */
  --bg-dark: #0f172a;        /* Nuit Étoilée */
  --bg-card-dark: #1e293b;
  --bg-light: #f8fafc;
  --bg-card-light: #ffffff;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* Effets & Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-dark: rgba(15, 23, 42, 0.85);
  --glass-dark-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.08);

  /* Typographie Swiss / Helvetica Moderne & Rayons de bordure */
  --font-heading: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--bg-dark);
}
