/* ===========================================
   SECTIONS.CSS - Page Sections
   Hero, About, Mission, Partners, Footer
   =========================================== */

/* ===========================================
   GENERAL SECTION STYLING
   =========================================== */

section {
    padding: var(--space-3xl) 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-section);
}

section:nth-child(odd) {
    background: var(--bg-white);
}

.section-title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: var(--space-md) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--fs-base);
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

/* ===========================================
   HERO SECTION - Modern Design
   =========================================== */

.hero-modern {
    position: relative;
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px); /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0 var(--space-2xl);
    margin-top: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    align-items: center;
}

/* Hero Left - Text Content */
.hero-left {
    max-width: 100%;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-soft);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.badge-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--navy);
}

/* Hero Headlines */
.hero-headline {
    margin-bottom: var(--space-lg);
}

.hero-kicker {
    display: block;
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main {
    display: block;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.hero-highlight {
    display: block;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Hero Description */
.hero-description {
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.trust-label {
    font-size: var(--fs-sm);
    color: var(--text-light);
    margin-top: var(--space-xs);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

/* Hero Right - Visual */
.hero-right {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 10s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 191, 255, 0.1) 0%,
        rgba(25, 25, 112, 0.1) 50%,
        rgba(50, 205, 50, 0.1) 100%);
    pointer-events: none;
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.05;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-main);
    top: -10%;
    right: -5%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-hover);
    bottom: -10%;
    left: -5%;
}

/* Floating Cards - Hidden on mobile */
.floating-card {
    display: none;
}

/* ===========================================
   FEATURED PROJECTS SECTION
   =========================================== */

.featured-projects {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.project-content {
    padding: var(--space-md);
}

.project-content h3 {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.project-content p {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.extra-content {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
    font-size: var(--fs-sm);
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */

.about-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.about-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Values Section */
.values-section {
    margin-top: var(--space-2xl);
}

.values-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

/* ===========================================
   ORGANIZATION SECTION
   =========================================== */

.organization-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin-top: var(--space-2xl);
}

.board-section {
    margin-bottom: var(--space-2xl);
}

.board-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto;
}

/* Advisory Section */
.advisory-section {
    margin-top: var(--space-2xl);
}

.advisory-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.advisory-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

/* Association Info */
.association-info {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
}

.info-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

/* ===========================================
   SUPPORT SECTION
   =========================================== */

.support-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* ===========================================
   PARTNERS SECTION
   =========================================== */

.partners-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

/* ===========================================
   INSTAGRAM SECTION
   =========================================== */

.instagram-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-section);
}

.instagram-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-feed {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.instagram-feed iframe {
    width: 100%;
    border-radius: var(--radius-md);
    max-height: 500px;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */

.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.contact-info {
    padding: var(--space-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 4px;
}

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 var(--space-sm);
}

.footer-bottom a:hover {
    color: white;
}

/* Footer Logo */
.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
}

/* ===========================================
   DONATION PAGE SECTIONS
   =========================================== */

.donation-hero {
    padding: var(--space-3xl) 0;
    background: var(--gradient-main);
    color: white;
    text-align: center;
}

.donation-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.info-section {
    margin-bottom: var(--space-xl);
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-lg);
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.info-section h3 i {
    color: var(--primary);
}

.info-section p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Donation Types */
.donation-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.donation-type-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.donation-type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.donation-type-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.donation-type-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.donation-type-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-soft);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.cta-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ===========================================
   VOLUNTEER PAGE SECTIONS
   =========================================== */

.volunteer-hero {
    padding: var(--space-3xl) 0;
    background: var(--gradient-main);
    color: white;
    text-align: center;
}

.volunteer-form-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.volunteer-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===========================================
   STORY PAGE SECTIONS
   =========================================== */

.story-hero {
    padding: var(--space-3xl) 0;
    background: var(--gradient-main);
    color: white;
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-md);
}

.story-content h2 {
    font-size: var(--fs-2xl);
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.story-content p {
    font-size: var(--fs-lg);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* ===========================================
   LEGAL PAGES (Privacy, KVKK)
   =========================================== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-md);
}

.legal-content h1 {
    font-size: var(--fs-3xl);
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.legal-content h2 {
    font-size: var(--fs-xl);
    color: var(--text-dark);
    margin: var(--space-xl) 0 var(--space-md);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

/* ===========================================
   ANIMATIONS - Section specific
   =========================================== */

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
