/* 
   PRIME SOCIAL CLUB INC (PSCI) - Main Stylesheet
   Brand: Professional, Charity, Gradient Orange
*/

:root {
    --primary-orange: #ff7e5f;
    --secondary-orange: #feb47b;
    --dark-orange: #e65100;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-gray: #333333;
    --text-color: #444444;
    --gradient: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/images/hero_education.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

/* Features/Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, min-minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.impact-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 0.9rem;
}

/* Page Specifics */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
}

.content-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .content-wrapper {
        flex-direction: column;
    }
}
