/* Anadolu Cenaze Fonu — Custom Styles */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Page content prose */
.prose h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: #1a1a1a; }
.prose h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; color: #333; }
.prose p { margin-bottom: 1rem; line-height: 1.75; color: #4a4a4a; }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.25rem; line-height: 1.75; color: #4a4a4a; }
.prose a { color: #c8102e; text-decoration: underline; }
.prose a:hover { color: #8b0a1e; }

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.form-input:focus {
    outline: none;
    border-color: #c8102e;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

/* Form label */
.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}
.form-label-sub {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #888;
}

/* Section card */
.section-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.section-card-header {
    background: #c8102e;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    margin: -1.5rem -1.5rem 1.25rem -1.5rem;
    border-radius: 0.75rem 0.75rem 0 0;
}

/* Accordion */
.accordion-item { border-bottom: 1px solid #e8e8e8; }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
}
.accordion-btn:hover { color: #c8102e; }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content.open { max-height: 500px; }
.accordion-icon { transition: transform 0.3s; }
.accordion-icon.open { transform: rotate(180deg); }

/* Nav active */
.active { color: #c8102e !important; }

/* Hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #c8102e 0%, #8b0a1e 100%);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }
