/* ===============================
   GLOBAL SETTINGS
================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

/* ===============================
   HEADER + NAVBAR
================================== */
header {
  background-color: #800000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #660000;
  color: #ffcc00;
  border-radius: 5px;
}

/* ===============================
   DROPDOWN MENU
================================== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #800000;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 220px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  padding: 10px 15px;
  font-weight: 500;
  color: white;
}

.dropdown-menu a:hover {
  background-color: #0059b3;
  color: #ffcc00;
}

/* Show dropdown smoothly on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown arrow */
.dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
  transform: rotate(-135deg);
}

/* ===============================
   HERO SLIDER (Continuous Scroll)
================================== */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: calc(200%);
  animation: scroll 100s linear infinite;
}

.slides img {
  width: 100%;
  height: 400px;
  object-fit: contain; /* Ensures image fits without zooming/cropping */
  background-color: #000; /* Fills any empty space */
}

/* Continuous scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============================
   HERO TEXT / UNDER CONSTRUCTION
================================== */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 40px;
  border-radius: 12px;
}

.construction-gif {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffcc00;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.hero-text .contact {
  margin-top: 15px;
  font-size: 0.95rem;
}

.hero-text .contact a {
  color: #ffcc00;
  text-decoration: none;
}

.hero-text .contact a:hover {
  text-decoration: underline;
}

/* ===============================
   SECTION STYLING
================================== */
.section {
  width: 90%;
  margin: 50px auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.section h2 {
  color: #800000;
  border-bottom: 3px solid #ffcc00;
  display: inline-block;
  margin-bottom: 15px;
}

/* ===============================
   TABLES
================================== */
.muco-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.muco-table th,
.muco-table td {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: left;
}

.muco-table th {
  background-color: #800000;
  color: white;
}

.muco-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* ===============================
   CONTACT
================================== */
#contact p {
  line-height: 1.8;
}

/* ===============================
   FOOTER
================================== */
footer {
  text-align: center;
  background-color: #800000;
  color: white;
  padding: 15px 0;
  margin-top: 50px;
  font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE DESIGN
================================== */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid white;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-bottom: 10px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #800000;
  }

  nav ul.show {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Dropdown menus inside mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    transform: none;
    background-color: #660000;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .slider {
    height: 250px;
  }

  .slides img {
    height: 250px;
  }

  .hero-text {
    width: 90%;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }
}


/* === MOBILE DROPDOWN FIX === */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown .has-submenu {
    cursor: pointer;
  }
}


