/*Theme Name: oceanly-01
Description:VR
Author:VR
Template: oceanly
Version: 1.0.0
*/

.footer-bottom-area {
	background-color: #ff0000;
	color: #fff;
}



/* Style pour le conteneur YARPP */
.yarpp.yarpp-related.yarpp-related-website.yarpp-template-list {
    padding: 0s;
    margin: 0;
}
/* Titre principal */
.yarpp-related h3 {
	text-transform: none !important;
    color: #2d3748 !important;
    font-size: 26px !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.yarpp-related h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Liste ordonnée */
.yarpp ol {
    list-style: none;
    counter-reset: destination-counter;
    padding: 0;
    margin: 15px 0 0 0;
    display: grid;
    gap: 15px;
}

/* Items de la liste */
.yarpp ol li {
    counter-increment: destination-counter;
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 70px;
    cursor: pointer;
}

.yarpp ol li:hover {
    transform: translateX(8px);
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

/* Numéro circulaire */
.yarpp ol li::before {
    content: counter(destination-counter);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* Liens */
.yarpp ol li a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 25px 18px 70px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .yarpp.yarpp-related.yarpp-related-website.yarpp-template-list {
        padding: 20px;
    }
    
    .yarpp h3 {
        font-size: 22px;
    }
    
    .yarpp ol li {
        padding: 15px 20px 15px 65px;
    }
    
    .yarpp ol li::before {
        width: 35px;
        height: 35px;
        font-size: 14px;
        left: 15px;
    }
    
    .yarpp ol li a {
        font-size: 16px;
    }
}