/* ========================
   Base Reset & Typography
   ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", serif;
  color: #000;
  line-height: 1.6;
  padding-top: 0;
}

button, a {
  font-family: "Lora", serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================
   Navbar
   ======================== */
.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(9px);
  border-radius: 70px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
  height: clamp(36px, 5vw, 70px);
  display: block;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #044;
  font-weight: 200;
  font-size: 1.5em;
  padding: 5px;
  border-radius: 10px;
  display: inline-block;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: rgba(65, 80, 80, 0.1);
  color: #022;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #044;
  cursor: pointer;
}

/* ========================
   Hero Sections
   ======================== */
.hero {
  position: relative;
  height: 63vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  text-align: center;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.hero-about .hero-overlay,
.hero-services .hero-overlay,
.hero-contact .hero-overlay {
  background: rgba(30, 30, 30, 0.4); /* Darker or lighter as needed */
}


.hero .hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 3s ease-out both;
}

.hero-about .hero-text,
.hero-contact .hero-text,
.hero-services .hero-text {
  color: #ffffff;
}

.hero-index .hero-text {
  color: #000000;
}

.hero-heading h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #044;
}

.hero-subheading h2 {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 400;
  margin-top: 0;
}

.sub-hero-h2 {
  text-align: center;
  margin: 6rem 1rem;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #1f6463;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

h3 {
  padding-top: 1em;
  text-align: center;
  font-size: 3em;
}

.new-offer {
  padding-top: 1em;
  text-align: center;
  font-size: 1.5em;
}

/* ========================
   Intro & Content
   ======================== */
.intro {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.intro p {
  padding-top: 2.4rem;
  max-width: 700px;
  text-align: center;
  word-break: normal;
  hyphens: auto;
  line-height: 1.6;
}

.content-description {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem 2rem 3rem 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.content-description-contact {
  padding: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

/* ========================
   Buttons
   ======================== */
.cta-button, .cta-button-services {
  padding: 1rem 1.8rem;
  border-radius: 25px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.cta-button {
  background-color: #1f6463;
  color: white;
  display: block;
  margin: 2rem auto 0 auto;
  font-size: clamp(0.7rem, 1vw, 1rem);
  border: 0;
}

.cta-button:hover {
  background-color: #2f908e;
  
}

.cta-button-services {
  background-color: transparent;
  color: #1f6463;
  border: 0;
  display: inline-block;
  margin: 0.5rem;
}

.cta-button-services:hover {
  background-color: #2f908e;
}

.cta-button-services.active {
  background-color: #1f6463;
  color: white;
}

.service-container {
  text-align: center;
  margin-bottom: 1rem;
}

.service-text {
  margin: 0 auto;
  width: 47.3%;
}

/* ========================
   Responsive Navbar
   ======================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: 1rem;
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 5px;
  }

  .menu-toggle {
    display: block;
  }
}


/* ========================
   Footer
   ======================== */
.site-footer {
  background-color: #1f6463;
  color: white;
  text-align: center;
  padding: 1rem 0.3rem;
  font-size: 0.9rem;
  margin-top: 3rem;
  font-family: "Lora", serif;
  border-top: 1px solid #ddd;
}

.map {
  text-align: center;
  padding-top: 3em;
}