/**
 * SOSPA - Sowing the Seed of Peace in Africa
 * Main Stylesheet
 */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --green-primary: #1a5a3c;
    --green-light: #2d8a5e;
    --green-soft: #e8f5e9;
    
    /* Secondary Colors */
    --blue-primary: #1e3a5f;
    --blue-light: #2c5282;
    
    /* Accent Colors */
    --gold: #c9a227;
    --gold-light: #e8d48a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--green-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--green-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--green-primary);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
}

.top-bar-contact a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover {
    color: var(--gold-light);
}

.top-bar-contact .material-icons-outlined {
    font-size: 18px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--gold-light);
}

.social-links .material-icons {
    font-size: 18px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
}

.lang-switcher a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

.navbar-nav {
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 10px 15px !important;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-primary) !important;
    background: var(--green-soft);
}

.nav-link.btn-donate {
    background: var(--gold);
    color: var(--white) !important;
    margin-left: 10px;
}

.nav-link.btn-donate:hover {
    background: var(--green-primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--blue-primary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== Buttons ===== */
.btn-primary-custom {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--green-primary);
    border-color: var(--white);
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Section ===== */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-700);
}

/* ===== Values Section ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-light);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.value-icon .material-icons-outlined {
    font-size: 32px;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray-500);
    font-size: 15px;
}

/* ===== Mission Vision Section ===== */
.mission-vision {
    background: var(--off-white);
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-primary), var(--gold));
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-card h3 .material-icons-outlined {
    color: var(--green-primary);
}

/* ===== Projects Section ===== */
.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.project-content p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
}

.project-meta .material-icons-outlined {
    font-size: 18px;
    color: var(--green-primary);
}

/* ===== Team Section ===== */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--green-soft);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--green-primary);
    font-weight: 500;
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--blue-primary) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* ===== Contact Section ===== */
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--green-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    flex-shrink: 0;
}

.contact-icon .material-icons-outlined {
    font-size: 28px;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--gray-500);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px var(--green-soft);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a .material-icons-outlined {
    font-size: 18px;
    color: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a:hover .material-icons-outlined {
    transform: scale(1.1);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact .material-icons-outlined {
    color: var(--gold);
    font-size: 20px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.footer-social a svg,
.footer-social a .material-icons {
    color: #ffffff !important;
    fill: #ffffff;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-social a.whatsapp:hover {
    background: #25D366;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button .btn-text {
    display: none; /* Masqué sur desktop */
}

.newsletter-form button:hover {
    background: var(--green-light);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gold);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--blue-primary) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--gold-light);
}

/* ===== Donate Page ===== */
.donate-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
}

.donate-icon {
    width: 80px;
    height: 80px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--green-primary);
}

.donate-icon .material-icons-outlined {
    font-size: 40px;
}

.donate-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.donate-info {
    background: var(--off-white);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.donate-info strong {
    color: var(--green-primary);
    display: block;
    font-size: 1.1rem;
}

/* ===== Responsive - Réduction progressive ===== */

/* Large laptops (14-17 pouces, ~1400px) */
@media (max-width: 1400px) {
    /* Navigation */
    .nav-link {
        padding: 8px 12px !important;
        font-size: 0.9rem;
    }
    .navbar-brand .logo {
        width: 45px;
        height: 45px;
    }
    .brand-name {
        font-size: 1.2rem;
    }
    
    /* Titres */
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Cartes */
    .team-card h4 {
        font-size: 1rem;
    }
    .value-card h4, .project-card h4 {
        font-size: 1.1rem;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-widget h4 {
        font-size: 1.1rem;
    }
}

/* Petits laptops (10-14 pouces, ~1200px) */
@media (max-width: 1200px) {
    /* Container */
    .container {
        max-width: 95%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Navigation */
    .nav-link {
        padding: 8px 10px !important;
        font-size: 0.85rem;
    }
    .navbar-brand .logo {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 1.1rem;
    }
    .navbar-brand .brand-tagline {
        font-size: 0.6rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Sections */
    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Cartes */
    .value-card, .project-card, .team-card {
        padding: 25px;
    }
    .value-card p, .project-card p {
        font-size: 0.9rem;
    }
    .team-card h4 {
        font-size: 0.95rem;
    }
    .team-card .position {
        font-size: 0.8rem;
    }
    
    /* About */
    .about-content h2 {
        font-size: 1.8rem;
    }
    .about-content p {
        font-size: 0.95rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 0.95rem;
    }
    
    /* Boutons */
    .btn-primary-custom, .btn-outline-custom {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
    
    /* Page header */
    .page-header {
        padding: 110px 0 70px;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 30px;
    }
    
    /* Donate */
    .donate-card {
        padding: 30px;
    }
    .donate-icon {
        width: 70px;
        height: 70px;
    }
    
    /* Footer */
    .footer-top {
        padding: 60px 0 30px;
    }
    .footer-widget h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .footer-links li a {
        font-size: 0.9rem;
    }
}

/* Écrans entre 992px et 1100px - Menu très compact */
@media (max-width: 1100px) and (min-width: 992px) {
    .nav-link {
        padding: 8px 8px !important;
        font-size: 0.8rem;
    }
    .navbar-brand .brand-tagline {
        display: none;
    }
    .brand-name {
        font-size: 1rem;
    }
    .navbar-brand .logo {
        width: 38px;
        height: 38px;
    }
    
    /* Contenu compact */
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .value-card, .project-card, .team-card {
        padding: 20px;
    }
}

/* Tablettes (991px) - Menu hamburger */
@media (max-width: 991px) {
    /* Top bar */
    .top-bar-contact {
        justify-content: center;
        margin-bottom: 10px;
    }
    .top-bar-right {
        justify-content: center;
    }
    .top-bar-contact span {
        font-size: 0.85rem;
    }
    
    /* Navigation */
    .navbar-brand .brand-tagline {
        display: none;
    }
    .navbar-brand .logo {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 1.1rem;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Cartes */
    .value-card, .project-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    .team-card {
        padding: 20px;
    }
    
    /* About */
    .about-content {
        text-align: center;
    }
    .about-image {
        margin-bottom: 30px;
    }
    
    /* Page header */
    .page-header {
        padding: 100px 0 60px;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-section p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-widget {
        text-align: center;
        margin-bottom: 40px;
    }
    .footer-logo {
        justify-content: center;
    }
}

/* Petites tablettes (768px) */
@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.7rem;
    }
    .section-subtitle {
        font-size: 0.85rem;
    }
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    /* Cartes */
    .value-card, .project-card, .team-card {
        padding: 20px;
    }
    .value-icon, .project-icon {
        width: 60px;
        height: 60px;
    }
    .value-icon .material-icons-outlined,
    .project-icon .material-icons-outlined {
        font-size: 28px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    /* Page header */
    .page-header h1 {
        font-size: 1.8rem;
    }
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-info-card {
        padding: 20px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Donate */
    .donate-card {
        padding: 25px;
    }
    .donate-card h3 {
        font-size: 1.2rem;
    }
}

/* Mobiles (767px et moins) */
@media (max-width: 767px) {
    /* Top bar */
    .top-bar-contact {
        flex-direction: column;
        gap: 8px;
    }
    .top-bar {
        padding: 8px 0;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-header {
        margin-bottom: 30px;
    }
    
    /* About */
    .about-image::before {
        display: none;
    }
    
    /* Team */
    .team-image img {
        width: 100px;
        height: 100px;
    }
    
    /* Footer */
    .footer-top {
        padding: 50px 0 20px;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom .row > div {
        margin-bottom: 10px;
    }
    
    /* Floating buttons */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Petits mobiles (576px et moins) */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* Boutons */
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Cartes */
    .value-card, .project-card, .team-card {
        padding: 18px;
    }
    .value-card h4, .project-card h4 {
        font-size: 1rem;
    }
    .value-card p, .project-card p {
        font-size: 0.85rem;
    }
    
    /* Page header */
    .page-header {
        padding: 90px 0 50px;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 0;
    }
    .cta-section h2 {
        font-size: 1.4rem;
    }
    .cta-section p {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 20px;
    }
    .contact-form .form-control {
        padding: 12px 15px;
    }
    
    /* Donate */
    .donate-card {
        padding: 20px;
    }
    .donate-icon {
        width: 60px;
        height: 60px;
    }
    .donate-icon .material-icons-outlined {
        font-size: 30px;
    }
    
    /* Footer */
    .footer-widget h4 {
        font-size: 1rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* ===== AMÉLIORATIONS MOBILE AVANCÉES ===== */

/* === Navigation Mobile === */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 16px 16px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        margin: 2px 0;
    }
    
    .nav-link.btn-donate {
        margin: 10px 0 0 0;
        text-align: center;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px;
        border-radius: 8px;
        background: var(--green-soft);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        background: var(--green-soft);
    }
}

/* === Hero Mobile === */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .hero-image img {
        border-radius: 16px;
    }
}

/* === Page Header Mobile === */
@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 6px;
    }
}

/* === About Page Mobile === */
@media (max-width: 767px) {
    .about-content {
        text-align: center;
        padding: 0;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .about-image {
        margin-bottom: 25px;
    }
    
    .about-image img {
        border-radius: 16px;
    }
    
    /* Mission Vision Cards */
    .mv-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .mv-card h3 {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .mv-card p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    /* Values Grid - 2 par ligne sur mobile */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .value-card {
        padding: 18px 15px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    .value-icon .material-icons-outlined {
        font-size: 24px;
    }
    
    .value-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .value-card p {
        font-size: 0.8rem;
        line-height: 1.5;
        display: none; /* Masquer description sur mobile pour gagner de l'espace */
    }
}

/* Très petits écrans - garder 2 colonnes mais plus compact */
@media (max-width: 400px) {
    .values-grid {
        gap: 10px;
    }
    
    .value-card {
        padding: 15px 12px;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .value-icon .material-icons-outlined {
        font-size: 22px;
    }
    
    .value-card h4 {
        font-size: 0.85rem;
    }
}

/* === Projects Page Mobile === */
@media (max-width: 767px) {
    .project-card {
        margin-bottom: 20px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-meta span {
        font-size: 0.85rem;
    }
    
    /* Project Details - Sauti Ya Amani */
    .project-hero-image {
        height: 250px;
        border-radius: 16px;
    }
    
    .project-intro h2 {
        font-size: 1.4rem;
    }
    
    .project-intro p {
        font-size: 0.9rem;
    }
    
    .objective-card,
    .impact-card,
    .timeline-item {
        padding: 20px;
    }
    
    .objective-card h4,
    .impact-card h4 {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* === Services Page Mobile === */
@media (max-width: 767px) {
    .domain-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .domain-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .domain-icon {
        width: 70px;
        height: 70px;
    }
    
    .domain-icon .material-icons {
        font-size: 32px;
    }
    
    .domain-number {
        font-size: 1.5rem;
    }
    
    .domain-content h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .domain-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .domain-activities {
        margin-top: 20px;
    }
    
    .domain-activities h5 {
        font-size: 1rem;
    }
    
    .domain-activities li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    /* Impact Stats */
    .impact-stat {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .impact-stat .number {
        font-size: 2.2rem;
    }
    
    .impact-stat .label {
        font-size: 0.85rem;
    }
}

/* === Team Page Mobile === */
@media (max-width: 767px) {
    .team-hero-section {
        padding: 40px 0;
    }
    
    .team-hero-image {
        border-radius: 16px;
    }
    
    .team-hero-image img {
        height: 250px;
    }
    
    .team-hero-overlay {
        padding: 30px 20px 25px;
    }
    
    .team-hero-overlay h2 {
        font-size: 1.3rem;
    }
    
    .team-hero-overlay p {
        font-size: 0.9rem;
    }
    
    .team-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .team-card h4 {
        font-size: 1rem;
    }
    
    .team-card .position {
        font-size: 0.8rem;
    }
    
    .team-overlay span:last-child {
        font-size: 12px;
    }
}

/* === Member Profile Mobile === */
@media (max-width: 767px) {
    .member-profile {
        text-align: center;
    }
    
    .member-image {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
    }
    
    .member-info h2 {
        font-size: 1.4rem;
    }
    
    .member-info .role {
        font-size: 1rem;
    }
    
    .member-bio {
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .member-bio p {
        margin-bottom: 15px;
    }
}

/* === Videos Page Mobile === */
@media (max-width: 767px) {
    .youtube-subscribe-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .video-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card {
        border-radius: 12px;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-info h5 {
        font-size: 0.9rem;
    }
    
    .video-date {
        font-size: 0.75rem;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 30px;
    }
    
    .content-type-card {
        padding: 25px 20px;
    }
    
    .content-type-icon {
        width: 60px;
        height: 60px;
    }
    
    .content-type-icon .material-icons-outlined {
        font-size: 28px;
    }
    
    .content-type-card h4 {
        font-size: 1.1rem;
    }
    
    .content-type-card p {
        font-size: 0.85rem;
    }
}

/* === Contact Page Mobile === */
@media (max-width: 767px) {
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
    }
    
    .contact-info-card p,
    .contact-info-card a {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .contact-form .btn-primary-custom {
        width: 100%;
        padding: 14px;
    }
    
    /* WhatsApp Card */
    .whatsapp-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .whatsapp-card h4 {
        font-size: 1.1rem;
    }
    
    /* Map */
    .map-container {
        height: 250px;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .map-container iframe {
        border-radius: 16px;
    }
}

/* === Donate Page Mobile === */
@media (max-width: 767px) {
    .donate-intro {
        text-align: center;
        padding: 0 10px;
    }
    
    .donate-intro h2 {
        font-size: 1.4rem;
    }
    
    .donate-intro p {
        font-size: 0.9rem;
    }
    
    .donate-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 16px;
    }
    
    .donate-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .donate-icon .material-icons-outlined {
        font-size: 32px;
    }
    
    .donate-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .donate-card p {
        font-size: 0.9rem;
    }
    
    .donate-info {
        padding: 15px;
        border-radius: 10px;
    }
    
    .donate-info strong {
        font-size: 1rem;
    }
    
    .donate-info span {
        font-size: 0.85rem;
    }
    
    /* Donate Steps */
    .donate-steps {
        padding: 20px;
    }
    
    .donate-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .donate-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* === CTA Section Mobile === */
@media (max-width: 767px) {
    .cta-section {
        padding: 50px 20px;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-section .btn-primary-custom {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .cta-section .d-flex {
        flex-direction: column;
        gap: 12px;
    }
}

/* === Footer Mobile === */
@media (max-width: 767px) {
    .footer-top {
        padding: 40px 0 25px;
    }
    
    /* Logo et description */
    .footer-widget:first-child {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo span {
        font-size: 1.4rem;
    }
    
    .footer-widget p {
        font-size: 0.9rem;
        padding: 0 15px;
        line-height: 1.7;
    }
    
    /* Liens rapides - grille 2 colonnes */
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-widget h4 {
        font-size: 1rem;
        margin-bottom: 18px;
        text-align: center;
    }
    
    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 15px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 8px 0;
        justify-content: flex-start;
    }
    
    .footer-links a .material-icons-outlined {
        font-size: 16px;
    }
    
    /* Contact - style compact */
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-contact li {
        background: rgba(255,255,255,0.05);
        padding: 12px 15px;
        border-radius: 10px;
        margin-bottom: 0;
    }
    
    .footer-contact li .material-icons-outlined {
        color: var(--gold);
        font-size: 20px;
    }
    
    .footer-contact span,
    .footer-contact a {
        font-size: 0.85rem;
    }
    
    /* Réseaux sociaux */
    .footer-social {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }
    
    .footer-social a:hover {
        background: var(--gold);
        transform: translateY(-3px);
    }
    
    /* Newsletter */
    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px;
        border-radius: 10px;
        justify-content: center;
    }
    
    .newsletter-form button {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .newsletter-form button .btn-text {
        display: inline;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    /* Footer bottom */
    .footer-bottom {
        padding: 20px 15px;
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
}

/* === Floating Buttons Mobile === */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 38px;
        height: 38px;
    }
    
    .back-to-top .material-icons {
        font-size: 20px;
    }
}

/* === Alerts Mobile === */
@media (max-width: 767px) {
    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .alert .material-icons-outlined {
        font-size: 20px;
    }
}

/* === Gallery Mobile === */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        border-radius: 10px;
        height: 150px;
    }
    
    .gallery-item img {
        border-radius: 10px;
    }
}

/* === Smooth Scrolling & Touch === */
@media (max-width: 991px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    button, a {
        touch-action: manipulation;
    }
    
    img {
        -webkit-user-drag: none;
        user-select: none;
    }
}

/* === Fix iOS Input Zoom === */
@media (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* === Landscape Mobile === */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 70px 0 35px;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
    }
}
