/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  padding-top: 60px;
}

a {
  color: #FFD700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  padding: 15px 20px;
  z-index: 1000;
  border-bottom: 2px solid #FFD700;
}

header .logo {
  height: 30px;
  vertical-align: middle;
}

nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  display: inline;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #FFD700;
}

/* Slider */
.slider-container {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 40px;
  overflow: hidden;
  position: relative;
}

.slider {
  position: relative;
  height: 100%;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

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

/* About Page */
.about-content {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: auto;
  color: #fff;
}

.about-content h1 {
  color: #FFD700;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.column {
  flex: 1 1 30%;
  background: #111;
  padding: 20px;
  border-radius: 8px;
  min-width: 280px;
}

.column h2 {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 10px;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin-bottom: 5px;
}

/* Contact Form */
form {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: auto;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #FFD700;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #222;
  border: 1px solid #444;
  color: white;
  border-radius: 4px;
}

form input[type="submit"] {
  background: #FFD700;
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form input[type="submit"]:hover {
  background: #e6c200;
}

/* Status Message */
.status-message {
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #fffae6;
  border: 1px solid #e0c200;
  color: #333;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .about-columns {
    flex-direction: column;
  }

  .slider-container {
    width: 100%;
    height: auto;
  }

  .slider, .slide img {
    height: auto;
    max-height: 400px;
  }
}

main {
  margin-top: 70px;
}
