/* Tour Page Styles */

.tour-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

.tour-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tour-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-desktop {
    display: block;
}

.tour-mobile {
    display: none;
}

/* Show mobile image on smaller screens */
@media (max-width: 768px) {
    .tour-desktop {
        display: none;
    }
    
    .tour-mobile {
        display: block;
    }
}

.help-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.tour-modal {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 500px;
    z-index: 3;
}

/* Modal positioning classes */
.modal-top-left {
    top: 80px;
    left: 40px;
}

.modal-top-right {
    top: 80px;
    right: 40px;
}

.modal-middle-right {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.modal-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .tour-modal {
        left: 20px !important;
        right: 20px !important;
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
        max-width: none;
    }
}

.tour-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
}

.tour-close img {
    width: 24px;
    height: 24px;
}

.tour-modal-content {
    text-align: center;
}

.tour-icon {
    margin-bottom: 20px;
}

.tour-icon img {
    width: 60px;
    height: 60px;
}

.tour-modal h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tour-modal p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tour-step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.tour-step-indicator span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    transition: background-color 0.3s;
}

.tour-step-indicator span.active {
    background-color: #007bff;
}

.tour-navigation {
    text-align: center;
}

.tour-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
}

.tour-navigation .arrow-icon {
    width: 16px;
    height: 16px;
}
