/* --------------------------- */
/*   GLOBAL & MOBILE FIRST     */
/* --------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}


/* --------------------------- */
/*   NAVIGATION (Mobile first) */
/* --------------------------- */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.97);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo {
  font-family: "Playfair Display", serif;
  color: #D9912B;
  font-size: 1.7rem;
  font-weight: 700;
}

/* Mobile menu */
.menu-icon {
  font-size: 1.8rem;
  cursor: pointer;
  display: block;
}

#menu-toggle {
  display: none;
}

.nav-links {
  list-style: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: white;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
  display: none;
  text-align: center;
}

#menu-toggle:checked ~ .nav-links {
  display: flex;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
}


/* --------------------------- */
/*         HERO SECTION        */
/* --------------------------- */

.hero {
  height: 100vh;
  background: url('img/header.png') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.overlay {
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 90%;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.3rem;
  color: #F2B441;
  margin-bottom: 15px;
}

.contact {
  font-size: 1.1rem;
  line-height: 1.6;
}


/* --------------------------- */
/*        ABOUT SECTION        */
/* --------------------------- */

.content-section {
  padding: 60px 25px;
  background: #f6f6f6;
  text-align: center;
}

.quote {
  max-width: 700px;
  margin: auto;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.7;
}


/* --------------------------- */
/*        SERVICES             */
/* --------------------------- */

.services {
  padding: 60px 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  padding-bottom: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #D9912B;
}

.service-card p {
  padding: 0 20px;
  line-height: 1.6;
  font-size: 1rem;
}

/* --------------------------- */
/*   ALTERNATING SERVICE ROWS  */
/* --------------------------- */

.services-alt {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* One row (mobile-first stacked) */
.service-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Image block */
.service-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Text box */
.service-text {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #D9912B;
  position: relative;
}

.service-text h3::before {
  content: "";
  width: 40px;
  height: 3px;
  background: #D9912B;
  position: absolute;
  top: -10px;
  left: 0;
}

.service-text p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* Divider between items */
.divider {
  text-align: center;
}

.divider span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #ccc;
  border-radius: 3px;
}

.service-text ul {
  margin-top: 15px;
  margin-left: 20px;     /* Fix indentation */
  padding-left: 10px;    /* Soft left padding */
}

.service-text li {
  margin-bottom: 10px;   /* Better spacing between bullets */
  line-height: 1.6;      /* More readable */
}



/* --------------------------- */
/*   DESKTOP STYLES            */
/* --------------------------- */

@media (min-width: 768px) {

  .service-row {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  /* Reverse layout (img right / text left) */
  .service-row.reverse {
    flex-direction: row-reverse;
  }

  .service-img img {
    width: 420px;
    height: 260px;
  }

  .service-text {
    width: 420px;
    height: fit-content;
  }
}


/* --------------------------- */
/*          FOOTER             */
/* --------------------------- */

footer {
  background: #333;
  color: #eee;
  padding: 25px;
  text-align: center;
  font-size: .9rem;
}


/* --------------------------- */
/*      ANIMATIONS             */
/* --------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* --------------------------- */
/*       DESKTOP (Responsive)  */
/* --------------------------- */

@media (min-width: 768px) {
  .navbar {
    padding: 15px 40px;
  }

  .menu-icon {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    display: flex !important;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .services {
    flex-direction: row;
    justify-content: center;
  }
}
