/* ====== GLOBAL STYLES ====== */
:root {
  --primary-color: #ff2727;
  /* Red for love */
  --secondary-color: #0e8a2f;
  /* Green for nature */
  --text-color: #333;
  --light-bg: #f8f8f8;
  --max-width: 1200px;
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --font-family: "Zalando Sans Expanded", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}


body {
  font-family: var(--font-family);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background-color: #fff;
  line-height: 1.6;
  font-family: (--font-family);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

/* ====== NAVBAR ====== */
.header {
  background-color: #fff;
  box-shadow: var(--shadow);
  /* position: sticky; */
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* ====== HERO SECTION ====== */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url("./assets/people.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  box-shadow: var(--shadow);
  /* position: sticky; */
  top: 0;
  z-index: 1000;
}

.hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0dbd3c;
}

.hero-content p {
  color: #FFF;
  font-size: 1.8rem;
  padding: 24px;
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  text-align: center;
}

.hero-image {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #b71c1c;
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #1e7065;
}

/* ====== ZIGZAG SECTIONS ====== */
.zigzag {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
}

.zigzag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 3rem auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.zigzag-item.reverse {
  flex-direction: row-reverse;
}

.zigzag-text {
  flex: 1;
  padding: 1rem;
}

.zigzag-text h2 {
  color: var(--secondary-color);
}

.zigzag-text p {
  font-size: 1.2rem;
  color: #555;
}

.zigzag-image {
  flex: 1;
  text-align: center;
}

/* ====== ABOUT SECTION ====== */
.about {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
}

.about h2 {
  color: var(--primary-color);
}

.mission {
  background-color: #0e8a2f;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.4rem;
  color: #FFF;
}

.tags {
  color: #0e8a2f;
  display: flex;
  justify-content: center;
}

.tags h2 {
  margin: 2px 12px;
}

.about p {
  max-width: 800px;
  margin: 1rem auto;
  color: #555;
}

/* ====== SHOWCASE SECTION ====== */
.showcase {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 2rem auto;
}

/* ====== DOWNLOAD SECTION ====== */
.download {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
}

.download h2 {
  font-size: 2rem;
}

.download p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ====== CONTACT SECTION ====== */
.contact {
  padding: 4rem 2rem;
  text-align: center;
  max-width: var(--max-width);
  margin: auto;
}

.contact a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ====== FOOTER ====== */
.footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {

  .navbar{
    padding: 2px;
    justify-content: space-around;
  }
  .hero,
  .zigzag-item {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .zigzag {
    padding: 0rem;
  }

  .nav-links {
    /* flex-wrap: wrap; */
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    letter-spacing: normal;
    padding: 0px;
    overflow: hidden;
  }
}