/* ========================
   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 {
  font-family: "Lora", serif;
}

a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits color from parent element */
}

/* ========================
   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:hover {
  background-color: rgba(65, 80, 80, 0.1);
  color: #022;
}

.nav-links a {
  text-decoration: none;
  color: #044;
  font-weight: 200;
  font-size: 1.5em;
  padding: 5px;
  border-radius: 10px;
  display: inline-block;
  transition: background 0.3s;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #044;
  cursor: pointer;
}

/* ========================
   Hero Section (index)
   ======================== */
.hero-index {
  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-index .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.hero-index .hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  animation: fadeIn 1s ease-out both;
}

.hero-index .hero-heading h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-index .hero-subheading h2 {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 400;
  margin-top: 0;
}
/* ========================
   Hero Section (about)
   ======================== */
.hero-about {
  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-about .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(40, 40, 40, 0.577);
  z-index: 1;
}

.hero-about .hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  animation: fadeIn 1s ease-out both;
}

.hero-about .hero-heading h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-about .hero-subheading h2 {
  font-size: clamp(1rem, 4vw, 4rem);
  font-weight: 400;
  margin-top: 0;
}

/* ========================
   Hero Section (contact)
   ======================== */
.hero-contact {
  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-contact .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(40, 40, 40, 0.577);
  z-index: 1;
}

.hero-contact .hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  animation: fadeIn 1s ease-out both;
}

.hero-contact .hero-heading h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-contact .hero-subheading h2 {
  font-size: clamp(1rem, 4vw, 4rem);
  font-weight: 400;
  margin-top: 0;
}

/* ========================
   Hero Section (services)
   ======================== */   
.hero-services {
  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-services .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(40, 40, 40, 0.577);
  z-index: 1;
}

.hero-services .hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  animation: fadeIn 1s ease-out both;
}

.hero-services .hero-heading h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-services .hero-subheading h2 {
  font-size: clamp(1rem, 4vw, 4rem);
  font-weight: 400;
  margin-top: 0;
}

.sub-hero-h2 {
  text-align: center;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 6rem;
  margin-bottom: 6rem;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #1f6463;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================
   Intro Section
   ======================== */
.intro {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.intro p {
  padding-top: 6.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: rem;
  text-align: center;
}

/* ========================
   Call-to-Action Button
   ======================== */
.cta-button {
  background-color: #1f6463;
  color: white;
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  display: block;
  margin: 2rem auto 0 auto;
  text-align: center;
  transition: background-color 0.9s ease;
  font-size: clamp(0.7rem, 1vw, 1rem);
}

.cta-button:hover {
  background-color: #2f908e;
}

.service-container {
  text-align: center;
}

.cta-button-services {
  background-color: transparent;
  color: #1f6463;
  padding: 1rem 1.8rem;
  border: 0px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0.5rem;
}

.cta-button-services:hover {
  background-color: #2f908e;
}

.cta-button-services.active {
  background-color: #1f6463;
  color: white;
}

.service-text {
  margin: 0 auto;
  width: 47.3%;
}



/* ========================
   Mobile 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;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px;
  }

  .nav-links a {
    text-decoration: none;
    color: #044;
    font-weight: 200;
    font-size: 1.2rem;
    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: 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;
}
