/* 
OUTDOOR ÖZEL CSS DOSYASI
Bu dosya sadece outdoor sayfalar için özel stilleri içerir
*/

/* Navigation Tooltip Styling */
.navigation-tooltip, .outdoor-navigation-tooltip {
    background: rgba(0, 0, 0, 0.95) !important;
    color: white !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important;
}

/* Navigation Marker Styling */
.navigation-marker {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
}

.navigation-marker:hover {
    transform: scale(1.2) !important;
    background: rgba(227, 227, 227, 0.9) !important;
    border-color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7) !important;
}

.psv-marker {
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
}

.psv-marker:hover {
    transform: scale(1.1) !important;
}

/* OUTDOOR - Quality Button Özellikleri (container ortak dosyada) */
.quality-menu-outdoor .quality-btn {
    flex: 1;
    text-align: center;
    min-width: 160px;
}

/* OUTDOOR - Map Styling */
.psv-map-outdoor {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    max-width: 150px !important;
    max-height: 100px !important;
    width: 150px !important;
    height: 100px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* OUTDOOR - Floor Plans Container */
.floor-plans-container-outdoor {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
}

.floor-plans-title-outdoor {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floor-plans-grid-outdoor {
    display: grid;
    gap: 20px;
    flex: 1;
    align-content: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    place-items: center;
}

.floor-plan-card-outdoor {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    max-width: 360px;
    min-height: 400px;
}

.floor-plan-card-outdoor:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* OUTDOOR Mobile Responsive - Sadece outdoor'a özel ayarlar */
@media (max-width: 768px) {
    .floor-plans-container-outdoor {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .floor-plans-container-outdoor {
        padding: 20px 10px;
    }
    
    .floor-plans-title-outdoor {
        font-size: 24px;
    }
}

/* 3D Model Viewer Styles */
.model-3d-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.model-3d-modal.active {
    opacity: 1;
    visibility: visible;
}

.model-3d-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.model-3d-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.model-3d-header {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.model-3d-header h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.model-3d-header p {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

.model-3d-viewer {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.model-3d-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
}

.model-3d-info p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Apartment Buttons Container */
.apartment-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.apartment-buttons .apartment-btn,
.apartment-buttons .model-btn {
    flex: 1;
    font-size: 14px;
    padding: 10px 15px;
    min-height: 42px;
    width: calc(50% - 5px);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.apartment-buttons .apartment-btn:hover,
.apartment-buttons .model-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Model Viewer Loading */
.progress-bar {
    display: block;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.update-bar {
    background: linear-gradient(45deg, #667eea, #764ba2);
    width: 0%;
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hide {
    display: none;
}

/* Mobile Responsive for 3D Modal */
@media (max-width: 768px) {
    .model-3d-content {
        width: 95%;
        height: 95%;
        padding: 15px;
    }
    
    .model-3d-header h2 {
        font-size: 24px;
    }
    
    .apartment-buttons {
        flex-direction: column;
    }
}
