/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #262626;
  color: #262626;
}

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Intro Section */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #262626;
  z-index: 262626;
  position: relative;
  animation: introFadeOut 1s ease-in-out 2.5s forwards;
}

/* Intro Logo Styling */

.intro-logo {
  width: 100%;
  max-width: 130px;  /* Ideal default size */
  height: auto;
  opacity: 0;
  animation: fadeZoomIn 1.5s ease-in-out forwards;
}

/* Zoom + Fade-in Effect */
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Optional: Fade out the whole intro after a few seconds */
@keyframes introFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


/* Header Styling - Keep This Same Across All Pages */
.site-header {
  background: #262626;
  padding: 15px 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

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

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 16px;
  transition: background 0.3s;
  border-radius: 4px;
}

.nav-list li a.active,
.nav-list li a:hover {
  background: #cdd855;
}

/* Responsive Stack on Mobile */

@media (max-width: 768px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* === Banner === */
.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.banner-images {
  display: flex;
  width: calc(100vw * 9); /* 9 images wide */
  height: 100%;
  animation: slideBanner 45s infinite;
}

.banner-img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

@keyframes slideBanner {
  0%   { transform: translateX(0vw); }
  11.11% { transform: translateX(0vw); }

  12.5%  { transform: translateX(-100vw); }
  23.61% { transform: translateX(-100vw); }

  25%  { transform: translateX(-200vw); }
  36.11% { transform: translateX(-200vw); }

  37.5%  { transform: translateX(-300vw); }
  48.61% { transform: translateX(-300vw); }

  50%  { transform: translateX(-400vw); }
  61.11% { transform: translateX(-400vw); }

  62.5%  { transform: translateX(-500vw); }
  73.61% { transform: translateX(-500vw); }

  75%  { transform: translateX(-600vw); }
  86.11% { transform: translateX(-600vw); }

  87.5%  { transform: translateX(-700vw); }
  98.61% { transform: translateX(-700vw); }

  100% { transform: translateX(-800vw); }
}

/* === Quick Sections === */
.quick-sections {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 60px 30px;
  gap: 30px;
  flex-wrap: wrap;
}

.quick-box {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.quick-box h2 {
  margin-bottom: 10px;
  font-size: 1.8em;
}

.quick-box p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.quick-box a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.quick-box a:hover {
  background-color: #000;
}

/* Footer */

.site-footer {
  background-color: #262626;
  color: #ffffff;
  padding: 20px 40px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Makes icons white */
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}