/*
Theme Name: Structura Aménagement
Theme URI: https://structura-amenagement.com
Author: Structura Team
Author URI: https://structura-amenagement.com
Description: Un thème WordPress one-page moderne pour l'aménagement de bureaux avec section IA pour visualiser votre espace transformé
Version: 2.5.0
Requires at least: 5.9
Tested up to: 6.4
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: structura-amenagement
Tags: one-page, business, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments

Structura Aménagement WordPress Theme, Copyright 2025
Structura Aménagement is distributed under the terms of the GNU GPL
*/

/* ========================================
   ROOT VARIABLES & GLOBAL STYLES
   ======================================== */
:root {
  --structura-dark: #0a0a0a;
  --structura-dark-light: #141414;
  --structura-gold: #9d8c6f;
  --structura-gray: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--structura-dark);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: var(--structura-dark);
}

.section-light {
  background-color: var(--structura-dark-light);
}

.btn-primary {
  background-color: var(--structura-gold);
  color: var(--structura-dark);
  padding: 0.75rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}