@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 1.125rem; /* Base font size for About, Testimonials, Contact */
  line-height: 1.75rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #f472b6;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin-bottom: 4px;
  border-radius: 2px;
}

/* Hero */
/* Centre hero button */
.hero {
  background-color: #000; /* Black hero banner */
  color: #fff; /* White text */
  padding: 120px 0;
}




.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0;
  min-height: 80vh;
}

.hero-button-wrapper {
  margin-top: 2rem;
}

.hero h1 {
  font-size: 3rem;
}











/* Hero text desktop */
.hero-content h1 {
  font-size: 3rem;        /* 48px */
  line-height: 1.2;
  font-weight: 800;
  color: white;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;      /* 32px */
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;      /* Slightly smaller paragraph */
    line-height: 1.5;
  }
}


/* Buttons */
.btn-primary {
  background: linear-gradient(to right, #ec4899, #db2777);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Cards */
.cards-section {
  padding: 96px 0;
  background-color: #f9fafb;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card h2 {
  font-size: 1.875rem;
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.card ul li {
  margin-bottom: 12px;
  padding-left: 1.5em;
  position: relative;
}

.card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #16a34a;
}

/* Buttons inside cards */
.btn-secondary {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  background-color: #16a34a;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background-color: #15803d;
}

/* About Section */
.about-section {
  padding: 96px 0;
  background-color: #fff;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.about-section .certs {
  color: #16a34a;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials-section {
  padding: 96px 0;
  background-color: #f3f4f6;
}

.testimonial-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 1.125rem; /* same as About */
  line-height: 1.75rem;
}

.testimonial-card .author {
  font-weight: 600;
  margin-top: 8px;
}

.testimonial-card .role {
  color: #6b7280;
}

/* Contact Section */
.contact-section {
  padding: 96px 0;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact-card {
  background-color: #f9fafb;
  padding: 24px;
  border-radius: 16px;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem; /* same as About */
  line-height: 1.75rem;
  font-weight: 500;
}

.contact-icon {
  color: #16a34a;
  min-width: 24px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 48px 24px;
  background-color: #000;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: #000;
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    padding: 16px;
    border-radius: 8px;
  }
  
  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
