@import url('../../harry-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: 15px 15px 40px 15px;
    /* Polaroid style bottom padding */
    border: 1px solid #ccc;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.3s;
    border-radius: 0;
    background-color: #f0f0f0;
}

.gallery-item-marinero:nth-child(even) {
    transform: rotate(2deg);
}

.gallery-item-marinero:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item-marinero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #000;
    filter: sepia(30%);
    /* Old photo look */
}

/* Timeline - Marauder's Map Footsteps Style */
.marinero-timeline {
    position: relative;
    padding-left: 50px;
}

.marinero-timeline::before {
    /* Ink Footsteps Path */
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 2px;
    background: transparent;
    border-left: 2px dashed #000;
    /* Dashed ink line */
}

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

.step-time {
    font-family: 'MedievalSharp', cursive;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
    font-size: 1.2rem;
    padding-left: 0;
}

.step-icon {
    position: absolute;
    left: -60px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: #fff8dc;
    /* Parchment */
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

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

.step-content {
    background: #fff8dc;
    border: 1px solid #d4c5a9;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 15px;
    position: relative;
    background-image: url('https://www.transparenttextures.com/patterns/aged-paper.png');
}

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

.step-content h3 {
    font-family: 'MedievalSharp', cursive;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    display: inline-block;
}

.step-info p {
    color: #333;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    margin: 0;
}