/* Logbook Page Custom Stylesheet */

/* Custom Scrollbar for premium dark theme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0D0D0D;
}
::-webkit-scrollbar-thumb {
    background: #262626;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF6A00;
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Search bar styling */
.custom-input {
    transition: all 0.3s ease;
}
.custom-input:focus {
    outline: none;
    border-color: #FF6A00;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
    background-color: #1a1a1a;
}

/* Active Category Tab */
.tab-active {
    background-color: #FF6A00 !important;
    color: #0D0D0D !important;
    border-color: transparent !important;
}

/* Logbook Article Card Hovers */
.article-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 106, 0, 0.05);
}

/* Featured image aspect ratio container */
.image-zoom-container {
    overflow: hidden;
    position: relative;
}
.image-zoom-container img {
    transition: transform 0.5s ease;
}
.article-card:hover .image-zoom-container img {
    transform: scale(1.04);
}

/* Typography styles for article reading layout */
.reading-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5db; /* gray-300 */
}
.reading-content strong {
    color: #ffffff;
    font-weight: 700;
}
.reading-content em {
    color: #f3f4f6; /* gray-100 */
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
