/* Base styles */
:root {
    --primary-color: #017B3A;
    --primary-dark: #016b33;
    --primary-light: #e6f4eb;
    --secondary-color: #81C784;
    --accent-color: #558B2F;
    --light-bg: #F1F8E9;
    --earth-brown: #795548;
    --warm-yellow: #FFB74D;
    --text-color: #333;
    --background-color: #f6f6f6;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --primary-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    background-color: var(--background-color);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* div {border: 1px solid red;} */

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header */
.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: 60px;
}

.navbar-brand {
    color: white !important;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    height: 100%;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: white !important;
}

.navbar-toggler {
    border-color: var(--light-bg);
    padding: 0.25rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(241, 248, 233, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Showcase */
.showcase {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--light-bg);
    margin-top: 0; /* Remove margin */
    padding-top: 60px; /* Add padding equal to navbar height */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Video Slider */
.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.background-video.active {
    opacity: 1;
}

/* Video Navigation Dots */
.video-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.video-dot.active {
    background-color: white;
    border-color: white;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .video-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .video-dot {
        width: 10px;
        height: 10px;
    }
}

.showcase-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    z-index: 2;
}

.showcase-logo {
    width: 320px;
    margin-bottom: 30px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.showcase-title {
    color: white;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    font-weight: 700;
}

.showcase-title:last-of-type {
    margin-bottom: 20px;
}

.showcase-subtitle {
    color: white;
    font-size: 1.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Main Content */
main {
    width: 100%;
    flex: 1;
    margin-top: 0; /* Remove margin */
}

.content {
    padding: 3rem 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5em;
    font-weight: 300;
    color: var(--primary-color);
}

h2 {
    font-size: 2em;
    font-weight: 300;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75em;
    font-weight: 500;
}

h4 {
    font-size: 1.5em;
    font-weight: 400;
}

h5 {
    font-size: 1.25em;
    font-weight: 400;
}

h6 {
    font-size: 1em;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Lists */
ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Accordion */
.accordion-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1.25rem;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.accordion-button:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-button:focus {
    box-shadow: var(--shadow-lg);
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-body {
    background-color: white;
    color: var(--text-color);
    padding: 1.5rem;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-lg);
}

.accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-item:first-of-type {
    border-radius: 12px !important;
}

.accordion-item:last-of-type {
    border-radius: 12px !important;
    margin-bottom: 0;
}

/* Support Section */
.support-options {
    background-color: var(--white);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.support-cards {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.support-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.support-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.support-card p {
    color: white !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: left;
}

.support-card .banner-text p {
    color: white !important;
}

.support-card h6 {
    color: white;
    font-weight: 600;
    text-align: left;
}

.support-card .btn-outline-primary {
    border-color: white;
    color: white;
}

.support-card .btn-outline-primary:hover,
.support-card .btn-outline-primary:focus,
.support-card .btn-outline-primary:active {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.support-card .btn-primary {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.support-card .btn-primary:hover,
.support-card .btn-primary:focus,
.support-card .btn-primary:active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.support-card .form-control {
    background-color: white;
    border-color: white;
    color: var(--text-color);
}

.support-card .form-control:focus {
    background-color: white;
    border-color: white;
    color: var(--text-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.support-card .input-group-text {
    background-color: white;
    border-color: white;
    color: var(--text-color);
}

.support-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: white;
    background-color: var(--primary-dark);
}

.support-options h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.support-options .lead {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.support-options p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.support-options .text-center {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Tree Menu */
.tree-menu {
    margin-bottom: 1rem;
}

.tree {
    list-style: none;
    padding-left: 0;
}

.tree-content {
    cursor: pointer;
    padding: 0.25rem 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* For complex tree menu structure */
.tree-item .tree-content {
    display: none;
    background: #fafafa;
    cursor: default;
    padding: 0;
}

.tree-toggle {
    display: inline-block;
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.tree-children {
    list-style: none;
    padding-left: 20px;
    display: none;
    position: relative;
}

.tree-children::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0px,
        rgba(0,0,0,0.2) 2px,
        transparent 2px,
        transparent 4px
    );
}

.tree-children li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    position: relative;
}

.tree-children li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0.75rem;
    width: 16px;
    height: 1px;
    background: rgba(0,0,0,0.2);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: #6c757d;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-color);
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase {
        min-height: 80vh;
    }
    
    .showcase-title {
        font-size: 2em;
    }
    
    .showcase-subtitle {
        font-size: 1.2em;
    }
    
    .showcase-logo {
        width: 100px;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }

    .accordion-button {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .support-options {
        padding: 3rem 1.5rem;
    }
    
    .support-cards {
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .support-options h2 {
        font-size: 2rem;
    }
    
    .support-options .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .showcase {
        min-height: 70vh;
    }
    
    .showcase-title {
        font-size: 1.8em;
    }
    
    .showcase-subtitle {
        font-size: 1.1em;
    }
    
    .showcase-logo {
        width: 80px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .support-options {
        padding: 2rem 1rem;
    }
    
    .support-cards {
        gap: 1rem;
    }
    
    .support-card {
        padding: 1.25rem;
        min-width: 100%;
    }
    
    .support-options h2 {
        font-size: 1.8rem;
    }
    
    .support-options .lead {
        font-size: 1.1rem;
    }
    
    .support-card h4 {
        font-size: 1.3rem;
    }
    
    .support-card p {
        font-size: 1rem;
    }
    
    /* Small mobile margins for all content */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    main {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Ensure all content sections have proper margins */
    .content > div,
    .content > section,
    .content > article {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Headers should remain full width on small screens too */
    .hero-image-section,
    .showcase,
    .navbar,
    .hero-image-section *,
    .showcase *,
    .navbar * {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure hero content remains centered on small screens */
    .hero-content {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

/* Animations */
.hover_zoom_in:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Custom styles for Köy Enstitüleri */
.group {
    background: #ecf0f1;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

em {
    font-style: italic;
    color: #3498db;
}

.dotted-trail {
    position: relative;
    padding-left: 0.5rem;
} 

/* Mission Section */
.mission-section {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-1px);
}

.mission-image {
    flex: 1;
    max-width: 33.333%;
    background-color: #c7d1db;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    min-width: 100%;
    min-height: 100%;
}

.mission-item:hover .mission-image img {
    transform: scale(1.02);
}

.mission-text {
    flex: 2;
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.mission-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .mission-item {
        flex-direction: column;
    }
    
    .mission-image {
        max-width: 100%;
        height: 150px;
    }
    
    .mission-text {
        padding: 1.5rem;
    }
    
    .mission-text h3 {
        font-size: 1.3rem;
    }
    
    .mission-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .mission-text {
        padding: 1rem;
    }
    
    .mission-text h3 {
        font-size: 1.2rem;
    }
} 

/* Join Us Banner */
.join-us-banner {
    padding: 1rem;
    color: white;
}

/* Support Us Banner */
.support-us-banner {
    padding: 1rem;
    color: var(--text-color);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    text-align: left;
    width: 100%;
}

.banner-text {
    width: 100%;
}

.banner-text h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Support Us specific text colors for light background */
.support-us-banner .banner-text h2 {
    color: var(--primary-color);
}

.support-us-banner .banner-text p {
    color: var(--text-color);
}

.banner-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

/* Contact Modal */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Donation Modal */
.donation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.donation-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.donation-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.donation-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.donation-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

/* Donation Amount Buttons */
.donation-amounts {
    margin-bottom: 2rem;
}

.donation-amount-btn {
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    padding: 1rem;
    height: auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donation-amount-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.donation-amount-btn.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.donation-amount-btn strong {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.donation-amount-btn small {
    font-size: 0.85rem;
    opacity: 0.8;
}



@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .banner-content h2 {
        text-align: left;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1.1rem;
    }
    
    .banner-image {
        max-width: 100%;
    }
    
    .join-us-banner {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .banner-text h2 {
        font-size: 1.8rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .join-us-banner {
        padding: 1.5rem 1rem;
    }
} 

/* Social Sharing Section */
.share-social-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.hashtag-container {
    margin-bottom: 2rem;
}

.hashtag-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hashtag-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.social-platforms {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Button Colors */
.facebook-btn:hover {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
    border-color: #1877f2;
}

.twitter-btn:hover {
    background: linear-gradient(135deg, #1da1f2, #0ea5e9);
    border-color: #1da1f2;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #e4405f, #f77737);
    border-color: #e4405f;
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, #0077b5, #0ea5e9);
    border-color: #0077b5;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: #25d366;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #0088cc, #0ea5e9);
    border-color: #0088cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .share-social-section {
        padding: 1.2rem 1rem;
        margin-top: 1.5rem;
    }
    
    .hashtag-title {
        font-size: 2rem;
    }
    
    .hashtag-description {
        font-size: 1.1rem;
    }
    
    .social-title {
        font-size: 1.3rem;
    }
    
    .social-buttons {
        gap: 0.8rem;
    }
    
    .social-btn {
        width: 55px;
        height: 55px;
    }
    
    .social-btn i {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .share-social-section {
        padding: 1rem 0.8rem;
    }
    
    .hashtag-title {
        font-size: 1.8rem;
    }
    
    .hashtag-description {
        font-size: 1rem;
    }
    
    .social-buttons {
        gap: 0.6rem;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
    }
    
    .social-btn i {
        font-size: 1.2rem;
    }
}

/* Digital Literacy Tree Menu Styles */
.dijital-okuryazarlik-container {
    padding: 2rem 0;
}

.modules-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f8f9fa 100%);
    padding: 3rem 0;
    margin-top: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.modules-tree-menu {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.modules-tree-menu h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.modules-tree-menu h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.tree-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tree-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.tree-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tree-header {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tree-header:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-1px);
}

.tree-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tree-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.tree-header[aria-expanded="true"] .tree-icon {
    transform: rotate(90deg);
}

.tree-title {
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
}

.tree-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tree-content-inner {
    padding: 1.5rem;
    background: #fafafa;
}

.module-objective {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.module-objective h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.module-objective p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.tree-subsection {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.subsection-header {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.subsection-header:hover {
    background: #e9ecef;
}

.subsection-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.subsection-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.subsection-header[aria-expanded="true"] .subsection-icon {
    transform: rotate(90deg);
}

.subsection-header h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.subsection-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.subsection-content {
    padding: 1rem;
    background: white;
}

.subsection-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.subsection-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-color);
}

.subsection-content li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modules-section {
        padding: 2rem 0;
        margin-top: 1rem;
    }
    
    .modules-tree-menu {
        padding: 1.5rem;
    }
    
    .tree-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tree-badge {
        align-self: flex-end;
    }
    
    .subsection-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .subsection-badge {
        align-self: flex-end;
    }
    
    /* Mobile margins for content */
    .dijital-okuryazarlik-container {
        padding: 1rem 0;
    }
    
    .dijital-okuryazarlik-container .col-lg-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .dijital-okuryazarlik-container .col-lg-10 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .dijital-okuryazarlik-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .dijital-okuryazarlik-content h1 {
        margin-left: 0;
        margin-right: 0;
    }
    
    .dijital-okuryazarlik-content img {
        margin-left: 0;
        margin-right: 0;
    }
    
    .dijital-okuryazarlik-content > div {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .dijital-okuryazarlik-content > div:first-child {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .modules-tree-menu {
        padding: 1rem;
    }
    
    .tree-header {
        padding: 0.75rem 1rem;
    }
    
    .tree-content-inner {
        padding: 1rem;
    }
    
    .module-objective {
        padding: 0.75rem;
    }
    
    .subsection-content {
        padding: 0.75rem;
    }
    
    /* Small mobile margins for content */
    .dijital-okuryazarlik-container {
        padding: 0.5rem 0;
    }
    
    .dijital-okuryazarlik-container .col-lg-8 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .dijital-okuryazarlik-container .col-lg-10 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .dijital-okuryazarlik-content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .dijital-okuryazarlik-content > div {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .dijital-okuryazarlik-content > div:first-child {
        padding-left: 0;
        padding-right: 0;
    }
    
    .modules-section {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        border-radius: 10px;
    }
    
    .modules-tree-menu {
        margin-left: 0;
        margin-right: 0;
    }
} 

/* Mobile margins for specific content sections only */
@media (max-width: 768px) {
    /* Container margins */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Specific content sections that should have margins */
    .col-lg-8,
    .col-lg-10,
    .dijital-okuryazarlik-content,
    .about-us-content,
    .contact-content,
    .support-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Content sections within main - but exclude containers that have hero sections */
    main > div:not(.showcase) {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Override padding for containers that have dijital-okuryazarlik-container */
    main > div:not(.showcase) .dijital-okuryazarlik-container {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    /* Ensure headers remain full width */
    .hero-image-section,
    .showcase,
    .navbar {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Override container margins for containers that have hero sections */
    .dijital-okuryazarlik-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure hero content remains centered */
    .hero-content {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Small mobile margins for specific content sections only */
@media (max-width: 576px) {
    /* Container margins */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Specific content sections that should have margins */
    .col-lg-8,
    .col-lg-10,
    .dijital-okuryazarlik-content,
    .about-us-content,
    .contact-content,
    .support-content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Content sections within main - but exclude containers that have hero sections */
    main > div:not(.showcase) {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Override padding for containers that have dijital-okuryazarlik-container */
    main > div:not(.showcase) .dijital-okuryazarlik-container {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    
    /* Ensure headers remain full width */
    .hero-image-section,
    .showcase,
    .navbar {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Override container margins for containers that have hero sections */
    .dijital-okuryazarlik-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure hero content remains centered */
    .hero-content {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
} 

 