/* --- BRAND COLORS --- */
:root {
  --color-black: #182120;
  --color-green: #3CB371;
  --color-green-dark: #2E8B57;
  --color-text-light: #f8f9fa;
  --color-text-dark: #333;
  --color-white: #ffffff;
}


/* --- General Reset --- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}



/* --- Header --- */
.header {
  padding: 20px 5%;
  background-color: var(--color-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
}

/* --- Navigation Links --- */
.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  cursor: pointer; /* ← adds pointer on hover */
}

.nav-links a:hover {
  color: var(--color-green-dark);
  border-bottom: 2px solid var(--color-green-dark);
  cursor: pointer; /* optional, reinforces the pointer */
}

.nav-links a.active {
  color: var(--color-green);
  cursor: pointer; /* optional, makes active link feel clickable */
}


/* --- HEADINGS & ACCENT --- */
h1, h2 {
  color: var(--color-black);
}

.accent-line {
  width: 50px;
  height: 4px;
  background-color: var(--color-green);
  margin: 15px 0;
}

/* --- CTA BUTTON --- */
.cta-button {
  display: inline-block;
  padding: 20px 25px;
  background-color: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--color-green-dark);
}

/* --- HOME PAGE: HERO SECTION --- */
.hero-container {
  display: flex;
  align-items: center;
  padding: 100px 5%;
  gap: 3.5rem; /* try 3.5–4rem */
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60vh;
}


.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-headline {
  font-size: 2.8em;
  color: #212529;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  object-fit: cover;
  max-width: 600px;     /* desktop size */
  aspect-ratio: 1 / 1; /* 🔒 square */
  border-radius: 16px;
}

/* --- ABOUT PAGE: HERO SECTION --- */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
  gap: clamp(3rem, 6vw, 5rem);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  object-fit: cover;
  max-width: 600px;     /* desktop size */
  aspect-ratio: 1 / 1; /* 🔒 square */
  border-radius: 16px;
}

/* --- PILLARS SECTION --- */
.pillars-section {
  background-color: #f4f4f4;
  padding: 60px 5%;
  text-align: center;
}

.pillars-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 40px auto 0;
  gap: 20px;
}

.pillar-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-top: 5px solid var(--color-green);
}

.pillar-card h3 {
  margin-top: 0;
  color: var(--color-green-dark);
}

/* --- FOOTER --- */
.footer {
  background-color: var(--color-black);
  color: var(--color-text-light);
  text-align: center;
  padding: 30px 5%;
  margin-top: 40px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 768px) {
  /* HERO SECTIONS */
  .hero-container,
  .about-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 5%;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .hero-headline {
    font-size: 2em;
  }

  .hero-image,
  .about-image {
    min-width: 100%;
  }

  .accent-line {
    margin: 15px auto;
  }
}


/* =========================
   Contact Page Layout
========================= */

.contact-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

/* =========================
   Text Column
========================= */

.contact-text {
  flex: 1;
}

.contact-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.accent-line {
  width: 60px;
  height: 4px;
  margin-bottom: 1.5rem;
}

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2rem;
}


/* -- Media (WebM) -- */

.contact-media {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  object-fit: cover;
  max-width: 500px;     /* desktop size */
  aspect-ratio: 1 / 1; /* 🔒 square */
  border-radius: 16px;
}

/* -- Mobile Responsive -- */

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-media {
    order: -1; /* video goes to top */
    border-radius: 16px;
    margin-bottom: 1rem;
    margin-top: 2rem;      /* space above the cat */
    aspect-ratio: 1 / 1;   /* 🔲 perfect square */
    width: 100%;
    max-width: 320px;      /* adjust if you want */
    height: auto;
    object-fit: cover;     /* fills the square nicely */
  }

  .contact-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-text h1 {
    margin-top: 0.5rem;     /* reduce gap from media */
  }
}




/* --- BUTTON --- */
.contact-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: var(--color-green-dark);
}





