/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    background-image: url("wrinkled_paper_texture.png");
    background-size: cover;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Brutalist Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    font-weight: 400;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

strong {
    font-weight: 700;
}

/* Accent Colors */
.accent-text {
    color: #66dcdd;
    text-shadow: 2px 2px 0px #000;
}

/* Navigation - Brutalist */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 4px solid #66dcdd;
    box-shadow: 0 4px 0 #000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 40px;
    filter: invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #66dcdd;
    border: 2px solid #66dcdd;
    background: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #66dcdd;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 4px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Brutalist */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        url("wrinkled_paper_texture.png");
    background-size: 100% 100%, 100% 100%, cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-decorations {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: 1;
}

.decoration-icon {
    position: absolute;
    opacity: 0.3;
}

.megaphone {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    transform: rotate(15deg);
}

.speech-bubble {
    width: 40px;
    height: 40px;
    top: 80px;
    right: 100px;
    transform: rotate(-10deg);
}

.microphone-large {
    width: 120px;
    height: 120px;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #000;
    text-shadow: 4px 4px 0px #fff, 8px 8px 0px #66dcdd;
    line-height: 0.9;
}

.hero-subtitle-block {
    background: #000;
    color: #fff;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 4px solid #66dcdd;
    transform: rotate(-1deg);
    box-shadow: 8px 8px 0 #66dcdd;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;

    letter-spacing: 1px;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    border: 4px solid #000;
    font-size: 1.1rem;
    position: relative;
}

.btn-primary {
    background: #66dcdd;
    color: #000;
}

.btn-primary:hover {
    transform: translate(-4px, -4px);
	background: #000;
	color: #66dcdd;
    box-shadow: 8px 8px 0 #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 4px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #66dcdd;
}

/* Hero Visual Elements - Brutalist */
.hero-visual {
    position: relative;
    height: 400px;
}

.brutalist-shape {
    position: absolute;
    background: #000;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
    transform: rotate(45deg);
    border: 4px solid #66dcdd;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: 50px;
    background: #66dcdd;
    border: 4px solid #000;
}

/* Main Content Section - Brutalist */
.main-content {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.content-block {
    background: #f5f5f5;
    border: 4px solid #000;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 12px 12px 0 #000;
}

.content-header {
    margin-bottom: 3rem;
}

.content-header h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.header-line {
    width: 100px;
    height: 8px;
    background: #66dcdd;
    margin-bottom: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 8px solid #000;
    background: #fff;
}

.text-block p {
    font-size: 1.2rem;
    margin: 0;
}

.highlight-block {
    background: #000;
    color: #fff;
    border-left: 8px solid #66dcdd;
    transform: rotate(-0.5deg);
}

.highlight-block p {
    font-weight: 600;
    text-transform: uppercase;
}

.content-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
    border: 4px solid #66dcdd;
    transform: rotate(2deg);
}

.stat-box:nth-child(even) {
    transform: rotate(-2deg);
    background: #66dcdd;
    border-color: #000;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section - Brutalist */
.about-section {
    padding: 6rem 0;
    background: #000;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 4rem;
    text-shadow: 4px 4px 0 #66dcdd;
}

.section-divider {
    width: 120px;
    height: 8px;
    background: #66dcdd;
    margin: 0 auto 2rem;
}

.section-subtitle {
    color: #fff;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-block {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 4px solid #66dcdd;
    background: rgba(255, 0, 0, 0.1);
}

.about-block h3 {
    color: #66dcdd;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-block p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 0;
    color: #fff;
    position: relative;
    padding-left: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #66dcdd;
}

.values-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #66dcdd;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    color: #000;
    border: 4px solid #66dcdd;
    transform: rotate(3deg);
    box-shadow: 8px 8px 0 #66dcdd;
}

.stat-item:nth-child(even) {
    transform: rotate(-3deg);
    background: #66dcdd;
    color: #fff;
    border-color: #fff;
    box-shadow: 8px 8px 0 #fff;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Resources Section - Brutalist */
.resources-section {
    padding: 6rem 0;
    background: #fff;
    background-image: url("wrinkled_paper_texture.png");
    background-size: cover;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.resource-card {
    background: #fff;
    padding: 2rem;
    border: 6px solid #000;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 12px 12px 0 #000;
}

.resource-card:hover {
    transform: translate(-8px, -8px);
    box-shadow: 20px 20px 0 #000;
}

.resource-card:nth-child(even) {
    background: #000;
    color: #fff;
    border-color: #66dcdd;
    box-shadow: 12px 12px 0 #66dcdd;
}

.resource-card:nth-child(even):hover {
    box-shadow: 20px 20px 0 #66dcdd;
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: #66dcdd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #000;
}

.resource-card:nth-child(even) .resource-icon {
    background: #fff;
    color: #000;
    border-color: #66dcdd;
}

.resource-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.resource-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.resource-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #66dcdd;
    transition: all 0.2s ease;
}

.resource-link:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #66dcdd;
}

.resource-card:nth-child(even) .resource-link {
    background: #66dcdd;
    color: #fff;
    border-color: #fff;
}

.resource-card:nth-child(even) .resource-link:hover {
    box-shadow: 6px 6px 0 #fff;
}

/* Footer - Brutalist */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 8px solid #66dcdd;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    filter: invert(1);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #66dcdd;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section ul li a:hover {
    color: #66dcdd;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 4px solid #66dcdd;
    color: #fff;
}

.footer-motto {
    font-weight: 700;
    text-transform: uppercase;
    color: #66dcdd;
    margin-top: 1rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 4px solid #66dcdd;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
}



/* NGO Partners Section - Brutalist */
.partners-section {
    padding: 6rem 0;
    background: #000;
    color: #fff;
    border-top: 8px solid #66dcdd;
    border-bottom: 8px solid #66dcdd;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    align-items: center;
}

.partner-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;

    color: #000;
    transition: all 0.2s ease;
    box-shadow: 8px 8px 0 #000;
}

.partner-logo-container:hover {
    /*transform: translate(-4px, -4px);*/
	transform: scale(2);
    box-shadow: 12px 12px 0 #000;
    background: #aaa;
    color: #fff;
}

.partner-logo {
    max-width: 100px;
    height: auto;

    margin-bottom: 0.5rem;
}


.partner-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .partner-logo {
        max-width: 80px;
    }
    .partner-name {
        font-size: 0.8rem;
    }
}




/* Instagram Button */
.btn-instagram {
    background: #000;
    color: #fff;
    border: 4px solid #66dcdd;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
}

.btn-instagram:hover {
    background: #66dcdd;
    color: #000;
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

.instagram-icon {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.btn-instagram:hover .instagram-icon {
    filter: invert(0);
}




/* Propuesta Cívica Banner */
.propuesta-civica-banner {
    background: #fff; /* Orange color */
    color: #000;
    padding: 1.5rem 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    font-size: 1.1rem;
}

.propuesta-civica-banner p {
    margin: 0;
}


