body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff8f0;
  color: #333;
}

#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.spinner {
  border: 6px solid #ddd;
  border-top: 6px solid #c77d49;
  border-radius: 50%;
  width: 50px; height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero {
  position: relative;
  height: 70vh;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 10px;
}

.logo-bar .logo {
  height: 50px;
}

.overlay p {
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.cta-btn {
  margin-top: 15px;
  background-color: #c77d49;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.content, .slider-section, .contact {
  padding: 30px 20px;
  text-align: center;
}

.slider-section {
  margin-top: 20px;
  border-top: 1px solid #ddd;
}

.vertical-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: 15px auto;
  max-width: 80%;
}

.vertical-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.contact-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #c77d49;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

