/*
Theme Name: Sustrecha Pro
Theme URI: http://sustrecha.com
Author: Gemini Expert
Description: Custom pro theme for Sustrecha Volunteer Center.
Version: 2.0
Text Domain: sustrecha
*/

:root {
    --primary-red: #e31e24;
    --dark-red: #c61a1a;
    --text-color: #2c3e50;
    --light-bg: #f9f9f9;
}

body { font-family: 'Helvetica Neue', Arial, sans-serif; color: var(--text-color); margin: 0; background: var(--light-bg); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; }
.main-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; color: var(--text-color); font-weight: 600; font-size: 15px; }
.main-nav a:hover { color: var(--primary-red); }

/* Buttons */
.btn { display: inline-block; padding: 12px 25px; border-radius: 6px; text-decoration: none; font-weight: bold; transition: 0.3s; border: none; cursor: pointer; text-align: center; }
.btn-red { background: var(--primary-red); color: #fff !important; }
.btn-red:hover { background: var(--dark-red); }
.btn-outline { border: 2px solid var(--primary-red); color: var(--primary-red) !important; background: transparent; }
.btn-outline:hover { background: var(--primary-red); color: #fff !important; }

/* Hero */
.hero { background: #1a1a1a; padding: 100px 0; color: #fff; text-align: left; }
.hero h1 { font-size: 72px; margin: 0; color: var(--primary-red); line-height: 1; }
.hero p { font-size: 28px; margin: 20px 0; font-weight: 300; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -50px; }
.feature-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feature-card h3 { color: var(--primary-red); margin-top: 0; font-size: 18px; }

/* News Area */
.news-area { padding: 80px 0; display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.news-item { display: flex; gap: 20px; margin-bottom: 30px; background: #fff; padding: 15px; border-radius: 8px; }
.news-img { width: 120px; height: 100px; background: #ddd; border-radius: 4px; flex-shrink: 0; }
.news-content h4 { margin: 0 0 10px 0; }

/* Telegram Sidebar */
.tg-sidebar { background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #eee; text-align: center; height: fit-content; }
.tg-sidebar img { width: 60px; margin-bottom: 15px; }

footer { background: #fff; border-top: 1px solid #eee; padding: 40px 0; }
