* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #b8860b;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: #b8860b;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #b8860b;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #b8860b;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
    animation: fadeDown 0.3s ease;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem 2rem;
  max-width: 800px;
  opacity: 0;
  transition: opacity 1s ease-in-out 0.5s;
}

.slide.active .hero-content {
  opacity: 1;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.about-text,
.about-image {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #b8860b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 400px;
    margin-bottom: 2rem;
  }
}

.history {
  background: #f9f9f9;
  padding: 6rem 2rem;
  text-align: center;
}

.history h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #b8860b;
  margin-bottom: 1rem;
}

.history p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.faq {
  background: #fff;
  padding: 6rem 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #b8860b;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #b8860b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: #f9f9f9;
  border-radius: 8px;
}

.faq-answer p {
  padding: 0 1rem 1rem;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 0.5rem;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: #b8860b;
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

.fade-in-left,
.fade-in-right,
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: #111;
  color: #fff;
  padding: 3rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-about {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-about img {
  height: 50px;
  margin-bottom: 0.5rem;
}

.footer-about h3 {
  color: #b8860b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-about p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #b8860b;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b8860b;
}

.footer-contact p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: #b8860b;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.social-icons a {
  color: #b8860b;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }

  .footer-links ul,
  .footer-contact p {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 2rem 3rem;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 250px;
    margin-bottom: 0;
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 1rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #b8860b;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  z-index: 999;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: #e0a106;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
