/* ==========================================================================
   AEGEAN TURN - LOGBOOK SPECIFIC STYLES
   Extends unified-style.css with editorial archival details
   ========================================================================== */

/* Import the unified style */
@import url('unified-style.css');

/* Logbook Hero Specifics */
#hero.logbook-hero h1 {
    color: var(--cycladic-white);
}

#hero.logbook-hero p {
    color: var(--text-light);
}

#hero.logbook-hero::before {
    background-image: linear-gradient(rgba(7, 20, 36, 0.45), rgba(7, 20, 36, 0.35)), url('../img/sifnos-chapel.jpg');
}

.hero-text-box {
    background-color: rgba(7, 20, 36, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Timeline Layout Adjustments */
.logbook-timeline .synergy-panel {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

.logbook-timeline .synergy-panel .entry-image {
    max-width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.logbook-timeline .synergy-panel .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.logbook-timeline .synergy-panel .image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* Typography enhancements for about section */
.drop-cap {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.75;
    margin-right: 0.15em;
    margin-bottom: -0.05em;
    color: var(--sunset-terracotta);
}

#about .container p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.cta-group {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-group .cta-button {
    flex: 1;
    min-width: 180px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0;
}

.intro-divider {
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--border-light), transparent);
    margin: 4rem 0;
    opacity: 0.6;
}