body{margin:0;font-family:'Inter', sans-serif;background:#f4f1ec;color:#333}
header{display:flex;justify-content:space-between;align-items:center;padding:18px 8%;background:#1f1f1f;color:#fff;position:sticky;top:0}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 200px;
  width: auto;
  display: block;
}
nav a {
  color: #ccc;
  margin-left: 24px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
nav a:hover {
  color: #b47b35;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 40px;
  background-color: #1f1f1f;
  color: #fff;
  padding: 80px 5%;
  min-height: 70vh;
}
.hero-content-left {
  text-align: left;
}
.hero-content-left h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
}
.hero-content-left p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #ccc;
  line-height: 1.5;
}
.hero-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 8%;
    min-height: auto;
  }
  .hero-content-left {
    text-align: center;
    margin-bottom: 30px;
  }
  .hero-content-left h1 {
    font-size: 2.2rem;
  }
}
h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.btn {
  font-family: 'Outfit', sans-serif;
  background: #b47b35;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: background-color 0.2s, transform 0.2s;
}
.btn:hover {
  background-color: #9d682a;
  transform: translateY(-1px);
}
section{padding:60px 8%}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
.card{background:#fff;padding:30px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.15)}
footer{text-align:center;padding:20px;background:#1f1f1f;color:#fff}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
  background-color: #1a1a1a; /* Sleek dark background for letterboxing */
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fit image without cropping */
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}
.carousel-slides img.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0; /* Arrow controls fade in on card hover */
  z-index: 10;
}
.carousel-container:hover .carousel-btn {
  opacity: 1;
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dots .dot:hover, .carousel-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Contact Reveal Styles */
.reveal-link {
  color: #b47b35;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}
.reveal-link:hover {
  color: #9d682a;
}
.contact-link {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.contact-link:hover {
  color: #b47b35;
  text-decoration: underline;
}


