/* General Styles (same as before) */
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    background-color: white;
    color: #333;
}

header {
    background-color: #F2E4B7; // // Cream DB-439:  a warm pale buttery tone.
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    font-size: 1.5rem;
    text-decoration: none;
    color: lightslategray;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: lightslategray;
    font-size: 1rem;
}

.icons a {
    margin-left: 15px;
    font-size: 1.5rem;
    color: gray;
    text-decoration: none;
}

.hero {
    background-color: #F5EAD6;// Light Ivory DB-623: — even softer, leaning slightly toward off-white with a hint of yell0.
    color: black;
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
} 

.hero p {
    font-size: 1.25rem;
}

.narrative {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.narrative-text {
    width: 45%;
}

.narrative-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.narrative-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.body-narrative {
    padding: 50px;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.body-narrative h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.body-narrative p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gallery {
    text-align: center;
    padding: 40px;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-items {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 80%;
}

.gallery-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.gallery-button {
    background-color: #F2E4B7;
    color: lightslategray;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
}

.gallery-button:hover {
    background-color: #F5EAD6;
}

.form-section {
    background-color: whitesmoke;
    padding: 40px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form button {
    padding: 10px 20px;
    background-color: #F2E4B7;
    color: lightslategray;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #F5EAD6;
}

.cta {
    text-align: center;
    margin-top: 40px;
}

.cta button {
    padding: 15px 30px;
    background-color: #F2E4B7;
    color: lightslategray;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta button:hover {
    background-color: #F5EAD6;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #F2E4B7;
    color: lightslategray;
}





/* Popup Styles */
.contact-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with transparency */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.whatsapp-qr {
    width: 150px;
    height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Button Styles */
.cta {
    text-align: center;
    margin-top: 40px;
}

.cta button {
    padding: 15px 30px;
    background-color: #F2E4B7;
    color: lightslategray;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta button:hover {
    background-color: #F5EAD6;
}



* {box-sizing: border-box}
.mySlides1, .mySlides2 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: lightslategray;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}
