@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Roboto&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #faf9f7;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #e3d5ca, #d5bdaf, #f5ebe0);
  text-align: center;
  padding: 3rem 1rem;
  color: #3a2c2c;
  border-bottom: 4px solid #b08968;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}

header p {
  font-size: 1.2rem;
  font-style: italic;
  color: #4a3f35;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #b08968;
  padding: 0.8rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #f5ebe0;
}

/* Features Section */
#features {
  padding: 2rem;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-btn {
  padding: 1rem 2rem;
  border: none;
  background: #d4a373;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.feature-btn:hover {
  background: #b08968;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  position: relative;
  background: #fff;
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.modal-content h2 {
  margin: 0;
  padding: 15px;
  font-size: 1.8rem;
  color: #333;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.slideshow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-wrapper {
  flex: 1;
  padding: 20px;
}

.slide-wrapper img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

#modalCaption {
  margin-top: 12px;
  font-size: 1rem;
  color: #444;
  font-style: italic;
}

/* Buttons */
.prev, .next {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Contact Section */
#contact {
  padding: 2rem;
  background: #f5ebe0;
}

#contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form label {
  margin: 0.5rem 0 0.3rem;
  font-weight: bold;
}

form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1rem;
}

form button {
  padding: 0.8rem;
  border: none;
  background: #b08968;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background: #8c6a53;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #3a2c2c;
  color: #fff;
  font-size: 0.9rem;
}
