/* Nedir Sayfası Özel CSS */

/* Bahçe Kartları */
.nedir-garden-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(112, 22, 126, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nedir-garden-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #70167e, #9c27b0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nedir-garden-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(112, 22, 126, 0.15);
    border-color: #70167e;
}

.nedir-garden-card:hover::before {
    opacity: 1;
}

.garden-icon {
    margin-bottom: 1.5rem;
}

.garden-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.garden-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #70167e;
    margin-bottom: 0.5rem;
}

.garden-age {
    font-size: 1rem;
    font-weight: 600;
    color: #9c27b0;
    margin-bottom: 1rem;
    background: rgba(156, 39, 176, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.garden-desc {
    font-size: 1rem;
    color: #25283e;
    line-height: 1.6;
    margin: 0;
}

/* Amaç Kartları */
.nedir-purpose-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(112, 22, 126, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nedir-purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(112, 22, 126, 0.12);
    border-color: #70167e;
}

.purpose-icon {
    margin-bottom: 1.5rem;
}

.purpose-emoji {
    font-size: 2.5rem;
    display: block;
}

.purpose-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #70167e;
    margin-bottom: 1rem;
}

.purpose-desc {
    font-size: 1rem;
    color: #25283e;
    line-height: 1.6;
    margin: 0;
}

/* Vizyon ve Misyon Kartları */
.nedir-vision-mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(112, 22, 126, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nedir-vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(112, 22, 126, 0.12);
    border-color: #70167e;
}

.vision-mission-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vision-mission-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.vision-mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #70167e;
    margin: 0;
}

.vision-mission-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #25283e;
    line-height: 1.6;
    margin: 0;
    padding: 1.5rem;
    background: rgba(112, 22, 126, 0.05);
    border-radius: 12px;
    border-left: 4px solid #70167e;
}

.vision-mission-content {
    font-size: 1rem;
    color: #25283e;
    line-height: 1.6;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.mission-list li {
    padding: 0.5rem 0;
    color: #70167e;
    font-weight: 600;
}

/* İlke Kartları */
.nedir-principle-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(112, 22, 126, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nedir-principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(112, 22, 126, 0.12);
    border-color: #70167e;
}

.principle-icon {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.principle-emoji {
    font-size: 2.5rem;
    display: block;
}

.principle-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #70167e;
    margin-bottom: 1rem;
}

.principle-desc {
    font-size: 1rem;
    color: #25283e;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nedir-garden-card,
    .nedir-purpose-card,
    .nedir-vision-mission-card,
    .nedir-principle-card {
        padding: 1.5rem;
    }

    .garden-emoji {
        font-size: 2.5rem;
    }

    .garden-title {
        font-size: 1.3rem;
    }

    .purpose-emoji,
    .principle-emoji {
        font-size: 2rem;
    }

    .purpose-title,
    .principle-title {
        font-size: 1.2rem;
    }

    .vision-mission-title {
        font-size: 1.3rem;
    }

    .vision-mission-quote {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .principle-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .nedir-garden-card,
    .nedir-purpose-card,
    .nedir-vision-mission-card,
    .nedir-principle-card {
        padding: 1.25rem;
    }

    .garden-emoji {
        font-size: 2rem;
    }

    .garden-title {
        font-size: 1.2rem;
    }

    .garden-age {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .purpose-emoji,
    .principle-emoji {
        font-size: 1.8rem;
    }

    .purpose-title,
    .principle-title {
        font-size: 1.1rem;
    }

    .vision-mission-title {
        font-size: 1.2rem;
    }

    .vision-mission-quote {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nedir-garden-card,
.nedir-purpose-card,
.nedir-vision-mission-card,
.nedir-principle-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover efektleri için smooth transition */
* {
    transition: all 0.3s ease;
}

/* Öğrenme Felsefesi Kartları */
.nedir-philosophy-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(112, 22, 126, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nedir-philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #70167e, #9c27b0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nedir-philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(112, 22, 126, 0.15);
    border-color: #70167e;
}

.nedir-philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.philosophy-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.philosophy-emoji {
    font-size: 2.5rem;
    display: block;
}

.philosophy-title-section {
    flex: 1;
}

.philosophy-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #70167e;
    margin-bottom: 0.5rem;
}

.philosophy-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #9c27b0;
    background: rgba(156, 39, 176, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    margin: 0;
}

.philosophy-content {
    font-size: 1rem;
    color: #25283e;
    line-height: 1.6;
}

.philosophy-desc {
    margin-bottom: 1rem;
}

.philosophy-desc:last-child {
    margin-bottom: 0;
}

/* Rehber Tip Kartları */
.nedir-guide-type-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(112, 22, 126, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nedir-guide-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(112, 22, 126, 0.12);
    border-color: #70167e;
}

.guide-type-icon {
    margin-bottom: 1.5rem;
}

.guide-type-emoji {
    font-size: 3rem;
    display: block;
}

.guide-type-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #70167e;
    margin-bottom: 1rem;
}

.guide-type-desc {
    font-size: 1rem;
    color: #25283e;
    line-height: 1.6;
    margin: 0;
}

/* Öğrenme Yaklaşım Kartı */
.nedir-learning-approach-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(112, 22, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.nedir-learning-approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #70167e, #9c27b0, #70167e);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.learning-approach-header {
    margin-bottom: 2rem;
}

.learning-approach-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #70167e;
    margin: 0;
}

.learning-approach-content {
    margin-bottom: 2rem;
}

.learning-approach-desc {
    font-size: 1.1rem;
    color: #25283e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learning-approach-desc:last-child {
    margin-bottom: 0;
}

.learning-approach-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(112, 22, 126, 0.05);
    border-radius: 16px;
    border-left: 6px solid #70167e;
}

.learning-approach-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #70167e;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.learning-approach-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(112, 22, 126, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(112, 22, 126, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 600;
    color: #70167e;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nedir-philosophy-card,
    .nedir-guide-type-card {
        padding: 1.5rem;
    }

    .philosophy-header {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .philosophy-title {
        font-size: 1.2rem;
    }

    .guide-type-emoji {
        font-size: 2.5rem;
    }

    .guide-type-title {
        font-size: 1.2rem;
    }

    .nedir-learning-approach-card {
        padding: 2rem;
    }

    .learning-approach-title {
        font-size: 1.5rem;
    }

    .learning-approach-quote blockquote {
        font-size: 1.1rem;
    }

    .learning-approach-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .nedir-philosophy-card,
    .nedir-guide-type-card {
        padding: 1.25rem;
    }

    .philosophy-title {
        font-size: 1.1rem;
    }

    .philosophy-subtitle {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
    }

    .guide-type-emoji {
        font-size: 2rem;
    }

    .guide-type-title {
        font-size: 1.1rem;
    }

    .nedir-learning-approach-card {
        padding: 1.5rem;
    }

    .learning-approach-title {
        font-size: 1.3rem;
    }

    .learning-approach-quote {
        padding: 1.5rem;
    }

    .learning-approach-quote blockquote {
        font-size: 1rem;
    }
}

/* Özel buton stilleri */
.vs-btn--style1 {
    background: linear-gradient(135deg, #70167e, #9c27b0);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.vs-btn--style1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 22, 126, 0.3);
    color: white;
    text-decoration: none;
}

.vs-btn--style2 {
    background: transparent;
    border: 2px solid #70167e;
    color: #70167e;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.vs-btn--style2:hover {
    background: #70167e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 22, 126, 0.3);
    text-decoration: none;
}
