@import url('../../religiosa-basica/css/styles.css');

/* Planner Specific Styles */

/* Gallery (Homologated from Premium) */
.marinero-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gallery-item-marinero {
    width: 250px;
    height: 350px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-radius: 300px 300px 0 0;
    /* Arch shape window */
}

.gallery-item-marinero:hover {
    transform: translateY(-10px);
}

.gallery-item-marinero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 290px 290px 0 0;
    filter: sepia(10%) contrast(95%);
}

/* Timeline - Classical & Minimalist */
/* Timeline - Classical & Minimalist */
.marinero-timeline {
    position: relative;
    padding-left: 0;
    margin: 0 auto;
    max-width: 800px;
}

.marinero-timeline::before {
    /* Thin Gold Line */
    content: '';
    position: absolute;
    left: 29px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
    /* Space for line and icon */
}

.step-time {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.step-icon {
    position: absolute;
    left: -70px;
    /* Moves icon outside card to the timeline. 80px padding - 10px offset = 70px */
    top: 20px;
    /* Aligns with the first line of text inside the card */
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.step-content {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.step-content::before {
    /* Small arrow pointing to icon */
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #eee;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 400;
}

.step-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}