/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 02 2026 | 10:27:30 */
/* Container Styling */
selector {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* Adjust as needed */
    background-color: #1a1a1a; /* Placeholder background */
}

/* Title Styling */
selector .attraction-luxury-title {
    transition: transform 0.4s ease;
    margin: 0;
    color: #ffffff;
}

/* Subtitle Styling (Hidden by default) */
selector .attraction-luxury-subtitle {
    position: absolute;
    bottom: -20px; /* Start below the view */
    opacity: 0;
    transition: all 0.4s ease;
    color: #d4af37; /* Gold color for luxury feel */
    font-size: 0.9rem;
}

/* Hover Effects */
selector:hover .attraction-luxury-title {
    transform: translateY(-15px); /* Move title up */
}

selector:hover .attraction-luxury-subtitle {
    opacity: 1;
    bottom: 30px; /* Slide into view */
}

selector:hover {
    background-color: #222; /* Optional background shift */
}