* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #111;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('assets/hero_background_blurred.png') no-repeat center center/cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 2rem;
}

.content {
  max-width: 600px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.email-signup {
  display: flex;
  gap: 1rem;
}

.email-signup input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  flex: 1;
}

.email-signup button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background-color: #3a8bfd;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-signup button:hover {
  background-color: #1d6ae5;
}


body {
  background-color: #0d0d0d;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

.site-footer {
  background-color: #050505;
  border-top: 1px solid #222;
  padding: 2rem;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  font-weight: 500;
  font-size: 1rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: #b0b0b0;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

/* Icon sizing – you already added something like this */
.footer-social svg {
  width: 14px;   /* change to 12px if you want them smaller */
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-meta {
  margin-top: 0.5rem;
  color: #7a7a7a;
}

@media (max-width: 600px) {
  .footer-contact {
    text-align: left;
  }
}


.hero {
  position: relative;
  height: 100vh;
  background: url('hero-bg.jpg') center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  z-index: 1;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(13, 13, 13, 0.9);
  z-index: 1000;
}

.nav-header .logo {
  font-weight: 500;
  font-size: 1.2rem;
}

.nav-header ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-header a {
  text-decoration: none;
  color: white;
}

.section {
  padding: 6rem 2rem;
  background-color: #0d0d0d;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #e0e0e0;
}

/* Global link styling inside sections */
.section a {
  color: #ffffff;
  text-decoration: underline; /* Optional — matches your current style */
}

.section a:hover {
  color: #e0e0e0; /* Soft grey hover if you want it */
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.service-list {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 2;
}

.service-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .service-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-box {
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  height: 300px;
  padding: 1rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: scale(1.03);
}

.email-signup-embed {
  margin-top: 2rem;
  max-width: 480px;
  background-color: rgba(0, 0, 0, 0.6); /* matches your overlay feel */
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* Make sure the iframe fills the wrapper cleanly */
.email-signup-embed iframe {
  width: 100% !important;
  height: 140px;          /* tweak if needed */
  border: 0;
  border-radius: 6px;
  overflow: hidden;
}
/* Left-align body text on service pages only */
.service-page .section-content {
  text-align: left;
}

/* Keep main page headings centred */
.service-page .section-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Better spacing for paragraphs */
.service-page .section-content p {
  margin: 1rem 0;
}

/* Structured spacing and hierarchy for subheadings */
.service-page .section-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Improve list spacing */
.service-page .service-list {
  margin: 1.5rem 0 2rem 0;
}

.service-page .service-list li {
  margin-bottom: 0.5rem;
}
