@import url('https://fonts.googleapis.com/css2?family=Futura:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stix+Two+Text&display=swap');

/* -------------------
   Theme Variables
-------------------- */
:root {
  --primary: #0A3521;      /* Dark Green */
  --secondary: #FFFDD0;    /* Cream Background */
  --text-dark: #111111;
  --white: #FFFFFF;

  --card-bg: rgba(10, 53, 33, 0.08);
  --hover-bg: rgba(10, 53, 33, 0.12);
  --transition: 0.3s ease;
}

/* -------------------
   Global Reset
-------------------- */

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 53, 33, 0.6); /* Optional dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-family: 'Futura', sans-serif;
  margin-bottom: 1rem;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  color: #FFFDD0;
}

.hero-content .cta {
  margin-top: 2rem;
  background: #FFFDD0;
  color: #0A3521;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
.hero-reviews {
  margin-bottom: 2rem;
  position: relative;
  height: 100px;
  animation: fadeIn 1.3s ease-in-out;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.testimonial.active {
  opacity: 1;
}

.stars {
  font-size: 1.8rem;
  color: gold;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--secondary);
  opacity: 0.9;
}


body {
  background-color: var(--secondary);
  color: var(--text-dark);
  font-family: 'Stix Two Text', serif;
  line-height: 1.6;
}

/* -------------------
   Header / Nav Bar
-------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--primary);
}

.logo {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Futura', sans-serif;
  font-weight: bold;
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

nav a:hover {
  color: var(--white);
}

/* -------------------
   Footer
-------------------- */
footer {
  background: #000;
  color: var(--secondary);
  text-align: center;
  padding: 1.5rem;
  font-family: 'Futura', sans-serif;
  font-size: 0.9rem;
}

/* -------------------
   Layout Containers
-------------------- */
.container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

h1, h2, h3 {
  font-family: 'Futura', sans-serif;
  margin-bottom: 1rem;
}

.title {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.3rem;
  display: inline-block;
  margin-bottom: 1rem;
}

/* -------------------
   Card Design
-------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card:hover {
  background-color: var(--hover-bg);
  transform: translateY(-5px);
}

.card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

/* -------------------
   CTA Buttons
-------------------- */
.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Futura', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--transition);
}

.cta:hover {
  background: #e8e3bf;
}

/* -------------------
   Contact Form
-------------------- */
form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-family: 'Stix Two Text', serif;
  background-color: #fff;
  color: #000;
}

input:focus, textarea:focus {
  outline: 2px solid var(--primary);
  background: rgba(255, 253, 208, 0.15);
}

button {
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Futura', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background var(--transition);
}

button:hover {
  background: #e8e3bf;
}

/* -------------------
   Profile Cards
-------------------- */
.profile-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.profile-card {
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition);
  padding-bottom: 1rem;
}

.profile-card:hover {
  transform: scale(1.02);
}

.profile-card img {
  width: 100%;
  object-fit: cover;
  background: #000;
}

.profile-info {
  padding: 1rem 1.2rem;
}

.profile-info h3 {
  font-family: 'Futura', sans-serif;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.profile-info em {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

/* -------------------
   Responsive
-------------------- */
@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats-section {
  padding: 4rem 2rem;
  background-color: var(--secondary);
  text-align: center;
}

.stats-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Futura', sans-serif;
}

.stats-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

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

.stat-card {
  background: var(--primary);
  color: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Futura', sans-serif;
}

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