/* style.css */
:root {
    --primary: #003366;
    --secondary: #002244;
    --accent: #ffd700;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    font-size: 0.875rem;
}
.top-bar a:hover {
    color: var(--accent) !important;
}
.lang-select {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    font-size: 0.8rem;
}
.lang-select:focus {
    box-shadow: none;
    border-color: var(--accent);
}

/* Navbar */
.navbar {
    background: var(--primary) !important;
}
.navbar-brand span {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}
.dropdown-menu {
    background: var(--secondary);
    border: none;
    border-radius: 0.5rem;
}
.dropdown-item {
    color: #ccc;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}
.dropdown-item:hover {
    background: var(--primary);
    color: var(--accent);
}

/* Hero */
.hero {
    min-height: 500px;
}
.hero h1 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.btn-warning {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}
.btn-warning:hover {
    background: #e6c200;
    transform: translateY(-2px);
    color: var(--primary);
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: var(--primary);
}
.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--accent);
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hover-shadow:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}
.card:hover .card-img-top {
    transform: scale(1.05);
}
.card-title {
    font-weight: 600;
}

/* Yayınlar */
.pub-cover {
    width: 180px;
    height: 240px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.pub-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

/* Footer */
footer a {
    transition: color 0.3s;
}
.text-light-50 {
    color: #aaa !important;
}
.hover-white:hover {
    color: #fff !important;
}
footer hr {
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
}


.content-body p{
	text-align: justify !important;
    text-indent: 50px !important;
}