/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CUSTOM FONT */
@font-face {
  font-family: 'Ethnocentric';
  src: url('../fonts/Ethnocentric Extra Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  position: relative;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  height: 120px;
  background-color: #ffffff;
  padding: 20px;
  z-index: 10;
}

/* HAMBURGER MENU */
.menu-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 25px;
  cursor: pointer;
  z-index: 9999;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
}

/* LOGO CENTER */
.logo-container {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.logo {
  height: 100px;
  object-fit: contain;
}

/* PHONE + SOCIAL */
.header-right {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.contact-number a {
  font-size: 0.95rem;
  color: #999999;
  text-decoration: none;
}

.contact-number a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #999999;
  font-size: 1.1rem;
  text-decoration: none;
}

.social-icons a:hover .fa-linkedin-in { color: #0077b5; }
.social-icons a:hover .fa-facebook-f { color: #1877F2; }
.social-icons a:hover .fa-youtube { color: #FF0000; }
.social-icons a:hover .fa-instagram { color: #C13584; }

/* NAVIGATION MENU */
.nav {
  position: absolute;
  top: 120px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  display: none;
  flex-direction: column;
  width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.nav.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.nav ul {
  list-style: none;
}

.nav li {
  border-bottom: 1px solid #eee;
}

.nav li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  font-family: 'Ethnocentric', sans-serif;
  transition: background-color 0.3s ease;
}

.nav li a:hover {
  background-color: #f0f0f0;
}

/* CAROUSEL */
.carousel {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: 30% auto;
}

.slide.active {
  opacity: 1;
}

/* CAROUSEL TEXT */
.carousel-text {
  position: relative;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

#subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #999999;
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: 1;
  font-family: 'Ethnocentric', sans-serif;
}

#title {
  font-family: 'Ethnocentric', sans-serif;
  font-size: 36px;
  letter-spacing: 4px;
  color: #999999;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 1;
}

/* DOTS */
.dots {
  position: relative;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #666;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  width: 14px;
  height: 14px;
  opacity: 1;
  background-color: #222;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #666;
  opacity: 0.5;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
  user-select: none;
}

.arrow:hover {
  opacity: 1;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* FOOTER */
.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  font-size: 0.75rem;
  color: #999999;
  padding: 8px 0;
  z-index: 50;
  border-top: 1px solid #eeeeee;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-container {
    position: relative;
    left: 0;
    transform: none;
    text-align: center;
    margin-top: 60px;
  }

  .header-right {
    position: relative;
    align-items: center;
    margin-top: 10px;
    top: 0;
    right: 0;
  }

  .contact-number a {
    font-size: 1rem;
  }

  .social-icons {
    justify-content: center;
  }

  .menu-toggle {
    top: 10px;
    transform: none;
  }

  .nav {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
  }

  #title {
    font-size: 28px;
  }

  #subtitle {
    font-size: 12px;
  }
}
