/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  color: white;
  text-align: center;
  overflow-x: hidden;
}

/* Background Slideshow */
.slideshow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: -1;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 18s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }
.slide:nth-child(4) { animation-delay: 9s; }
.slide:nth-child(5) { animation-delay: 12s; }
.slide:nth-child(6) { animation-delay: 15s; }

@keyframes fade {
  0% {opacity: 0;}
  10% {opacity: 1;}
  30% {opacity: 1;}
  40% {opacity: 0;}
  100% {opacity: 0;}
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 15px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #f0c14b;
}

/* Sections */
section {
  padding: 100px 20px;
  background: rgba(0,0,0,0.6);
  margin: 80px auto;
  max-width: 800px;
  border-radius: 12px;
}

h1, h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Animated Home Text */
.animated-text {
  font-size: 3.5em;
  font-family: "Brush Script MT", cursive;
  animation: fadeIn 3s ease-in-out infinite alternate;
}

@keyframes fadeIn {
  from {opacity: 0.5;}
  to {opacity: 1;}
}

/* Dropdown Buttons */
.dropdown-btn {
  background: #c59d5f;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.dropdown-btn:hover {
  background: #e6b980;
  box-shadow: 0 0 10px #e6b980;
}

/* Dropdown Content */
.dropdown-container {
  display: none;
  background: rgba(255,255,255,0.1);
  margin: 10px auto;
  border-radius: 10px;
  padding: 10px;
  max-width: 500px;
}

.dropdown-container ul {
  list-style: none;
}

.dropdown-container li {
  margin: 8px 0;
  font-size: 16px;
}

/* Form */
form input, form button {
  padding: 10px;
  margin: 10px;
  width: 80%;
  border-radius: 8px;
  border: none;
}

form button {
  background: #c59d5f;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #e6b980;
}
