 /* Internal CSS for basic styling */
 body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    padding: 0;
    text-align: left;
}


.div1 {
  position: relative;
  background-size: cover;
  color: #080808;
  font-size: 1rem;
  line-height: 1.6;
  padding: 3rem;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Background image layer */
.div1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Images/RDC/Fire.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

/* Fade effect layer (white gradient at top & bottom) */
.div1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 90%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
  pointer-events: none; /* Keeps it from blocking clicks */
}

/* Text container */
.div1-content {
  position: relative;
  z-index: 2; /* above both ::before and ::after */
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(5px);
}

/* Typography */
.div1 h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.div1 h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  color: #333;
}

.div1 p {
  margin-bottom: 1rem;
  color: #222;
}

.div1 ul {
  margin-left: 1.5rem;
  line-height: 1.6;
}

nav {
  position: relative;
  z-index: 10; /* ensures the menu appears above the background layers */
}


.header {
  padding: 20px;
  text-align: left;
  background: #ffffff;
  color: rgb(0, 0, 0);
  font-size: 20px;
}

input.custom {
position: absolute;  
left: 300px; 
width: 200px;
}

input.custom2 {

    position: absolute;  
left: 300px; 
}

select.custom {

  font:
    16px "Helvetica",
    "Arial",
    "sans-serif";
    position: absolute;  
left: 300px; 
width: 50px;
}

/* Highlight on focus */
.custom:focus {
    background-color: #D9A56B;
}

p.contact {
    margin-top: 0px;
    margin-bottom: 5px;
    margin-right: 0px;
    margin-left: 10px;
  }

header {
display: flex;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
height: 100px; /* Adjust as necessary */
background-color: #FFFFFF; /* Optional background */
}

.center-image {
max-width: 100px; /* Adjust the size as needed */
height: auto;
}

img.tarifs {
    max-width: 600px;
}

section {
    padding: 20px;
}
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Basic menu styling */

nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
margin-left: 25px;

}

nav ul li {
flex : 1 1 auto;
position: relative;
}

nav ul li a {
padding: 5px 5px;
display: block;
text-decoration: none;
color: #D9A56B;
background-color: #FFFFFF;

}

nav ul li a:hover {
background: #FAF4EC;
}

nav ul .submenu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #FFFFFF;
padding: 0;
width: 100%;
}

nav ul .submenu li {
display: block;
}

nav ul li:hover .submenu {
display: block;  
flex : 1 1 auto;

}

/* Icons  */

.list-group   {
font-size: 3em;  
position: absolute; 
top: 15px; 
left: 15px; 
}

.list-group-item {
color: #D9A56B
}


.list-group  a.list-group-item:hover {
color:#DDD ;
}

/* Image gallery */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 8px;

    
  }
  
  
  body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    padding: 0;
    text-align: left;
    color: #080808; /* optional, keeps consistency */


  }


  img {
    width: 100%;
    height: auto;
  }

  /* Hamburger menu on mobile */

  @media screen and (max-width: 800px) {
    .hamburger {
      display: flex;
    }
    .nav {
      display: none;
      position: absolute;
      text-align: center;
      width: 100%;
      right: 0px;
      top: 50px;
    }

 }

/* This part is for index page only: */

.div2 {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #080808;
  font-size: 1rem;
  line-height: 1.6;
  padding: 6rem 3rem;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh; /* fills most of the viewport */
  text-align: center;
}

/* Background image layer */
.div2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Images/RDC/Fire.jpeg"); /* change path as needed */
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) saturate(1.1);
  opacity: 0.6;
  z-index: 0;
  transition: transform 10s ease, opacity 1s ease;
}

/* Slow zoom animation on hover */
.div2:hover::before {
  transform: scale(1.05);
  opacity: 0.7;
}

/* Soft white fade at top & bottom */
.div2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0) 85%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Text container */
.div2-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.55);
  padding: 3rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.div2-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* Typography */
.div2 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
  margin-top: -20rem;
}

.div2 h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  color: #333;
}

.div2 p {
  margin-bottom: 1.5rem;
  color: #222;
  line-height: 1.7;
}

/* Optional fade-in animation */
.div2-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }}

.handwritten-title {
  font-family: 'Satisfy', cursive;
  font-size: 10rem !important;
  color: #404040 !important;
  text-align: center;
  transform: rotate(-5deg);
  letter-spacing: -1px;
}

/* ===== BURGER BUTTON ===== */

.burger {
    display: none;
    font-size: 30px;
    color: #D9A56B;
    padding: 15px;
    cursor: pointer;
}

/* ===== MOBILE MENU ===== */

@media (max-width: 768px) {

    nav {
        position: relative;
    }

  .burger {
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    color: #D9A56B;
    padding: 10px;
    cursor: pointer;
    z-index: 10000;
}

    #menu {

        display: none;
        flex-direction: column;

        position: absolute;
        top: 60px;
        left: 0;

        width: 100%;

        background: rgba(255,255,255,0.98);

        z-index: 9999;

        box-shadow: 0 4px 10px rgba(0,0,0,0.1);

    }

    #menu.active {
        display: flex;
    }

    #menu li {

        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;

    }

    #menu li a {

        padding: 15px;
        display: block;

    }

    .submenu {

        display: none !important;
        position: static !important;
        width: 100% !important;

        background: #f8f8f8;

    }

    .submenu.active {
        display: block !important;
    }


 /* ----- Front page image on mobile ----- */

    .div2::before {
        background-position: 25% center;
        background-size: cover;
    }

    .div2 {
        min-height: 80vh;
        padding: 3rem 1rem;
    }

    .div2 h1 {
        font-size: 3rem;
        margin-top: 0;
    }

    .handwritten-title {
        font-size: 5rem !important;
    }

    .div2-content {
        padding: 1.5rem;
        margin: 1rem;
    }


}






 