/*
Theme Name: Futurisnet
Theme URI: https://futurisnet.tn
Author: Futurisnet
Author URI: https://futurisnet.tn
Description: Thème WordPress sur mesure pour Futurisnet — Bureau de développement web professionnel. Landing page white elegant avec animations, formulaire WhatsApp et design premium.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: futurisnet
Tags: one-column, custom-colors, custom-menu, featured-images, translation-ready, light
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFFFFF;
  color: #0F172A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

body.admin-bar #navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar #navbar { top: 46px; } }

/* Glass — version blanche */
.glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

/* Shadows — adaptés fond clair */
.shadow-soft { box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04); }
.shadow-card { box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06); }
.shadow-glow { box-shadow: 0 0 30px rgba(0,212,170,0.12); }
.shadow-glow-lg { box-shadow: 0 0 40px rgba(0,212,170,0.15), 0 0 80px rgba(79,140,255,0.08); }

.bg-gradient-brand { background: linear-gradient(135deg, #4F8CFF 0%, #00D4AA 100%); }

.gradient-text {
  background: linear-gradient(135deg, #4F8CFF 0%, #00D4AA 50%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-hero { background: linear-gradient(135deg, rgba(79,140,255,0.04) 0%, rgba(0,212,170,0.04) 100%); }

/* Orbes — très subtils sur fond blanc */
.orb-steel { background: rgba(79,140,255,0.07); }
.orb-teal { background: rgba(0,212,170,0.07); }
.orb-green { background: rgba(34,197,94,0.04); }
.orb-glow-teal { background: rgba(0,212,170,0.04); }
.orb-glow-steel { background: rgba(79,140,255,0.03); }
.orb-glow-green { background: rgba(34,197,94,0.03); }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}
.animate-float { animation: float 8s ease-in-out infinite; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300-anim { animation-delay: 0.3s; }
.delay-500 { animation-delay: 0.5s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.animate-bounce { animation: bounce 2s ease-in-out infinite; }

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-scale-in { animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

#navbar { transition: all 0.5s ease; }
#navbar.scrolled { padding-top: 0.75rem; padding-bottom: 0.75rem; }

/* Inputs — fond clair */
.fn-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
  border: 1px solid #E2E8F0; background: #F8FAFC;
  color: #0F172A; font-size: 0.875rem; font-family: 'Inter', sans-serif;
  transition: all 0.2s ease; outline: none;
}
.fn-input::placeholder { color: #94A3B8; }
.fn-input:focus { border-color: #00D4AA; box-shadow: 0 0 0 3px rgba(0,212,170,0.12); background: #FFFFFF; }
select.fn-input option { background: #FFFFFF; color: #0F172A; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
.modal-scroll::-webkit-scrollbar { width: 4px; }
.modal-scroll::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 2px; }

.fn-container { max-width: 72rem; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* Section alt backgrounds */
.fn-section-alt { background: #F8FAFC; }