/*
Theme Name: Boucherie Maximizing
Theme URI: https://boucherie-maximizing.fr
Author: Boucherie Maximizing
Author URI: https://boucherie-maximizing.fr
Description: Thème WordPress sur une page pour Boucherie Maximizing - Viandes de qualité premium depuis 1985
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boucherie-maximizing
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ========================================
   DESIGN SYSTEM - CSS Variables (HSL)
   ======================================== */

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;

  --card: 0 0% 100%;
  --card-foreground: 0 0% 10%;

  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 10%;

  --primary: 0 0% 7%;
  --primary-foreground: 0 0% 98%;

  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 10%;

  --muted: 0 0% 95%;
  --muted-foreground: 0 0% 45%;

  --accent: 0 75% 45%;
  --accent-foreground: 0 0% 98%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;

  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --ring: 0 75% 45%;

  --radius: 0rem;

  /* Custom butcher theme colors */
  --crimson: 0 75% 45%;
  --crimson-dark: 0 75% 35%;
  --dark-bg: 0 0% 7%;
  --light-text: 0 0% 95%;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.section-dark {
  background-color: hsl(var(--dark-bg));
  color: hsl(var(--light-text));
}

.section-light {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.heading-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-crimson {
  background-color: hsl(var(--crimson));
  color: white;
}

.btn-crimson:hover {
  background-color: hsl(var(--crimson-dark));
}

.btn-outline {
  background-color: transparent;
  border: 2px solid hsl(var(--crimson));
  color: hsl(var(--crimson));
}

.btn-outline:hover {
  background-color: hsl(var(--crimson));
  color: white;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: hsl(var(--crimson));
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 5rem 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 2rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-dark {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background-color: hsl(var(--dark-bg));
  color: hsl(var(--light-text));
  padding: 4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col {
  text-align: center;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--crimson));
  margin: 0 auto 1rem;
}

.footer-col h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-navigation.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem;
  }

  .main-navigation.mobile-open ul {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1024px) {
  .grid-cols-2-lg {
    grid-template-columns: repeat(2, 1fr);
  }
}
