/* Layout: Rows */
.home-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
    margin: 6vw auto;
    max-width: 80vw;
    padding: 0;
}
.home-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
    margin: 6vw auto;
    max-width: 80vw;
    padding: 0 0.1vw;
}
main {
    position: relative;
}
/* Text sections */
.home-text-top {
    flex: 1;
    font-family: "Inter", sans-serif;
    position: relative;
}
.home-text-bottom {
    flex: 1;
    font-family: "Inter", sans-serif;
    position: relative;
}
/* Headings and text */
.home-text-top h1 {
    color: var(--primary-color);
    font-family: "DM Sans", sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 4.75rem;
    letter-spacing: 0.03em;
}
.home-text-top h2 {
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    margin: 1.25em 0;
}
.home-text-top p {
    color: var(--text-color-body);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.03em;
}
.home-text-bottom p {
    color: var(--text-color-body);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.03em;
    margin-top: 1.25em;
}
/* Images */
.home-image-top {
    position: relative;
    display: inline-block;
}
.home-image-top img {
    width: 35vw;
    max-width: 40vw;
    border-radius: 0.75vw;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.home-image-bottom {
    position: relative;
    flex: 1;
    display: inline-block;
}
.home-image-bottom img {
    position: relative;
    width: 40vw;
    max-width: 40vw;
    border-radius: 1.5vw;
    object-fit: cover;
    display: flex;
    padding: 0.75vw;
    justify-content: center;
    align-items: center;
    gap: 0.75vw;
    flex-shrink: 0;
}
/* Circle background */
.circle-bg {
    position: absolute;
    bottom: -13vw;
    right: 6vw;
    width: 45vw;
    height: 43vw;
    border-radius: 50vw;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 157, 19, 0.70) 0%, rgba(255, 157, 19, 0.00) 100%);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none; 
}
/* Call for participation */
.participation-section {
  text-align: center;
  padding: 50px 20px;
}
.participation-section h1 {
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 30px;
}
.participation-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.participation-card {
  background-color: var(--secondary-color);
  padding: 15px;
  border-radius: 8px;
  width: 20vw;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.participation-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.participation-card-download-button {
  display: block;
  margin-top: 15px;
  background-color: var(--primary-color);
  color: var(--neutral-0);
  padding: 10px 0;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
/* Flower design */
.flower-design-left {
    position: absolute;
    bottom: -20vw;
    left: -25vw;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none; 
}
.flower-design-left img {
    width: 60vw;
    height: 51vw;
    aspect-ratio: 1079/899;
}
.flower-design-right {
    position: absolute;
    bottom: 2vw;
    right: -46vw;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none; 
}
.flower-design-right img {
    width: 68vw;
    height: auto;
    aspect-ratio: 6/5;
}
/* Partners section */
.project-partners {
    margin: 4vw auto;
    max-width: 80vw;
    text-align: center;
}
.project-partners h4 {
    color: var(--primary-color);
    font-family: "DM Sans", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2vw;
}
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
}
.partner-logo {
    width: 16vw;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 0.5vw;
    background: var(--neutral-0);
    padding: 0.5vw;
}
/* Responsive */
@media (max-width: 768px) {
    .home-row-top,
    .home-row-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2vw;
        margin: 4vw auto;
        max-width: 95vw;
    }
    .home-text-top,
    .home-text-bottom {
        margin-bottom: 1.25em;
    }
    .home-image-top img,
    .home-image-bottom img {
        width: 90vw;
        max-width: 90vw;
        border-radius: 3vw;
        padding: 2vw;
    }
    .flower-design-left, 
    .flower-design-right {
        display: none;
    }
}
@media (min-width: 769px) and (max-width: 1180px) {
    .home-row-top,
    .home-row-bottom {
        flex-direction: column;   
        text-align: center;
        gap: 3vw;
        margin: 5vw auto;
        max-width: 90vw;
    }
    .home-image-top img,
    .home-image-bottom img {
        width: 70vw;
        max-width: 70vw;
        border-radius: 2vw;
    }
    .home-text-top h1 {
        font-size: 2.5rem;
        line-height: 3.25rem;
    }
    .home-text-top h2 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    .home-text-top p,
    .home-text-bottom p {
        font-size: 1rem;
        line-height: 1.75rem;
    }
    .circle-bg {
        width: 65vw;
        height: 60vw;
        bottom: -18vw;
        right: 0;
    }
}
@media (max-width: 768px) {
    .home-row-top,
    .home-row-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin: 6vw auto;
        max-width: 95vw;
    }
    .home-image-top img,
    .home-image-bottom img {
        width: 90vw;
        max-width: 90vw;
        border-radius: 3vw;
        padding: 2vw;
    }
    .home-text-top h1 {
        font-size: 2rem;
        line-height: 2.75rem;
    }
    .home-text-top h2 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .home-text-top p,
    .home-text-bottom p {
        font-size: 0.95rem;
        line-height: 1.5rem;
    }
    .flower-design-left, 
    .flower-design-right, 
    .circle-bg {
        display: none;
    }
    .participation-card {
        width: 80vw;
    }
}
@media (min-width: 1400px) {
    .home-row-top,
    .home-row-bottom {
        max-width: 1200px;
        margin: 6vw auto;
    }
}
@media (min-width: 769px) and (max-width: 1180px) {
    .circle-bg {
        width: 55vw;
        height: 55vw;
        bottom: 35vw;
        right: 5vw;
    }
    .flower-design-left img,
    .flower-design-right img {
        width: 60vw;   /* slightly larger for tablet */
    }
    .flower-design-left {
        bottom: -18vw;
        left: -25vw;
    }
    .flower-design-right {
        bottom: 0;
        right: -30vw;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .flower-design-left, 
    .flower-design-right, 
    .circle-bg {
        display: none;  /* hide on phones for clean layout */
    }
}

/* Slider Styles */
.slider {
    height: 700px; 
    aspect-ratio: 1 / 1;
}