:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --secondary: #f59e0b;
    --dark: #1f2937;
    --muted: #6b7280;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--dark);
    background-color: var(--white);
}

.hero-section {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(15, 118, 110, 0.92), rgba(17, 94, 89, 0.82)), url('/images/hero-denizli.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: -16px;
}

.hero-content {
    max-width: 780px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 19px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-main,
.btn-outline-main {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-main {
    background: var(--secondary);
    color: #111827;
}

    .btn-main:hover {
        background: #fbbf24;
        color: #111827;
    }

.btn-outline-main {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
}

    .btn-outline-main:hover {
        background: var(--white);
        color: var(--primary-dark);
    }

.info-section,
.content-section {
    padding: 70px 0;
}

.light-bg {
    background: var(--light);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

    .section-title h2,
    .section-header h2 {
        font-weight: 800;
        color: var(--dark);
    }

    .section-title p {
        color: var(--muted);
        font-size: 17px;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

    .stat-card h3 {
        font-size: 34px;
        color: var(--primary);
        font-weight: 800;
    }

    .stat-card p {
        margin: 0;
        color: var(--muted);
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.section-label {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.section-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.content-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: 0.2s ease;
}

    .content-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    }

.card-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

.food-image {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.card-image span {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
}

.card-body {
    padding: 24px;
}

    .card-body h3 {
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .card-body p {
        color: var(--muted);
        line-height: 1.6;
    }

    .card-body small {
        color: var(--primary);
        font-weight: 700;
    }

.post-date {
    display: inline-block;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .stats-grid,
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 0;
    }

        .hero-content h1 {
            font-size: 34px;
        }

    .stats-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }
}
.navbar {
    min-height: 72px;
}

.navbar-brand {
    letter-spacing: -0.02em;
}

.nav-link {
    font-weight: 600;
    color: #374151 !important;
}

    .nav-link:hover {
        color: #0f766e !important;
    }

.site-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 34px 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-content p {
        margin: 6px 0 0;
        color: rgba(255, 255, 255, 0.72);
    }

    .footer-content span {
        color: rgba(255, 255, 255, 0.72);
    }
.page-hero,
.detail-hero {
    background: linear-gradient(120deg, #0f766e, #115e59);
    color: #ffffff;
    padding: 72px 0;
}

    .page-hero h1,
    .detail-hero h1 {
        font-size: 44px;
        font-weight: 800;
        margin-top: 14px;
    }

    .page-hero p,
    .detail-hero p {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 18px;
    }

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

    .search-box input {
        flex: 1;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 12px 14px;
        outline: none;
    }

        .search-box input:focus {
            border-color: #0f766e;
        }

    .search-box button,
    .search-box a {
        border: 0;
        border-radius: 12px;
        padding: 12px 18px;
        font-weight: 700;
        text-decoration: none;
    }

    .search-box button {
        background: #0f766e;
        color: #ffffff;
    }

    .search-box a {
        background: #f3f4f6;
        color: #374151;
    }

.read-more-link {
    color: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

    .read-more-link:hover {
        text-decoration: underline;
    }

.empty-message {
    grid-column: 1 / -1;
    padding: 40px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.back-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 16px;
}

    .back-link:hover {
        color: #fbbf24;
    }

.detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.detail-image {
    height: 280px;
}

.detail-content {
    padding: 34px;
}

    .detail-content h2 {
        font-weight: 800;
        margin-bottom: 16px;
    }

    .detail-content p {
        color: #4b5563;
        line-height: 1.8;
        font-size: 17px;
    }

.detail-info {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 576px) {
    .search-box {
        flex-direction: column;
    }

    .page-hero h1,
    .detail-hero h1 {
        font-size: 34px;
    }
}
.food-hero {
    background: linear-gradient(120deg, #92400e, #b45309);
}
.blog-hero {
    background: linear-gradient(120deg, #1e3a8a, #0f766e);
}

.blog-list {
    display: grid;
    gap: 20px;
}

.blog-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: 0.2s ease;
}

    .blog-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.11);
    }

.blog-date {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .blog-date span {
        font-size: 30px;
        font-weight: 800;
        line-height: 1;
    }

    .blog-date small {
        font-weight: 700;
    }

.blog-content h2 {
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-content p {
    color: #6b7280;
    line-height: 1.7;
}

.blog-detail {
    max-width: 880px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

    .blog-detail h2 {
        font-weight: 800;
        margin-bottom: 18px;
    }

.lead-text {
    font-size: 20px;
    color: #0f766e;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-detail-content {
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
    white-space: pre-line;
}

@media (max-width: 576px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-detail {
        padding: 28px;
    }
}
.contact-hero {
    background: linear-gradient(120deg, #0f766e, #1e3a8a);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

    .contact-info-card h2,
    .contact-form-card h2 {
        font-weight: 800;
        margin-bottom: 16px;
    }

    .contact-info-card p {
        color: #6b7280;
        line-height: 1.8;
        margin-bottom: 24px;
    }

.contact-info-item {
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 4px;
}

    .contact-info-item strong {
        color: #111827;
    }

    .contact-info-item span {
        color: #6b7280;
    }

.form-group-custom {
    margin-bottom: 18px;
}

    .form-group-custom label {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: #374151;
    }

    .form-group-custom input,
    .form-group-custom textarea {
        width: 100%;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 13px 14px;
        outline: none;
        transition: 0.2s ease;
    }

        .form-group-custom input:focus,
        .form-group-custom textarea:focus {
            border-color: #0f766e;
            box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.10);
        }

.btn-submit {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #0f766e;
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 800;
    transition: 0.2s ease;
}

    .btn-submit:hover {
        background: #115e59;
    }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.admin-login-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f766e, #1e3a8a);
    padding: 60px 16px;
}

.admin-login-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.admin-login-header {
    margin-bottom: 24px;
    text-align: center;
}

    .admin-login-header span {
        display: inline-block;
        color: #0f766e;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .admin-login-header h1 {
        font-weight: 800;
        margin-bottom: 8px;
    }

    .admin-login-header p {
        color: #6b7280;
        margin: 0;
    }

.admin-login-info {
    margin-top: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 4px;
    font-size: 14px;
}

    .admin-login-info span {
        color: #6b7280;
    }

.admin-dashboard {
    padding: 70px 0;
    background: #f8fafc;
    min-height: calc(100vh - 72px);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

    .admin-topbar h1 {
        font-weight: 800;
        margin: 8px 0;
    }

    .admin-topbar p {
        color: #6b7280;
        margin: 0;
    }

.btn-admin-logout {
    background: #dc2626;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 12px;
}

    .btn-admin-logout:hover {
        background: #b91c1c;
        color: #ffffff;
    }

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.admin-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

    .admin-stat-card span {
        color: #6b7280;
        font-weight: 700;
    }

    .admin-stat-card h2 {
        color: #0f766e;
        font-size: 38px;
        font-weight: 800;
        margin: 10px 0 0;
    }

.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.admin-menu-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 26px;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

    .admin-menu-card:hover {
        transform: translateY(-3px);
        color: #111827;
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.11);
    }

    .admin-menu-card h3 {
        font-weight: 800;
        margin-bottom: 10px;
    }

    .admin-menu-card p {
        color: #6b7280;
        margin: 0;
    }

@media (max-width: 992px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}
.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-admin-primary,
.btn-admin-secondary,
.btn-admin-danger {
    display: inline-block;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
}

.btn-admin-primary {
    background: #0f766e;
    color: #ffffff;
}

    .btn-admin-primary:hover {
        background: #115e59;
        color: #ffffff;
    }

.btn-admin-secondary {
    background: #e5e7eb;
    color: #374151;
}

    .btn-admin-secondary:hover {
        background: #d1d5db;
        color: #111827;
    }

.btn-admin-danger {
    background: #dc2626;
    color: #ffffff;
}

    .btn-admin-danger:hover {
        background: #b91c1c;
        color: #ffffff;
    }

.admin-table-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow-x: auto;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th,
    .admin-table td {
        padding: 16px;
        border-bottom: 1px solid #e5e7eb;
        vertical-align: middle;
    }

    .admin-table th {
        background: #f8fafc;
        color: #374151;
        font-weight: 800;
    }

    .admin-table td {
        color: #4b5563;
    }

.table-btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 6px;
    font-size: 14px;
}

    .table-btn.edit {
        background: #dbeafe;
        color: #1d4ed8;
    }

    .table-btn.delete {
        background: #fee2e2;
        color: #b91c1c;
    }

.admin-form-card {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.admin-form-header {
    margin-bottom: 26px;
}

    .admin-form-header h1 {
        font-weight: 800;
        margin: 8px 0;
    }

    .admin-form-header p {
        color: #6b7280;
        margin: 0;
    }

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
    font-weight: 700;
}

    .form-check-custom input {
        width: 18px;
        height: 18px;
    }

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.delete-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 18px;
    padding: 22px;
}

    .delete-warning h3 {
        font-weight: 800;
        color: #991b1b;
    }

    .delete-warning p {
        color: #7f1d1d;
        line-height: 1.7;
    }
.navbar .btn-success,
.navbar .btn-success:visited,
.navbar .btn-success:focus {
    color: #ffffff !important;
    background-color: #0f766e !important;
    border-color: #0f766e !important;
}

    .navbar .btn-success:hover {
        color: #ffffff !important;
        background-color: #115e59 !important;
        border-color: #115e59 !important;
    }
.message-detail-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
}

.message-detail-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .message-detail-row strong {
        color: #111827;
    }

    .message-detail-row span {
        color: #4b5563;
    }

.message-box {
    margin-top: 18px;
}

    .message-box strong {
        display: block;
        margin-bottom: 8px;
    }

    .message-box p {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 16px;
        color: #374151;
        line-height: 1.7;
        white-space: pre-line;
    }
.real-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .real-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
    }

.detail-image.real-image {
    min-height: 340px;
}
.hero-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(15, 118, 110, 0.96) 0%, rgba(15, 118, 110, 0.82) 42%, rgba(15, 118, 110, 0.28) 100%), url('/images/hero-pamukkale.jpg');
    background-size: cover;
    background-position: center right;
    color: #ffffff;
    margin-top: 0;
    overflow: hidden;
}

    .hero-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12), transparent 28%), linear-gradient(to bottom, rgba(0,0,0,0.06), rgba(0,0,0,0.18));
        pointer-events: none;
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

.hero-content {
    max-width: 760px;
    padding: 92px 0;
}

    .hero-content h1 {
        font-size: 62px;
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -0.04em;
        margin-bottom: 22px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 1.7;
        max-width: 680px;
        color: rgba(255,255,255,0.94);
    }

.hero-badge {
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.32);
}

.btn-main {
    background: #f59e0b;
    color: #111827;
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
}

    .btn-main:hover {
        background: #fbbf24;
        transform: translateY(-2px);
    }

.btn-outline-main {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
}

    .btn-outline-main:hover {
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        background: linear-gradient(120deg, rgba(15, 118, 110, 0.96), rgba(17, 94, 89, 0.88)), url('/images/hero-pamukkale.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        padding: 70px 0;
    }

        .hero-content h1 {
            font-size: 40px;
        }

        .hero-content p {
            font-size: 17px;
        }
}
/* Kart görsel ve metin düzeni */
.content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 220px;
    width: 100%;
    flex-shrink: 0;
}

.real-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .card-body h3 {
        min-height: 52px;
    }

    .card-body p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-body .mt-3,
    .card-body small {
        margin-top: auto;
    }

/* Kartların daha premium görünmesi */
.content-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

    .content-card:hover .real-image {
        transform: scale(1.04);
    }

.card-image {
    transition: transform 0.25s ease;
}

/* Görselin kart dışına taşmasını engeller */
.content-card {
    overflow: hidden;
}
/* Blog kart görsel düzeni */
.blog-card-with-image {
    display: grid;
    grid-template-columns: 280px 1fr;
    padding: 0;
    overflow: hidden;
}

.blog-card-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

    .blog-card-placeholder span {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        background: #ffffff;
        color: #0f766e;
        font-size: 34px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.blog-card-with-image .blog-content {
    padding: 28px;
}

.blog-meta {
    margin-bottom: 10px;
}

    .blog-meta span {
        display: inline-block;
        background: #ecfdf5;
        color: #0f766e;
        border-radius: 999px;
        padding: 6px 12px;
        font-weight: 800;
        font-size: 13px;
    }

.blog-content h2 {
    font-size: 25px;
}

.blog-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Eski blog-date kutusu artık kullanılmasa da sorun çıkarmasın */
.blog-date {
    display: none;
}

@media (max-width: 768px) {
    .blog-card-with-image {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        min-height: 210px;
    }
}
/* Premium detay sayfaları */
.detail-cover {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #ffffff;
}

.detail-cover-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.detail-cover-fallback {
    background: linear-gradient(120deg, #0f766e, #1e3a8a);
}

.detail-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 118, 110, 0.45)), linear-gradient(to top, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.12));
}

.food-overlay {
    background: linear-gradient(90deg, rgba(92, 38, 10, 0.86), rgba(180, 83, 9, 0.45)), linear-gradient(to top, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.10));
}

.detail-cover-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.detail-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 8px 15px;
    font-weight: 800;
    margin-bottom: 18px;
}

.detail-cover h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 900;
    max-width: 850px;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.detail-cover p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.detail-main-card,
.detail-side-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.detail-main-card {
    padding: 40px;
}

    .detail-main-card h2 {
        font-weight: 900;
        margin: 10px 0 18px;
    }

    .detail-main-card p {
        color: #374151;
        font-size: 18px;
        line-height: 1.9;
    }

.detail-side-card {
    padding: 28px;
    position: sticky;
    top: 96px;
}

    .detail-side-card h3 {
        font-weight: 900;
        margin-bottom: 18px;
    }

    .detail-side-card .detail-info {
        display: grid;
        gap: 5px;
        padding: 15px 0;
        border-top: 1px solid #e5e7eb;
    }

        .detail-side-card .detail-info strong {
            color: #111827;
        }

        .detail-side-card .detail-info span {
            color: #6b7280;
        }

.detail-full-btn {
    width: 100%;
    text-align: center;
    margin-top: 18px;
}

@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-side-card {
        position: static;
    }

    .detail-cover h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .detail-cover {
        min-height: 380px;
    }

    .detail-cover-content {
        padding: 60px 0;
    }

    .detail-cover h1 {
        font-size: 34px;
    }

    .detail-main-card {
        padding: 28px;
    }
}
/* Blog detay sayfası */
.blog-detail-cover {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    overflow: hidden;
}

.blog-detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.blog-detail-fallback {
    background: linear-gradient(120deg, #1e3a8a, #0f766e);
}

.blog-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 118, 110, 0.34)), linear-gradient(to top, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.08));
}

.blog-detail-cover-content {
    position: relative;
    z-index: 2;
    padding: 86px 0;
}

.blog-detail-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

    .blog-detail-meta span {
        display: inline-block;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.28);
        backdrop-filter: blur(8px);
        padding: 7px 13px;
        border-radius: 999px;
        font-weight: 800;
        font-size: 13px;
    }

.blog-detail-cover h1 {
    max-width: 950px;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.blog-detail-cover p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.7;
}

.blog-reading-section {
    background: #f8fafc;
}

.blog-reading-card {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 46px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.blog-reading-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 24px;
    margin-bottom: 28px;
}

    .blog-reading-header h2 {
        font-weight: 900;
        margin: 10px 0 14px;
    }

    .blog-reading-header p {
        color: #0f766e;
        font-size: 19px;
        line-height: 1.7;
        font-weight: 650;
        margin: 0;
    }

.blog-reading-content {
    color: #374151;
    font-size: 18px;
    line-height: 1.95;
    white-space: pre-line;
}

.blog-reading-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-detail-cover h1 {
        font-size: 40px;
    }

    .blog-detail-cover p {
        font-size: 17px;
    }

    .blog-reading-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .blog-detail-cover {
        min-height: 420px;
    }

    .blog-detail-cover-content {
        padding: 64px 0;
    }

    .blog-detail-cover h1 {
        font-size: 34px;
    }

    .blog-reading-footer {
        justify-content: flex-start;
    }
}
/* Admin panel son rötuşlar */
.admin-dashboard {
    background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 32%), #f8fafc;
}

.admin-summary-box {
    background: linear-gradient(120deg, #0f766e, #1e3a8a);
    color: #ffffff;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

    .admin-summary-box h3 {
        font-weight: 900;
        margin-bottom: 8px;
    }

    .admin-summary-box p {
        max-width: 760px;
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.7;
    }

.admin-summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

    .admin-summary-tags span {
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.22);
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 800;
        font-size: 13px;
        white-space: nowrap;
    }

.admin-stat-card {
    transition: 0.2s ease;
}

    .admin-stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.11);
    }

.admin-table-card {
    border-radius: 24px;
}

.admin-table th {
    white-space: nowrap;
}

.admin-table tr:hover td {
    background: #f8fafc;
}

.admin-table td:first-child {
    font-weight: 700;
    color: #111827;
}

.table-btn {
    transition: 0.2s ease;
}

    .table-btn:hover {
        transform: translateY(-1px);
    }

.admin-form-card {
    border-radius: 28px;
}

.form-group-custom input,
.form-group-custom textarea {
    background: #ffffff;
}

    .form-group-custom input::placeholder,
    .form-group-custom textarea::placeholder {
        color: #9ca3af;
    }

.alert {
    border-radius: 14px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .admin-summary-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-summary-tags {
        justify-content: flex-start;
    }

    .admin-table {
        min-width: 760px;
    }
}
.navbar .btn-success {
    border-radius: 999px;
    padding: 8px 16px !important;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.18);
}
/* Son responsive düzeltmeler */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
}

.navbar-toggler {
    border: 0;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 14px;
    }

    .navbar-nav {
        gap: 4px;
    }

    .navbar .btn-success {
        display: inline-block;
        margin-top: 8px;
    }

    .section-header {
        align-items: flex-start;
    }

    .admin-topbar {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .info-section,
    .content-section {
        padding: 52px 0;
    }

    .page-hero,
    .detail-hero {
        padding: 56px 0;
    }

        .page-hero h1,
        .detail-hero h1 {
            font-size: 34px;
        }

        .page-hero p,
        .detail-hero p {
            font-size: 16px;
        }

    .search-box {
        flex-direction: column;
    }

        .search-box button,
        .search-box a {
            width: 100%;
            text-align: center;
        }

    .admin-actions {
        width: 100%;
    }

        .admin-actions a {
            width: 100%;
            text-align: center;
        }

    .form-actions {
        justify-content: stretch;
    }

        .form-actions a,
        .form-actions button {
            width: 100%;
            text-align: center;
        }

    .admin-form-card {
        padding: 26px;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .detail-cover h1,
    .blog-detail-cover h1 {
        font-size: 32px;
    }

    .hero-content p,
    .detail-cover p,
    .blog-detail-cover p {
        font-size: 16px;
    }

    .stats-grid,
    .card-grid,
    .admin-stats-grid,
    .admin-menu-grid {
        grid-template-columns: 1fr !important;
    }

    .content-card,
    .blog-card,
    .admin-stat-card,
    .admin-menu-card {
        border-radius: 18px;
    }

    .card-image {
        height: 200px;
    }

    .contact-info-card,
    .contact-form-card,
    .blog-reading-card,
    .detail-main-card,
    .detail-side-card {
        padding: 24px;
        border-radius: 20px;
    }

    .message-detail-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}