/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.5;
}

/* Header / Logo */
.site-header {
  text-align: center;
  padding: 1rem;
}
.logo {
  max-width: 300px;
  width: 50%;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('/images/home/DSC_0018-02.jpg');
  background-size: cover;
  background-position: center;
  height: clamp(400px, 60vh, 600px)
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 2rem);
}



.hero-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3.25vw, 2.25rem);
  color: #fff;
  line-height: 1.2;
  margin-top: 5%;
    position: relative;
  top: -0.5rem;  
}



.hero-content p {
  color: #fff;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

/* Description Under Hero */
.description {
  max-width: 80%;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem);
}

.description p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin: 1em 0;
}

.agency-name {
  color: #0066cc;
  font-weight: 500;
  text-decoration: none;
}

.contact-bar {
  background-color: #0f877e;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bar-content {
  text-align: center;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.6;
}



/* skyline Section */
#skyline {
  position: relative;
  overflow: hidden;
}

.skyline-image-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible; /* Allow full image to show */
  padding-top: 0px;
}

.skyline-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


/* Overlays */
.skyline-overlay,
.skyline-overlay-02,
.skyline-cta-group {
  position: absolute;
  z-index: 2;
  max-width: 90%;
  padding: 1% 2%;
}

.skyline-overlay {
  top: 0%;
  left: 0%;
}

.skyline-overlay-text {
  font-size: clamp(0.5rem, 2vw, 1rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.15em;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  color:#fff;
}

.skyline-overlay-02 {
  top: 47%;
  left: 5%;
}

.skyline-overlay-02-text {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.4;
  padding: 0;
  max-width: 600px;
  color: #fff;
}





.sub-footer {
  background-color: #0f877e;
  color: #ffffff;
  padding: 1.2rem 5%;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.sub-footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem; /* space between © text and links */
}

.sub-footer p {
  margin: 0;
}

.sub-footer-links {
  display: flex;
  gap: 2rem;
}

.sub-footer a {
  text-decoration: none;
  color: #ffffff;
}

.sub-footer a:hover {
  text-decoration: underline;
}




/* Mobile styles (add at the very bottom of styles.css) */
@media only screen and (max-width: 600px) {
  /* Hero section */
  .hero {
    height: clamp(300px, 50vh, 400px);
  }
  .hero-content {
    padding: clamp(0.5rem, 4vw, 1rem);
  }
  .hero-content h1 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  /* Description */
  .description {
    max-width: 95%;
    padding: clamp(0.5rem, 4vw, 1rem);
  }
  .description p {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }

  /* Contact bar */
  .contact-bar {
    min-height: 180px;
    padding: 1rem;
  }
  .contact-bar-content {
    font-size: 16px;
  }

  /* Skyline overlays */
  .skyline-overlay-02 {
    top: 40%;
    left: 5%;
  }
   .skyline-overlay-02-text {
    display: none;
  }
}

