/* =========================================================================
   Camp Portal - Public Website Styles
========================================================================= */
:root {
    --primary: #0EA5E9;        /* Sky Blue - أزرق سماوي */
    --primary-dark: #0284C7;   /* Darker Sky Blue */
    --accent: #FACC15;         /* Golden Yellow - أصفر ذهبي */
    --accent-dark: #EAB308;
    --bg-color: #F8FAFC;       /* Iconic White (Main BG) */
    --card-bg: #FFFFFF;        /* Pure White */
    --text-main: #1E293B;      /* Light Black - أسود فاتح */
    --text-muted: #64748B;
    --border: #E2E8F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Tajawal', sans-serif; background: var(--bg-color); color: var(--text-main); }

.container { width: 90%; max-width: 1000px; margin: 0 auto; }
.text-center { text-align: center; }

/* Navbar */
.navbar { background: white; padding: 20px 0; border-bottom: 2px solid var(--primary); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: bold; }

/* Banner */
.banner { padding: 80px 0; background: linear-gradient(135deg, var(--text-main), #334155); color: white; border-bottom: 5px solid var(--accent); }
.banner h1 { font-size: 2.5rem; margin-bottom: 15px; color: var(--accent); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.banner p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Buttons & Inputs */
.btn { display: inline-block; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; font-family: inherit; transition: 0.3s;}
.btn-primary { background: var(--accent); color: var(--text-main); box-shadow: 0 4px 10px rgba(250, 204, 21, 0.3); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
button.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3); }
button.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-2px);}
.btn-full { width: 100%; font-size: 1.1rem; }

/* General Sections */
.section-padding { padding: 80px 0; }
.section-title { font-size: 2rem; margin-bottom: 40px; text-align: center; color: var(--primary); }
.bg-light { background: white; }

/* Form Card */
.card { background: var(--card-bg); border-radius: 12px; padding: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.form-container { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-family: inherit; font-size: 1rem; }

/* Messages */
.msg { margin-top: 15px; padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; }
.msg.success { background: #dcfce7; color: #166534; border: 1px solid #166534;}
.msg.error { background: #fee2e2; color: #991b1b; border: 1px solid #991b1b;}
.msg.hidden { display: none; }

/* News Grid */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.news-card { padding: 25px; border-radius: 12px; background: white; border: 1px solid var(--border); border-top: 4px solid var(--accent); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.news-card h3 { color: var(--primary-dark); margin-bottom: 10px; }
.news-date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
