/* Genel Stiller */
body {
    font-family: 'Georgia', serif;
    background-color: #f4f3f0;
    margin: 0;
    padding: 0;
}
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Başlık Stili */
.main-header {
    background: url('images/header-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.header-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 2rem;
}
.header-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.header-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Navigasyon Stili */
.navbar {
    background: transparent;
    padding: 1rem 0;
    z-index: 3;
}
.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #e3b707 !important;
    transition: color 0.3s ease;
}
.navbar-brand:hover {
    color: #ffdd57 !important;
}
.navbar-nav .nav-item .nav-link {
    color: #b8de10;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 0;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-nav .nav-item .nav-link i {
    font-size: 1.3rem;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:active,
.navbar-nav .nav-item .nav-link.active {
    background-color: #10c719;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.navbar-nav .nav-item .nav-link.active {
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}
.navbar-toggler {
    border: none;
    padding: 0.6rem 0.75rem;
    transition: transform 0.3s ease;
    background-color: transparent;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler:hover {
    transform: rotate(90deg) scale(1.1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 992px) {
    .navbar-nav {
        background: linear-gradient(45deg, rgba(243, 156, 18, 0.8), rgba(211, 84, 0, 0.8));
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        transition: max-height 0.4s ease-in-out;
        overflow: hidden;
        max-height: 0;
    }
    .navbar-collapse.show .navbar-nav {
        max-height: 500px;
    }
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1);
        box-shadow: none;
    }
}

/* İçerik Alanı Stilleri */
.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.content-area h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.content-area p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.content-area img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}
.content-area h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}
.content-area iframe {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}
.content-area .text-center {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 1rem;
}

/* Duyurular Stilleri */
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card-title {
    color: #343a40;
    font-family: 'Georgia', serif;
}
.card-text {
    color: #6c757d;
}
.list-unstyled li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.list-unstyled li i {
    margin-right: 0.5rem;
}

/* Etiket Bulutu Stilleri */
#etiket-bulutu .badge {
    font-size: 14px;
    padding: 8px 12px;
    margin: 5px;
    background-color: #f39c12;
    color: #fff;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}
#etiket-bulutu .badge:hover {
    background-color: #e67e22;
}

/* Özlü Sözler Stilleri */
blockquote {
    background-color: transparent;
    padding: 15px;
    border-left: 5px solid #538ec9;
    border-radius: 5px;
    margin-bottom: 15px;
}
blockquote p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}
.blockquote-footer {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    text-align: right;
}

/* Sidebar Stilleri */
.sidebar .card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}
.sidebar .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.sidebar .card-body {
    padding: 1.5rem;
}
.sidebar .card .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
    padding: 10px 15px;
    border-left: 5px solid #f39c12;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #343a40;
}

/* Footer Stilleri */
footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
.social-icons a {
    font-size: 24px;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
    color: #fff;
    margin-left: 1rem;
}
.social-icons a:hover {
    transform: scale(1.2);
    color: #f39c12;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .col-md-3 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .sidebar .card {
        margin-bottom: 1rem;
        border-radius: 0;
        box-shadow: none;
    }
    .sidebar .card .card-title {
        font-size: 1.2rem;
        padding: 10px;
        border-left: 5px solid #ffa500;
    }
    #etiket-bulutu .badge {
        font-size: 0.9rem;
        padding: 5px 8px;
        margin: 3px;
    }
    blockquote p {
        font-size: 1rem;
    }
    .sidebar .card-body {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    .header-content p {
        font-size: 1rem;
    }
    .content-area h2 {
        font-size: 2rem;
    }
    .content-area p {
        font-size: 1rem;
    }
}

/* Buton Stilleri */
.btn-primary {
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.5);
}
.btn-primary:active {
    background-color: #d35400;
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.btn-custom {
    background-color: #f39c12; /* Turuncu */
    color: #fff; /* Beyaz */
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-custom:hover {
    background-color: #e67e22; /* Daha koyu turuncu */
    transform: translateY(-5px);
}

/* Düzenleyici Stilleri */
#editor-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#editor-iframe {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
#save-button {
    margin-top: 20px;
}

.ozel-footer {
  background-color: transparent; /* Şeffaf arka plan */
  color: #888; /* Açık gri yazı rengi */
  padding: 8px; /* Daha az iç boşluk */
  font-size: 12px; /* Daha küçük yazı boyutu */
  text-align: left; /* Yazıyı sola hizala */
  border-top: 1px dashed #ddd; /* Kesikli üst çizgi */
}

.card-ozlusoz {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.card-ozlusoz blockquote {
  color: #333;
  margin-bottom: 15px;
}

.card-ozlusoz .ozel-footer {
  font-size: 14px;
  color: #555;
  text-align: center;
}