/* ===== MEDICAL CONFERENCE DARK THEME ===== */
/* Main CSS File - Imports All Components */

@import url('variables.css');
@import url('base.css');

/* Components */
@import url('components/buttons.css');
@import url('components/header.css');
@import url('components/cards.css');
@import url('components/forms.css');
@import url('components/ask.css');


/* Sections */
/* Sections */
@import url('sections/hero.css');
@import url('sections/program.css');
@import url('sections/speakers.css');     /* Спикеры конференции */
@import url('sections/specialists.css');  /* Наша команда (О нас) */
@import url('sections/contacts.css');
@import url('sections/pages.css');
@import url('sections/footer.css');  
@import url('sections/speaker-materials.css');

/* ===== RESPONSIVE DESIGN ===== */
/* Global responsive styles that don't fit elsewhere */

@media (max-width: 768px) {
  section {
    padding: var(--space-xl) 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .stat-item {
    padding: var(--space-md);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
/* ===== FEEDBACK POPUP ===== */
.feedback-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feedback-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: rgba(23, 42, 70, 0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    width: 100%;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.popup-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.popup-body {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-body p {
    color: #b0b8c5;
    margin-bottom: 0.5rem;
}

.popup-body small {
    color: #8a94a6;
    font-size: 0.9rem;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Адаптивность для попапа */
@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem;
        margin: 10px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
}
