/* Reset CSS de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
}

/* Variables CSS (sera remplacé par le script) */
:root {
  --primary-50: #f9e6fc;
  --primary-100: #f2ccfa;
  --primary-200: #e5a6f5;
  --primary-300: #d97ff0;
  --primary-400: #cb6ce6;
  --primary-500: #b84dd9;
  --primary-600: #9f3cc0;
  --primary-700: #7e2f99;
  --primary-800: #65247a;
  --primary-900: #4a1757;
}

/* Container utilitaire */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

/* Navigation */
.nav {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary-600);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  color: var(--primary-600);
}

.hero p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 768px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.profile-card {
  padding: 1.5rem;
}

.profile-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.profile-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Place Cards */
.place-card {
  padding: 1.5rem;
}

.place-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.place-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.place-info svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  color: var(--primary-500);
  flex-shrink: 0;
}

.hours-list {
  list-style: none;
  margin-top: 0.75rem;
}

.hours-list li {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.hours-day {
  font-weight: 600;
}

.hours-closed {
  color: #dc2626;
}

.hours-open {
  color: #059669;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-500);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-full {
  width: 100%;
}

.city-btn {
  background: var(--primary-500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
  display: inline-block;
}

.city-btn:hover {
  background: var(--primary-600);
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-50), #fce7f3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Sections */
.section {
  margin: 3rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-in:nth-child(5) { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
}

/* Link styles */
.internal-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 600;
}

.internal-link:hover {
  text-decoration: underline;
}