/*
Theme Name: Amelia & James Inspired
Description: Thème romantique et festif
Version: 1.0
*/

/* Polices */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
  background-color: #fdfaf6;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
header {
  background: rgba(255,255,255,0.9);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8b4513;
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #c65d2e;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #e0a96d;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  z-index: 1;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  z-index: 1;
}
.hero .cta {
  margin-top: 20px;
  padding: 12px 30px;
  background: #e0a96d;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  z-index: 1;
}
.hero .cta:hover {
  background: #c65d2e;
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 40px;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Témoignages */
.testimonials {
  background: #fdfaf6;
}
.testimonial {
  max-width: 600px;
  margin: 0 auto 40px;
  font-style: italic;
  color: #555;
}
.testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: #c65d2e;
  color: white;
  text-align: center;
  padding: 20px;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}
