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

/* Planner Specific Styles */
/* Planner Specific Styles */
/* Hero Section inherits from Basica (100vh) */

/* 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: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
    transition: transform 0.3s;
    border-radius: 10px;
}

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

.gallery-item-marinero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Timeline - Crystal Path Style */
.marinero-timeline {
    position: relative;
    padding-left: 30px;
}

.marinero-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #A5F2F3 10%, #fff 50%, #A5F2F3 90%, rgba(255, 255, 255, 0));
    box-shadow: 0 0 20px var(--accent-color);
    border-radius: 2px;
}

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

.step-time {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
    font-size: 1.2rem;
    padding-left: 60px;
    /* Align with content */
}

/* Diamond Icons */
.step-icon {
    position: absolute;
    left: -18px;
    /* Center on line */
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff, #A5F2F3);
    border: 2px solid #fff;
    box-shadow: 0 0 15px var(--accent-color);
    transform: rotate(45deg);
    /* Diamond shape */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon i {
    transform: rotate(-45deg);
    /* Correct icon rotation */
    font-size: 1.2rem;
    color: var(--primary-color);
}

.step-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.1);
    border-radius: 0 20px 20px 20px;
    /* Unique shape */
    padding: 20px;
    margin-left: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 40px rgba(0, 45, 98, 0.15);
}

.step-content::before {
    /* Little connection triangle */
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.6);
}

.step-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    display: inline-block;
}

.step-info p {
    color: #444;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    margin: 0;
}