/* WomenVerse - Web Sayfaları Stili */

:root {
    --primary-color: #eb3a81;
    --primary-dark: #c72f6a;
    --primary-light: #ff6ba5;
    --secondary-color: #9b59b6;
    --bg-color: #fff;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --spacing: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f9 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-color);
    box-shadow: var(--shadow);
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem var(--spacing);
    text-align: center;
    box-shadow: var(--shadow);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

nav a.active {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Content */
main {
    padding: 3rem var(--spacing);
}

main h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

main h3 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

main h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

section {
    margin-bottom: 2.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Boxes and Cards */
.warning-box, .info-box, .email-box, .contact-box, .acceptance-box {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.warning-box {
    background: #fff3cd;
    border-color: #ffc107;
}

.warning-box h3, .warning-box h4 {
    color: #856404;
}

.info-box {
    background: #e7f3ff;
    border-color: #2196f3;
}

.info-box h4 {
    color: #0d47a1;
}

.email-box {
    background: #f5f5f5;
    border-color: var(--primary-color);
}

.contact-box {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f9 100%);
    border-color: var(--secondary-color);
    text-align: center;
}

.acceptance-box {
    background: #e8f5e9;
    border-color: #4caf50;
}

.acceptance-box h3 {
    color: #2e7d32;
}

/* Email Template */
.email-template {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.email-template-editable {
    margin: 1rem 0;
}

.email-template-editable textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 200px;
    background: white;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.email-template-editable textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Steps */
.steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.step:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Data Categories */
.data-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-category {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

.data-category h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.data-category ul {
    margin-left: 1.2rem;
}

/* FAQ */
.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    margin-top: 0;
    color: var(--primary-dark);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Alternative Section */
.alternative-section {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.alternative-section h3 {
    color: #0d47a1;
    margin-top: 0;
}

/* Method Sections */
.method-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #fafafa;
    border-radius: var(--border-radius);
}

.method-section h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem var(--spacing);
    text-align: center;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 2rem 1rem;
    }

    main h2 {
        font-size: 1.8rem;
    }

    main h3 {
        font-size: 1.4rem;
    }

    nav {
        gap: 0.5rem;
    }

    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .data-list {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }

    header h1 {
        font-size: 1.6rem;
    }

    main h2 {
        font-size: 1.5rem;
    }

    .btn {
        display: block;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    header, footer, nav {
        display: none;
    }

    body {
        background: white;
    }

    .container {
        box-shadow: none;
    }

    main {
        padding: 1rem;
    }

    a {
        text-decoration: underline;
    }
}
