/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f6f7f7;
  color: #2c2c2c;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================
   NAVIGATION
===================== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(18, 28, 32, 0.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #e9e7e3;
  letter-spacing: 0.5px;
}

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #e9e7e3;
  margin-left: 24px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

nav a:hover {
  color: #c7a75c;
}

/* =====================
   HAMBURGER MENU
===================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #e9e7e3;
  margin: 5px 0;
  transition: 0.3s;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background-image: url("images/lane2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #1c2c32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(15, 25, 30, 0.55);
  color: #fff;
  padding: 60px 50px;
  text-align: center;
  max-width: 800px;
  border-radius: 10px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 100px 25px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1c2c32;
  color: #e6e6e6;
}

.content {
  max-width: 1200px;
  margin: auto;
}

/* =====================
   HEADINGS
===================== */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 30px;
  color: #1c2c32;
}

.section.dark h2 {
  color: #c7a75c;
}

/* =====================
   HOME / INTRO
===================== */
.home-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.home-text {
  flex: 1;
}

.home-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.home-text .subtitle {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #555;
}

.home-text p {
  margin-bottom: 15px;
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.home-image img {
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* =====================
   ABOUT SECTION
===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.about-text p {
  margin-bottom: 18px;
}

/* Slideshow */
.about-slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-slideshow img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* =====================
   SERVICES
===================== */
.services-list {
  list-style: none;
  margin-top: 20px;
}

.services-list li {
  padding: 14px 0;
  border-bottom: 1px solid #ccc;
  font-size: 1.05rem;
}

/* =====================
   VIDEO SECTION
===================== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =====================
   CONTACT
===================== */
.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 160px;
}

.contact-form button {
  background: #1c2c32;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #c7a75c;
  color: #1c2c32;
}

/* Phone Call */
.contact-phone {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-phone a {
  color: #c7a75c;
  text-decoration: none;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #121c20;
  color: #9ea5a8;
  text-align: center;
  padding: 25px;
  font-size: 0.85rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #121c20;
    flex-direction: column;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 15px 0;
  }

  .home-grid {
    flex-direction: column;
    text-align: center;
  }

  .home-image {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-overlay {
    padding: 35px 25px;
  }

  h2 {
    font-size: 2rem;
  }
}


.about-slideshow {
  position: relative;
  width: 100%;
  height: 420px; /* REQUIRED */
  overflow: hidden;
  border-radius: 10px;
}

.about-slideshow img.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-slideshow img.slide.active {
  opacity: 1;
}