﻿/* =========================================
   HAKKIMDA PAGE: Publications Section - Natural & Stylish
   Refined Academic Aesthetics
   ========================================= */

/* Light Background with Subtle Gradient */
.section-publications {
    background: linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.section-publications h2 {
    color: #2c3e50;
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-publications h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #800000;
    margin: 20px auto 0;
    opacity: 0.8;
}

/* Publications Grid */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Natural Card Design */
.publication-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.publication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(128, 0, 0, 0.1);
}

/* Year Badge - Minimalist */
.publication-card .pub-year {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #888;
    background: transparent !important;
    padding: 0;
    border: none !important;
}

.publication-card .pub-year::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-top: 5px;
}

/* Title Styling */
.publication-card h4 {
    color: #2c3e50;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 30px;
    /* Space for year */
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.publication-card:hover h4 {
    color: #800000;
}

/* Journal Name */
.publication-card .pub-journal {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* CTA Button - Soft Style */
.section-publications .btn-outline {
    border: 1px solid #dcdcdc;
    color: #555;
    background: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.section-publications .btn-outline:hover {
    border-color: #800000;
    color: #800000;
    background: #fff;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .section-publications {
        padding: 60px 0;
    }

    .section-publications h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .publications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .publication-card {
        padding: 25px;
        border-radius: 12px;
    }
}