/* Haberler sayfası için ek stiller */
img {
    border-radius: 28px;
}

.news {
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.news.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.news h1 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 1rem;
}

.news-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.35s ease;
}

.news-card:hover img {
    transform: scale(1.03);
}

.news-card h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.read-more-btn {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.55rem 1rem;
    background-color: #FFD700;
    color: #001f3f;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.read-more-btn:hover {
    background-color: #FFC107;
    transform: translateX(4px);
}

.news .cta-button {
    display: block;
    margin: 2rem auto 0;
}

/* Genel stiller index.css'ten devralınır */

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #FFD700;
    color: #001f3f;
    border: none;
    padding: 0.9rem 1.2rem;
    border-radius: 35px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-fixed:hover {
    transform: translateY(-3px);
    background-color: #FFC107;
}