@charset "utf-8";
/* CSS Document */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Religath';
  src: url('fonts/Religath-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body, html {
  font-family: "Trebuchet MS", Montserrat, sans-serif;
  background-color: #eaf7f8;
  line-height: 1.6;
  color: #333;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

.logo-container {
  display: flex;
  justify-content: flex-start; /* ensures logo stays left */
  align-items: center;
  flex: 0 0 auto; /* prevents it from stretching */
}

.logo {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  background: #fff;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #000;
  margin: 10px 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

nav a:hover {
 color: #d3d2d2;
}

nav a.active {
  color: #67b8b0;
}

/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #16596d;
  cursor: pointer;
}

/* Banner (background only) */
.banner-image {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-image: url("images/banner-image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}

/* Hero Section */
.hero-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 100vh;
  background-color: #d8d8d8;
}

.hero-text,
.hero-image {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
}

.hero-text {
  padding: 60px;
  background-color: #d8d8d8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Religath', 'Playfair Display', serif;
}

.hero-text p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.hero-image {
  display: flex;
  align-items: stretch;
}

.hero-image img {
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-cta-button {
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #313030;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  align-self: center;
}

.hero-cta-button:hover {
  background-color: #6e6f70;
}

/* Services */
.services {
  background-color: #313030;
  color: #fff;
  padding: 80px 30px;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-family: 'Religath', serif;
}

.service-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-box {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  max-width: 150px;
  color: #fff;
  line-height: 1.5;
}

.divider {
  height: 40px;
  width: 1px;
  background-color: #ffffff50;
}

/* Call to Action Button */
.cta-container {
  text-align: center;
  margin: 30px 0 20px;
}

.cta-button {
  background-color: #313030;
  color: white;
  padding: 12px 25px;
  border: 1px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Trebuchet MS", Montserrat, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  margin: 30px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #6e6f70;
}

/* Contact Section */
.contact-section {
  background: radial-gradient(circle at 20% 50%, #005c6b 0%, #00353d 100%);
  padding: 60px 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-column {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border-right: 1px solid #fff;
  padding-right: 20px;
}

.contact-column h3 {
  font-size: 1.2rem;
  font-family: 'Religath', 'Playfair Display', serif;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.contact-column p,
.contact-column a {
  font-size: 0.95rem;
  color: #fff;
}

.contact-column a {
  text-decoration: underline;
}

.note,
.footer-note {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 10px;
}

.map-embed iframe {
  width: 100%;
  height: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Footer */
footer {
  background: #ffffff;
  color: #313030;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  border-top: 1px solid #313030;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-text h2 {
     font-size: 2.4rem;
     font-weight: bold;
     margin-bottom: 30px;
     text-align: center;
     font-family: 'Religath', 'Playfair Display', serif;
  }
  .services h2 {
    font-size: 2rem;
  }
}

/* Optional: Tweak for small screens */
@media (max-width: 768px) {
   .banner-image { 
    background-position: center center;
    background-image: url("images/banner-image.jpg");
    width: 100%;
    height: 45vh;
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav a {
    margin: 8px 10px;
  }
  
/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .logo-container {
    justify-content: flex-start; /* this line keeps it left */
    flex: 0 0 auto;
  }

  .logo {
    max-height: 90px;
    display: block;
  }

 .hamburger {
    display: block;
    position:absolute;
    justify-content: right;
    right: 20px;
    top: 20px;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 10px;
    width: 200px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  nav.show {
    display: flex;
  }
}

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: #fff;
  }

  .nav-links a {
    padding: 10px 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex;
  }
  
  .hero-content {
    flex-direction: column-reverse;
  }
  .hero-text,
  .hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .hero-text {
    padding: 30px;
  }
   .hero-text h2 {
    font-size: 1.8rem;
    font-family: 'Religath';
    text-align: center;
  }
  .services h2 {
    font-size: 2.7rem;
    margin-bottom: 30px;
  }
  .service-line {
    flex-direction: column;
    gap: 20px;
  }
  .divider {
    display: none;
  }
  .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch; /* This ensures all columns are same height */
}

.contact-column {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #fff;
}

/* Remove border from last column */
.contact-column:last-child {
  border-right: none;
}

 .logo-container {
    width: 100%;
    justify-content: left;
    padding: 0px 0px;
  }

  .logo {
    max-height: 90px;
  }
}

@media (max-width: 480px) {

  .banner-image { 
    background-position: center center;
    width: 100%;
    height: 40vh;
  }

  .logo-container {
    width: 100%;
    justify-content: left;
    padding: 0px 0px;
  }

  .logo {
    max-height: 90px;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .services h2 {
    font-size: 1.8rem;
  }
  .service-box {
    font-size: 0.95rem;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .contact-column h3 {
    font-size: 1rem;
  }
  .hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hamburger {
    display: block;
    position:absolute;
    justify-content: right;
    right: 20px;
    top: 20px;
  }
}


@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-column {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .contact-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

