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

/* Logbook specific styles */

#hero.logbook-hero h1 {
    color: #FFFFFF;
}

#hero.logbook-hero p {
    color: #FFFFFF;
}

#hero.logbook-hero::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/sifnos-chapel.jpg');
}

.hero-text-box {
    background-color: rgba(255, 255, 255, 0.15);
}

.logbook-timeline .synergy-panel {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

.logbook-timeline .synergy-panel .entry-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

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

.logbook-timeline .synergy-panel .image-grid img {
    width: 100%;
    border-radius: 8px;
}

.island-tags {
    margin-bottom: 1.5rem;
}

/* Typography enhancements for about section */
.drop-cap {
    font-size: 4em; /* Makes the letter bigger */
    font-weight: bold;
    float: left;
    line-height: 0.8; /* Adjusts line height for the larger letter */
    margin-right: 0.1em; /* Space between the big letter and the rest of the text */
    margin-bottom: -0.1em; /* Fine-tuning vertical alignment */
    color: var(--accent-orange); /* Use the accent color from the palette */
}

#about .container p {
    margin-bottom: 1.5em; /* Adds vertical space after each paragraph */
}

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

.cta-group .cta-button {
    flex: 1;
    text-align: center;
}

.intro-divider {
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--palette-ui-line), transparent);
    margin: 3rem 0;
}