/*
Theme Name: Pomme de Reinette
Author: WP Theme Gen
Description: A modern, colorful, and playful theme for associations with glassmorphism and watercolor aesthetics.
Version: 1.0.0
Text Domain: pomme-de-reinette
*/

:root {
  --primary: #c00d41;
  --accent: #2c2c2c;
  --green: #4caf50;
  --blue: #2196f3;
  --orange: #ff9800;
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  --blur: blur(12px);
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--accent);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 50px;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,13,65,0.2) 0%, rgba(255,255,255,0) 70%);
  top: -200px;
  left: -200px;
  filter: blur(50px);
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, rgba(255,255,255,0) 70%);
  bottom: -100px;
  right: -100px;
  filter: blur(50px);
}

.glass-card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.footer-main {
  background: var(--accent);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}