body {
  background: url('images/logo-watermark.png') no-repeat center center fixed;
  background-size: contain;
  background-color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #1F1F1F;
}

header {
  background-color: #1F1F1F;
  color: #E6C100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}

.branding {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 15px;
}

nav a {
  color: #E6C100;
  margin-left: 1em;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #D6201E;
}

main {
  padding: 2em;
}

h1, h2 {
  color: #D6201E;
}

.fade-slider-container {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}

.fade-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  animation: fadeEffect 1s ease-in-out;
}

.fade-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.fade-slide.active {
  display: block;
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Slider images */
.slider-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Optional: make slider transition smooth */
.slider-container .slide {
  transition: opacity 0.6s ease-in-out;
}

form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1em;
  padding: 0.6em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 0.7em 1.5em;
  background-color: #D6201E;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #A51515;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}

footer {
  background-color: #1F1F1F;
  color: #E6C100;
  text-align: center;
  padding: 1em;
  margin-top: 2em;
}
