/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #E6E3D5; /* Beige clair du logo */
  margin: 0;
}

/* Header */
header {
  background: #5A6457; /* Vert foncé du logo */
  color: #E6E3D5;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 4px solid #C2A471; /* Soulignement doré pour l'élégance */
}

header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

header .tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: #C2A471; /* Beige doré */
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: #5A6457;
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.navbar .nav-link {
  color: #E6E3D5;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #C2A471;
}

.main-content {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 3rem;
  background: #5A6457; /* Vert foncé pour l'immersion */
  color: #E6E3D5;
  padding: 3rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #C2A471;
  margin-bottom: 1rem;
}

.hero p {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.hero .cta-button {
  display: inline-block;
  background-color: #C2A471;
  color: #E6E3D5;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.hero .cta-button:hover {
  background-color: #8D8267;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #5A6457;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #5A6457;
  margin-bottom: 1rem;
  font-weight: 700;
}

.values-section {
  margin-top: 4rem;
}

.values {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.value {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 300px;
height: 200px;
}

footer {
  background-color: #5A6457;
  color: #E6E3D5;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 4px solid #C2A471;
}

footer a {
  color: #C2A471;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info,
.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.btn-submit {
  background-color: #C2A471;
  color: #E6E3D5;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #8D8267;
}

/* Event Section */
.event-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 1rem;
}

.event-image {
  flex: 1;
  max-width: 100%;
  border-radius: 10px 0 0 10px;
}

.event-details {
  flex: 2;
  padding: 1rem;
}

.btn-location,
.btn-reserve {
  display: inline-block;
  background-color: #C2A471;
  color: #E6E3D5;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.btn-location:hover,
.btn-reserve:hover {
  background-color: #8D8267;
}

/* Dropdown styling */
.select-event {
  margin-top: 1rem;
  padding: 0.8rem;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

/* Blog Section */
.blog-posts {
  margin-top: 3rem;
}

.blog-post {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
  font-size: 2.2rem;
  color: #5A6457;
  margin-bottom: 1rem;
}

.blog-post .blog-summary {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.blog-post .read-more {
  display: inline-block;
  background-color: #C2A471;
  color: #E6E3D5;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.blog-post .read-more:hover {
  background-color: #8D8267;
}

.header img{
  width: 200px;
}
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #E6E3D5; /* Beige clair du logo */
  margin: 0;
}

/* Header */
header {
  background: #5A6457; /* Vert foncé du logo */
  color: #E6E3D5;
  padding: 2rem 0;
  text-align: center;
  border-bottom: 4px solid #C2A471; /* Soulignement doré pour l'élégance */
}

header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

header .tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: #C2A471; /* Beige doré */
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: #5A6457;
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.navbar .nav-link {
  color: #E6E3D5;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #C2A471;
}

/* Main Content */
.main-content {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #5A6457;
  margin-bottom: 1.5rem;
}

.contact-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info,
.contact-form {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #5A6457;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.8rem;
}

/* Contact Form */
.contact-form h3 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #5A6457;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #5A6457;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  background-color: #C2A471;
  color: #E6E3D5;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.1rem;
}

.btn-submit:hover {
  background-color: #8D8267;
}

/* Footer */
footer {
  background-color: #5A6457;
  color: #E6E3D5;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 4px solid #C2A471;
}

footer a {
  color: #C2A471;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
  }

  .navbar .nav-link {
    margin: 0.5rem 0;
  }
}


/* Images des articles */
.blog-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Articles */
.blog-post {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
}

.blog-summary {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 10px 15px;
  font-size: 0.9rem;
  color: white;
  background-color: #FF7F50;
  border-radius: 5px;
  text-decoration: none;
}

.read-more:hover {
  background-color: #FF6347;
}
