:root {
    --primary-color: #0d9488;
    --primary-hover: #0f766e;
    --secondary-color: #f59e0b;
    --secondary-hover: #d97706;
    --text-main: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-main); line-height: 1.6; background: var(--bg-white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--text-main); line-height: 1.2; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

.section-subtitle { display: block; color: var(--primary-color); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; font-family: var(--font-body); }
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }

.btn { display: inline-block; padding: 0.75rem 1.75rem; font-weight: 600; border-radius: var(--radius-md); text-align: center; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary { background-color: var(--primary-color); color: white; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.125rem; }

.navbar { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; box-shadow: var(--shadow-md); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-family: var(--font-heading); font-size: 1.75rem; color: var(--primary-color); font-weight: 700; line-height: 1; display: block; }
.logo-sub { font-size: 0.65rem; text-transform: uppercase; color: var(--text-light); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 1rem; }
.nav-links a:hover { color: var(--primary-color); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: url('hero_image.png') center/cover fixed; }
.hero-overlay { position: absolute; top:0; left:0; right:0; bottom:0; background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); }
.hero-content { position: relative; z-index: 1; padding-top: 80px; max-width: 800px; }
.badge { display: inline-block; padding: 0.25rem 1rem; background: rgba(245,158,11,0.2); color: var(--secondary-color); border: 1px solid var(--secondary-color); border-radius: 50px; font-weight: 600; font-size: 0.875rem; margin-bottom: 1.5rem; }
.hero h1 { font-size: 4rem; color: white; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; }

.stats { background: var(--primary-color); padding: 3rem 0; margin-top: -50px; position:relative; z-index:10; border-radius: var(--radius-lg); max-width: 1000px; margin-left: auto; margin-right: auto; box-shadow: var(--shadow-lg); }
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; color: white; }
.stat-number { font-size: 2.5rem; color: white; margin-bottom: 0.5rem; }
.stat-item p { text-transform: uppercase; font-size: 0.875rem; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.causes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.cause-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.cause-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.cause-card img { width: 100%; height: 240px; object-fit: cover; }
.cause-content { padding: 2rem; text-align: left; }
.cause-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.contact-grid { display: grid; grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-info { background: var(--primary-color); color: white; padding: 3rem; }
.info-card { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.info-icon { font-size: 1.5rem; color: var(--secondary-color); width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-text h4 { color: white; font-size: 1.25rem; margin-bottom: 0.5rem; }
.info-text p, .info-text a { color: rgba(255,255,255,0.8); }
.info-text a:hover { color: white; }

.footer { background: #1f2937; color: white; padding: 2rem 0; }

/* Camps Section */
.camps-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.camps-text { text-align: left; }
.camps-list { list-style: none; margin-top: 1.5rem; }
.camps-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 10px; }
.camps-list i { color: var(--primary-color); margin-top: 4px; }
.camps-image-wrapper { position: relative; }
.camps-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 400px; object-fit: cover; }
.camps-badge { position: absolute; bottom: -20px; left: -20px; background: var(--secondary-color); color: white; padding: 1.5rem; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-md); }
.camps-badge h3 { font-size: 2rem; color: white; margin-bottom: 0; }
.camps-badge p { font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Live Operations Section */
.live-indicator { display: inline-flex; align-items: center; gap: 6px; background: rgba(239, 68, 68, 0.1); color: #ef4444; padding: 4px 12px; border-radius: 50px; font-size: 1rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; vertical-align: middle; margin-left: 10px; }
.pulse { display: block; width: 10px; height: 10px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); animation: pulsing 1.5s infinite; }
@keyframes pulsing { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } }

.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.live-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.05); }
.live-img-wrapper { position: relative; height: 220px; }
.live-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.location-badge { position: absolute; bottom: 15px; right: 15px; background: rgba(255,255,255,0.9); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: var(--text-main); display: flex; gap: 5px; align-items: center; box-shadow: var(--shadow-md); }
.location-badge i { color: var(--primary-color); }
.live-content { padding: 2rem; }
.live-status { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 0.5rem; letter-spacing: 1px; }
.live-content h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.live-content p { font-size: 0.95rem; color: var(--text-light); }

.progress-container { margin-top: 1.5rem; }
.progress-bar-title { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.progress-track { width: 100%; height: 8px; background: var(--bg-light); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary-color); border-radius: 10px; transition: width 1s ease-in-out; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.max-w-m { max-width: 700px; display: inline-block; }

/* Get Involved */
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; align-items: stretch; }
.involved-card { background: white; padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; transition: var(--transition); }
.involved-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.involved-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.involved-card h3 { margin-bottom: 1rem; }
.feature-card { padding: 0; overflow: hidden; }
.involved-card-img { width: 100%; height: 100%; object-fit: cover; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--text-main); color: white; padding: 1.5rem; box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; transform: translateY(100%); transition: transform 0.5s ease-in-out; }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { text-align: center; font-size: 0.95rem; line-height: 1.5; }
.cookie-content a { color: var(--secondary-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 1rem; }
.cookie-btn { padding: 0.5rem 1.5rem; border: none; border-radius: var(--radius-md); font-weight: 600; cursor: pointer; transition: var(--transition); }
.cookie-accept { background-color: var(--primary-color); color: white; }
.cookie-accept:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
@media (min-width: 768px) {
    .cookie-banner { flex-direction: row; text-align: left; }
    .cookie-content { text-align: left; max-width: 80%; }
}

@media (max-width: 992px) {
    .stats { margin-left: 20px; margin-right: 20px; }
    .about-container, .camps-container { grid-template-columns: 1fr; }
    .causes-grid, .involved-grid, .live-grid { grid-template-columns: repeat(2, 1fr); }
    .camps-badge { left: 20px; bottom: -20px; }
    .hero h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .navbar { padding: 0.5rem 0; }
    .desktop-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; padding: 2rem; box-shadow: var(--shadow-md); display: none; gap: 1.5rem; text-align: center; border-top: 1px solid var(--bg-light); max-height: calc(100vh - 70px); overflow-y: auto; }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 2.25rem; }
    .hero p { font-size: 1rem; }
    .section-padding { padding: 50px 0; }
    .stats-container, .causes-grid, .involved-grid, .live-grid { grid-template-columns: 1fr; }
    .cause-card img { height: 200px; }
    .stats { padding: 2rem 0; margin-top: -30px; }
    .stat-number { font-size: 2rem; }
    .section-title { font-size: 2rem; }
}
