/* Interaktiivse pildi konteiner */
.interactive-image-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.interactive-main-image,
.interactive-winter-image {
    width: 100%;
    display: block;
}

/* Infopunktid */
.info-point {
    position: absolute !important;
    width: 30px !important;
    height: 30px !important;
    background-color: #056e41 !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: white !important;
    font-weight: bold !important;
    cursor: pointer !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: transform 0.2s ease !important;
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, -50%) !important;
}

.info-point:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.info-point::after {
    content: "+" !important;
    font-size: 20px !important;
    color: white !important;
}

.info-point.selected {
    background-color: #0056b3 !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
}

/* Mobiili aktiivne punkt */
.info-point.mobile-active {
    background-color: #ff6b35 !important;
    transform: translate(-50%, -50%) scale(1.3) !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6) !important;
    animation: mobilePulse 2s infinite !important;
}

.info-point.mobile-active::after {
    content: attr(data-index) !important;
    font-size: 16px !important;
}

@keyframes mobilePulse {
    0% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.9); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); }
}

/* Info paneel - TÄIUSTATUD KUJUNDUS */
.info-panel {
    position: absolute;
    right: -420px;
    top: 0;
    width: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 100;
    overflow-y: auto;
    padding: 0;
    border-radius: 12px 0 0 12px;
    max-height: 85vh;
    border: 1px solid #e9ecef;
}

.info-panel.active {
    right: 20px;
}

/* UUENDATUD header */
.info-panel-header {
    background: linear-gradient(135deg, #056e41 0%, #0a5c35 100%);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 12px 0 0 0;
    position: relative;
    overflow: hidden;
}

.info-panel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-left: 15px;
    flex-shrink: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* UUENDATUD sisu */
.info-panel-content {
    padding: 30px 25px;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 16px;
    background: white;
}

/* UUENDATUD pealkiri */
.info-panel-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

/* UUENDATUD alapealkiri */
.info-panel-subtitle {
    margin: 8px 0 0 0;
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* CTA ja punktispetsiifilised nupud - UUENDATUD */
.info-panel-actions {
    padding: 25px;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
    border-radius: 0 0 12px 0;
}

/* Punktispetsiifiline nupp - UUENDATUD */
.point-button-section {
    margin-bottom: 20px;
}

.point-button {
    display: inline-block;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 124, 186, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.point-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004666 100%);
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
}

/* CTA sektsioon - UUENDATUD */
.cta-section {
    margin-bottom: 15px;
}

.cta-text {
    color: #495057;
    font-size: 15px;
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Hooaja vahetamine */
.season-toggle {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #056e41;
    padding: 8px 15px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.season-toggle span {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
}

.season-toggle span.active {
    background-color: white;
    color: #056e41;
}

.season-icon {
    font-size: 20px;
}

/* Mobiili punktide nimekiri */
.mobile-points-list {
    display: none;
    margin-top: 20px;
}

.mobile-point-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-point-item:hover {
    background: #f0f9f4;
    border-color: #056e41;
}

.mobile-point-item.active {
    background: #ffe8e1;
    border-color: #ff6b35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.mobile-point-number {
    width: 40px;
    height: 40px;
    background: #056e41;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-point-item.active .mobile-point-number {
    background: #ff6b35;
    transform: scale(1.1);
}

.mobile-point-content {
    flex: 1;
}

.mobile-point-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.mobile-point-item.active .mobile-point-title {
    color: #ff6b35;
}

.mobile-point-subtitle {
    color: #888;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 8px 0;
    font-style: italic;
}

.mobile-point-description {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobiili info paneel - UUENDATUD */
.mobile-info-panel {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 25px;
    margin-top: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.mobile-info-panel.active {
    display: block;
}

.mobile-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

/* UUENDATUD mobiili pealkiri */
.mobile-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

/* UUENDATUD mobiili alapealkiri */
.mobile-info-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3;
}

.mobile-close-btn {
    background: rgba(255, 107, 53, 0.1);
    border: none;
    font-size: 20px;
    color: #ff6b35;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.mobile-close-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* UUENDATUD mobiili sisu */
.mobile-info-content {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Mobiili CTA ja punktispetsiifilised nupud - UUENDATUD */
.mobile-info-actions {
    border-top: 2px solid rgba(255, 107, 53, 0.1);
    padding-top: 20px;
}

/* Mobiili punktispetsiifiline nupp - UUENDATUD */
.mobile-point-button-section {
    margin-bottom: 15px;
}

.mobile-point-button {
    display: inline-block;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 124, 186, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-point-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004666 100%);
    text-decoration: none;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.4);
}

.mobile-cta-section {
    margin-bottom: 15px;
}

.mobile-cta-text {
    color: #495057;
    font-size: 15px;
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-weight: 500;
}

.mobile-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    text-decoration: none;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* MOBIILSETE KOHANDUSED */
@media (max-width: 768px) {
    /* Peida mitteaktiivsed punktid mobiilis */
    .info-point {
        display: none !important;
    }
    
    /* Näita AINULT aktiivseid punkte mobiilis */
    .info-point.mobile-active {
        display: flex !important;
    }
    
    /* Näita mobiili nimekirja AINULT mobiilis */
    .mobile-points-list {
        display: block !important;
    }
    
    /* Peida desktop info paneel AINULT mobiilis */
    .info-panel {
        display: none !important;
    }
    
    /* Sesooni vahetamine väiksemaks */
    .season-toggle {
        bottom: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .season-icon {
        font-size: 16px;
    }
}

/* Tabletiseadmed */
@media (min-width: 769px) and (max-width: 1024px) {
    .info-point {
        width: 28px !important;
        height: 28px !important;
    }
    
    .info-point::after {
        font-size: 18px !important;
    }

    .info-panel {
        width: 360px;
    }
}

/* DESKTOP */
@media (min-width: 769px) {
    /* Peida mobiili nimekiri desktopis */
    .mobile-points-list {
        display: none !important;
    }
    
    /* Näita tavalisi punkte desktopis */
    .info-point {
        display: flex !important;
    }
}

/* Suuremad ekraanid */
@media (min-width: 1400px) {
    .info-panel {
        width: 440px;
    }
    
    .info-panel.active {
        right: 40px;
    }
}

/* Animatsioonid */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-panel.active .info-panel-content,
.info-panel.active .info-panel-actions {
    animation: slideIn 0.4s ease;
}