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

body {
margin: 0;
font-family: 'Inter', sans-serif;
color: #2d7f48;
background-color: #bdffd3;
}


.nav {
position: sticky;
top: 0;
background: #3eb265;
border-bottom: 4px solid #2d7f48;
z-index: 100;
box-shadow: 0 4px 20px rgba(45, 127, 72, 0.3);
}


.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
max-width: 1200px;
margin: auto;
}


.nav a {
margin: 0 1rem;
text-decoration: none;
color: white;
transition: color 0.3s ease;
font-weight: 600;
}


.btn {
border: none;
border-radius: 8px;
padding: 0.75rem 1.25rem;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}


.btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}


.btn:hover::before {
width: 300px;
height: 300px;
}

.btn.primary {
background: linear-gradient(135deg, #3eb265 0%, #2d7f48 100%);
color: white;
border: none;
font-weight: 700;
}

.btn.primary:hover {
background: linear-gradient(135deg, #2d7f48 0%, #1a5f35 100%);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(45, 127, 72, 0.4);
}

.btn.secondary {
background-color: transparent;
border: 3px solid #3eb265;
color: #2d7f48;
font-weight: 700;
}

.btn.secondary:hover {
background: #3eb265;
color: white;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(62, 178, 101, 0.3);
}


.hero {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 4rem 2rem;
max-width: 1200px;
margin: auto;
position: relative;
}

/* LOGO STYLES */
.logo {
display: flex;
align-items: center;
font-weight: 800;
font-size: 1.6rem;
color: white;
}

.logo-text {
font-family: 'Inter', sans-serif;
font-size: 1.6rem;
font-weight: 800;
}

.logo-icon {
margin-right: 0.5rem;
font-size: 2rem;
}

/* NAVIGATION STYLES */
nav {
display: flex;
align-items: center;
}

.nav a:hover,
.nav a.active {
color: #bdffd3;
font-weight: 700;
}

.shop-btn {
margin-left: 1rem;
}

/* HERO SECTION */
.hero-text {
flex: 1;
min-width: 300px;
margin-right: 2rem;
}

.hero-text h1 {
font-family: 'Inter', sans-serif;
font-size: 4rem;
margin-bottom: 1rem;
line-height: 1.1;
color: #2d7f48;
font-weight: 800;
}

.hero-text p {
font-size: 1.3rem;
margin-bottom: 2rem;
color: #2d7f48;
line-height: 1.6;
font-weight: 500;
}

.hero-buttons {
display: flex;
gap: 1rem;
}

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

.placeholder {
background: #3eb265;
border: 4px solid #2d7f48;
padding: 3rem;
border-radius: 15px;
color: white;
font-style: normal;
font-weight: 600;
}

/* IMPACT SECTION */
.impact {
padding: 4rem 2rem;
text-align: center;
background: #3eb265;
max-width: 1200px;
margin: auto;
border-radius: 20px;
margin-top: 2rem;
margin-bottom: 2rem;
position: relative;
border: 4px solid #2d7f48;
box-shadow: 0 8px 30px rgba(45, 127, 72, 0.3);
}

.impact::before {
content: '💚';
position: absolute;
top: 1rem;
left: 2rem;
font-size: 2.5rem;
opacity: 0.8;
}

.impact h2 {
font-family: 'Inter', sans-serif;
font-size: 3.5rem;
margin-bottom: 1rem;
color: white;
font-weight: 800;
}

.impact > p {
font-size: 1.3rem;
color: white;
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
font-weight: 500;
}

.stats {
display: flex;
justify-content: space-around;
gap: 2rem;
margin-top: 3rem;
}

.stat {
text-align: center;
}

.stat span {
display: block;
font-size: 3.5rem;
font-weight: 800;
color: #bdffd3;
margin-bottom: 0.5rem;
font-family: 'Inter', sans-serif;
}

.stat p {
margin: 0;
color: white;
font-weight: 600;
}

/* SHOP SECTION */
.shop {
padding: 4rem 2rem;
max-width: 1200px;
margin: auto;
position: relative;
}

.shop::after {
content: '🛍️';
position: absolute;
top: 1rem;
right: 2rem;
font-size: 2.5rem;
opacity: 0.8;
}

.shop h2 {
text-align: center;
font-family: 'Inter', sans-serif;
font-size: 3.5rem;
margin-bottom: 3rem;
color: #2d7f48;
font-weight: 800;
}

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

.product {
background: white;
border-radius: 15px;
padding: 2rem;
text-align: center;
box-shadow: 0 6px 25px rgba(45, 127, 72, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 3px solid #3eb265;
}

.product:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(45, 127, 72, 0.3);
border-color: #2d7f48;
}

/* STORY SECTION */
.story {
display: flex;
align-items: center;
padding: 4rem 2rem;
background: #3eb265;
max-width: 1200px;
margin: auto;
gap: 3rem;
border-radius: 20px;
margin-top: 2rem;
margin-bottom: 2rem;
border: 4px solid #2d7f48;
box-shadow: 0 8px 30px rgba(45, 127, 72, 0.3);
}

.story-image {
flex: 1;
min-width: 300px;
}

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

.story-text h2 {
font-family: 'Inter', sans-serif;
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: white;
font-weight: 800;
}

.story-text p {
font-size: 1.2rem;
line-height: 1.7;
color: white;
margin-bottom: 1.5rem;
font-weight: 500;
}

/* GET INVOLVED SECTION */
.get-involved {
padding: 4rem 2rem;
text-align: center;
max-width: 1200px;
margin: auto;
}

.get-involved h2 {
font-family: 'Inter', sans-serif;
font-size: 3.5rem;
margin-bottom: 1rem;
color: #2d7f48;
font-weight: 800;
}

.get-involved > p {
font-size: 1.3rem;
color: #2d7f48;
margin-bottom: 3rem;
line-height: 1.6;
font-weight: 500;
}

.involvement-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.option {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 6px 25px rgba(45, 127, 72, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 3px solid #3eb265;
}

.option:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(45, 127, 72, 0.3);
border-color: #2d7f48;
}

.option h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #2d7f48;
font-weight: 700;
}

.option p {
color: #2d7f48;
margin-bottom: 1.5rem;
line-height: 1.7;
font-weight: 500;
}

/* FOOTER */
.footer {
background: #2d7f48;
color: white;
padding: 3rem 2rem 1rem;
}

.footer-content {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-section h4 {
margin-bottom: 1rem;
font-size: 1.4rem;
font-weight: 700;
color: #bdffd3;
}

.footer-section p,
.footer-section a {
color: #ccc;
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
}

.footer-section a:hover {
color: white;
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
display: inline-block;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #555;
color: #ccc;
max-width: 1200px;
margin: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
.hero {
flex-direction: column;
text-align: center;
padding: 2rem 1rem;
}

.hero-text {
margin-right: 0;
margin-bottom: 2rem;
}

.hero-text h1 {
font-size: 2.2rem;
}

.hero-buttons {
justify-content: center;
}

.nav-container {
padding: 1rem;
}

nav {
display: none; /* Hide nav on mobile - you might want to add a hamburger menu */
}

.stats {
flex-direction: column;
gap: 1rem;
}

.story {
flex-direction: column;
text-align: center;
}

.footer-content {
grid-template-columns: 1fr;
text-align: center;
}

.social-links {
justify-content: center;
}
}