
/* Updated SecureSynergy Branding Stylesheet */

/* Import Font - Poppins for general site, Inter for cards (if desired) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #2E2E2E;
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
}

.logo-link {
  display: inline-block;
}

.logo-image {
  max-height: 80px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #2E2E2E;
  margin-bottom: 4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-nav li a {
  text-decoration: none;
  color: #2E2E2E;
  font-weight: 600;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.main-nav li a:hover,
.main-nav li a.active {
  color: #BCA864;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .main-nav li a {
    font-size: 1.1rem;
  }
}

.hero {
  background-color: #0b2e59;
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero .subhead {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero .cta-button {
  background-color: #BCA864;
  color: #0b2e59;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero .cta-button:hover {
  background-color: #A7924F;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}

.section-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

section.container {
  display: block;
  padding: 3rem 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.service-summary-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-summary-card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0b2e59;
}

.card-taglines {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.compare-tiers-button {
  display: inline-block;
  background-color: #BCA864;
  color: #0b2e59;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.compare-tiers-button:hover {
  background-color: #A7924F;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.site-footer {
  background-color: #f5f5f5;
  padding: 2rem 1rem;
  font-size: 0.875rem;
  color: #555;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
