/* Global resets and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* Container utility class */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header / Navbar */
.site-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

/* CTA Button */
.cta-button {
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.cta-button:hover {
  background-color: #00c6ae;
}

.cta-button--outlined {
  background: transparent;
  color: #111;
  border: 1px solid #111;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 400;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.cta-button--outlined:hover {
  background-color: #000;
  color: #fff;
}
.cta-button--white {
  background: transparent;
  color: #fff;
  font-weight: 400;
  border: 1px solid #fff;
}
.cta-button--white:hover {
  background: #fff;
  color: #111;
}

.accelerate-cta {
  margin-top: 2rem;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

/* Responsive header for mobile */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .nav-container {
    justify-content: space-between;
  }
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #007bff; /* Example highlight color */
}


/* Hero Section */
.hero {
  background: url('assets/brady-bellini.jpg') center center/cover no-repeat;
  width: 100vw;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 300;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 100;
  background: linear-gradient(90deg, #0072ff, #00c6ae);
  color: white;
  display: inline-block;
  padding: 4px 40px;
  border-radius: 2px;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: #ffffff;
  text-align: center;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: #f7f9fa;
  padding: 2rem;
  border-radius: 5px;
}

.feature-item h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: none;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
h4 {
  font-weight: 400;
}

/* Text-Image Sections */
.text-image-section {
  padding: 4rem 0;
}

.text-image-section .content-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  /* By default: 1/3 for text, 2/3 for image */
  grid-template-columns: 1fr 2fr;
}

/* Responsive layout for mobile devices */
@media (max-width: 768px) {
  .text-image-section .content-grid {
    grid-template-columns: 1fr;
  }
  
  /* For both default and reversed layouts, ensure text comes first, image second on mobile */
  .text-image-section .content-grid {
    display: flex;
    flex-direction: column;
  }
  
  .text-image-section .text-content {
    order: 1;
  }
  
  .text-image-section .image-content {
    order: 2;
    margin-top: 2rem;
  }
}

.text-image-section .text-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.text-image-section .text-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.text-image-section .text-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* If you want to reverse columns (image on left, text on right) */
.text-right .content-grid {
  grid-template-columns: 2fr 1fr;
}

/* Responsive layout for reversed sections on mobile */
@media (max-width: 768px) {
  .text-right .content-grid {
    grid-template-columns: 1fr;
  }
}


/* Contact Section */
.contact {
  padding: 4rem 0;
  background: #fafafa;
  text-align: center;
}

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

.contact-form {
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #eaeaea;
  padding: 2rem 0;
  text-align: center;
}

.site-footer p {
  color: #777;
}

