@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Livraison Content
7. Footer

******************************/

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Alex+Brush|Great+Vibes|PT+Sans+Narrow:400,700");
@font-face {
  font-family: "Edward";
  src: url(../font/edwardian_script_itc.ttf) format("truetype"),
    url(../font/edwardian_script_itc.otf) format("opentype");
}
/*********************************
2. Body and some general stuff
*********************************/

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #ffffff;
  color: #a5a5a5;
}
.home_title h1 {
  font-size: 72px;
  color: #ffffff;
  font-family: "PT Sans Narrow", sans-serif;
}
.delivery_section {
  padding: 80px 0;
  background: #fff;
}

.delivery_box {
  background: #f8f8f8;
  padding: 40px;
  margin-bottom: 30px;
  border: 2px solid #c4ab9f;
  transition: all 0.3s ease;
}

.delivery_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.delivery_box h3 {
  color: #232323;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: "PT Sans Narrow", sans-serif;
}

.delivery_list {
  list-style: none;
  padding: 0;
}

.delivery_list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #636363;
}

.delivery_list li i {
  color: #b49383;
  margin-right: 15px;
  font-size: 24px;
  min-width: 30px;
  text-align: center;
}

.delivery_list li span {
  flex: 1;
}

.delivery_image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 30px;
}

.delivery_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery_cta {
  text-align: center;
  margin-top: 50px;
}

.delivery_button {
  display: inline-block;
  background: #b49383;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #b49383;
}

.delivery_button:hover {
  background: transparent;
  color: #b49383;
  text-decoration: none;
}

/* Style spécifique pour la section d'introduction */
.intro_delivery {
  text-align: center;
  margin-bottom: 60px;
}

.intro_delivery h2 {
  color: #232323;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro_delivery p {
  color: #636363;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .delivery_box {
    padding: 30px;
    margin-bottom: 20px;
  }

  .delivery_box h3 {
    font-size: 24px;
  }

  .delivery_list li {
    font-size: 16px;
  }

  .intro_delivery h2 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .delivery_section {
    padding: 60px 0;
  }

  .delivery_image {
    height: 200px;
  }

  .intro_delivery p {
    font-size: 16px;
  }
}
