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

body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  background-color: #503934;
  color: #a0a0a0;
  line-height: 1.6;
}

a {
    color: #00d2ff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block; /* Add this line */
}

a:hover {
    text-decoration: none;
    /* transform: scale(1.05);  Reduced from 1.3 to 1.1 for subtler effect */
    /*color: #33deff; */
}


/* =========================
   Header
========================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #503934;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #a0a0a0;
}

.site-header .logo img {
  height: 40px;
}

.site-nav a {
  margin-left: 2rem;
  font-weight: bold;
  color: #00d2ff;
}

/* =========================
   Hero Section
========================= */
.hero {
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center;    /* Center horizontally */
  padding: 3rem 2rem;
  gap: 2rem;
}

.hero-left {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem; /* Add spacing below logo */
}

.hero-left img {
  max-width: 1000px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center blurb and slideshow */
  width: 100%;
}

.hero-right p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #a0a0a0;
  text-align: center; /* Center text */
}

/* Two-column hero layout (optional for other pages) */
.hero--columns {
  flex-direction: row;
  align-items: stretch;
  gap: 3rem;
}

.hero--columns .hero-left,
.hero--columns .hero-right {
  width: 50%;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

/* Responsive: stack columns on small screens */
@media (max-width: 900px) {
  .hero--columns {
    flex-direction: column;
    align-items: center;
  }
  .hero--columns .hero-left,
  .hero--columns .hero-right {
    width: 100%;
  }
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
  z-index: 2;
}

.slideshow-arrow:hover {
  color: #00d2ff;
}

.slideshow-arrow.left {
    left: -40px;
}

.slideshow-arrow.right {
    right: -40px;
}

.slideshow-images {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.slideshow-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

/* =========================
   Clients Banner
========================= */
.clients-banner {
  display: flex;
  overflow-x: auto;
  padding: 1rem 2rem;
  gap: 2rem;
  margin-top: 2rem;
}

.clients-banner a img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s;
}

.clients-banner a img:hover {
  transform: scale(1.1);
}

/* Hide scrollbar for Webkit */
.clients-banner::-webkit-scrollbar {
  display: none;
}

/* =========================
   Footer
========================= */
.site-footer {
  background-color: #503934;
  border-top: 1px solid #a0a0a0;
  padding: 2rem;
  text-align: center;
}

.site-footer .footer-nav a {
  margin: 0 1rem;
  color: #00d2ff;
  font-weight: bold;
}

.site-footer .footer-contact p {
  margin: 0.3rem 0;
  color: #a0a0a0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-left img {
    max-width: 200px;
  }
}
