/*
Theme Name: Natureo
Theme URI: https://natureo.ma
Author: Natureo
Author URI: https://natureo.ma
Description: Luxe intérieur design — L'art de vivre chez soi. Ultra-premium furniture & home decoration WordPress theme with glassmorphism design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: natureo
Domain Path: /languages
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
WooCommerce: true
*/

:root {
  --bg-primary: #F7F4EF;
  --bg-secondary: #E8DDCF;
  --accent: #55624C;
  --accent-dark: #394336;
  --text: #2F2B28;
  --gold: #CDA46A;
  --glass: rgba(255,255,255,0.18);
  --glass-alt: rgba(255,255,255,0.15);
  --glass-border: rgba(255,255,255,0.25);
  --glass-border-hover: rgba(255,255,255,0.4);
  --shadow-soft: 0 35px 90px rgba(0,0,0,0.08);
  --shadow-float: 0 45px 120px rgba(0,0,0,0.12);
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 32px;
  --radius-xl: 36px;
  --radius-full: 999px;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navbar-height: 90px;
  --navbar-scrolled: 72px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 300;
  color: rgba(47,43,40,0.7);
  max-width: 480px;
  line-height: 1.6;
}

.gold-text {
  color: var(--gold);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-dark);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}

.btn-secondary {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--glass-border-hover);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn .icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover .icon-arrow {
  transform: translateX(4px);
}

.glass {
  background: rgb(157 157 157 / 21%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.glass::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.noise {
  position: relative;
}

.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.glass-card {
  composes: glass noise;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  box-shadow: var(--shadow-float);
  border-color: var(--glass-border-hover);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

::selection {
  background: var(--gold);
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b88c 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
