/* === Base Reset & Globals === */
html{
  scroll-padding-top: 100px;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === Sticky Header === */
.sticky-header {
  border-bottom: 1px solid #eaeaea;
  border-radius: 10px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
}

/* === Header Content === */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  margin: 0 auto;
  padding: 5px 5% 0;
  background-color: lightblue;
}

.logo-img{
  height:100px;
  width: 100px;
  margin-top: 3px;
}


/* === contact border === */
.contact-border {
  padding: 15px 0;
  display: flex;
  justify-content: flex-end;
  border: 1px solid #eaeaea;
  font-size: 15px;
  align-items: center;
  transition: color 0.15s ease, border-color 0.15s ease;
}


.contact-item {
  margin-right: 25px;
}

.contact-border i{
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1em;
}

/* === Navigation Menu === */
.nav-menu {
  display: flex;
  gap: 2rem;
  margin-right: 5%
}

.nav-menu a {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #0070f3;
}

.menu-toggle{
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-container{
  display: block;
}

/* === Main Content Layout === */
main {
  /*border: 2px solid black;*/
  background-color: white;/*#87CEFA;*/
  min-height: 100vh;
  margin-top: 151px; /* to offset sticky header */
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 2rem 2rem;
  background-color: #f8f9fa;
}

.hero h1 {
  font-size: 3.0rem;
  margin-bottom: 1rem;
}

.slogan {
  font-size: 1.8rem;
  font-weight: bold;
}

.description {
  font-size: 1.2rem;
  color: #555;
  margin-top: 0.5rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #00BFFF;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

/*
.slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 3.3rem);
  text-align: center;
  margin: 1rem 0 0 0;
}*/

/* === Services Section === */
.services-section {
  margin-top: 0;
  padding: 1rem 2rem;
  background: #f8f8f8;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 0rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}

/* === About Section === */
.about-section{
  margin:0 2rem;
}

/* === Footer === */
.site-footer {
  background-color: #222; /* dark background for contrast */
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #444;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-cta {
  margin-bottom: 0.5rem;
}

.footer-quote-button {
  background-color: #00BFFF; /* distinct color from other CTAs */
  color: white;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-quote-button:hover {
  background-color: #009acd;
}

.footer-info p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-info a {
  color: #ccc;
  text-decoration: underline;
}



/* Check for mobile view *
/* === Responsive Breakpoints === */
@media (max-width: 1600px){
  .services-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .services-grid > *{
    flex: 0 0 250px
  }
}



@media (max-width: 768px) {
  .header-content {
    padding: 4px 1rem 0;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px){
  .contact-border{
    justify-content: center;
  }
  
}

@media (max-width: 400px){
  .contact-border{
    font-size: 13px;
    justify-content: center;
    margin-right: 0;
  }
  .nav-menu a{
    font-size: 0.7rem;
  }
}