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

/* Planner Specific Styles */

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

.gallery-item-marinero {
    width: 250px;
    height: 300px;
    background: #fff;
    padding: 5px;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
    border-radius: 0;
}

.gallery-item-marinero:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
    box-shadow: 12px 12px 0px var(--primary-color);
}

.gallery-item-marinero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #000;
    filter: contrast(120%) saturate(120%);
}

/* Timeline - Comic Panels Style */
.marinero-timeline {
    position: relative;
    padding-left: 60px;
}

.marinero-timeline::before {
    /* Thick Comic Line */
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    height: 100%;
    width: 6px;
    background: #fff;
    border: 2px solid #000;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

.step-time {
    font-family: 'Bangers', cursive;
    color: #fff;
    /* On dark bg */
    margin-bottom: 5px;
    display: block;
    font-size: 1.5rem;
    padding-left: 0;
    text-shadow: 2px 2px 0px #000;
    transform: rotate(-2deg);
}

.step-icon {
    position: absolute;
    left: -60px;
    top: 5px;
    width: 44px;
    height: 44px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 0;
    /* Square icons */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotate(45deg);
    /* Diamond shape */
    box-shadow: 3px 3px 0px var(--primary-color);
}

.step-icon i {
    font-size: 1.2rem;
    color: #fff;
    transform: rotate(-45deg);
    /* Counter rotate icon */
}

.step-content {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px var(--secondary-color);
    border-radius: 0;
    padding: 15px;
    position: relative;
    color: #000;
}

.step-content::before {
    /* Comic speech bubble arrow */
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #000;
}

.step-content::after {
    /* Inner white arrow */
    content: '';
    position: absolute;
    top: 15px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #fff;
}

.step-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 5px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    display: inline-block;
}

.step-info p {
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
}