/* style.css - Светлая тема с оранжевыми и черными акцентами */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    color: #333;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

/* Шапка */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 140, 66, 0.3);
}

.logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Экран приветствия */
.welcome-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.welcome-card h2 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 22px;
}

.welcome-card p {
    color: #666;
    margin-bottom: 25px;
}

.features {
    display: grid;
    gap: 10px;
    margin: 25px 0;
}

.feature {
    background: #fff8f3;
    padding: 12px;
    border-radius: 10px;
    text-align: left;
    padding-left: 40px;
    position: relative;
    border-left: 4px solid #ff8c42;
    color: #444;
}

.feature:before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #ff6b35;
    font-weight: bold;
}

.start-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin: 20px 0;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.start-btn:active {
    transform: translateY(-1px);
}

.contact-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Прогресс бар */
.progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 3px;
}

/* Карточка вопроса */
.question-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.question-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
    text-align: center;
}

.options-grid {
    display: grid;
    gap: 12px;
}

.option-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 18px;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.option-btn:hover {
    background: #fff8f3;
    transform: translateY(-2px);
    border-color: #ff8c42;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.option-btn.selected {
    background: #fff0e6;
    border-color: #ff6b35;
    color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Навигация */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.progress-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.back-btn {
    background: white;
    color: #666;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.back-btn:hover {
    background: #f5f5f5;
    border-color: #ff8c42;
    color: #ff6b35;
}

/* Экран результатов */
.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-header h2 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 26px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-subtitle {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* Список коктейлей */
.cocktail-list {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.cocktail-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.cocktail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cocktail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cocktail-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.cocktail-price {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cocktail-ingredients {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cocktail-note {
    color: #ff6b35;
    font-size: 12px;
    font-weight: 500;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 10px;
}

/* Кнопки действий */
.action-buttons {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.order-btn {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.restart-btn {
    background: white;
    color: #666;
    border: 2px solid #ddd;
    padding: 16px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.restart-btn:hover {
    background: #f5f5f5;
    border-color: #ff8c42;
    color: #ff6b35;
}

/* Контактная карточка */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.contact-card h3 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-details {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.contact-details div {
    padding: 8px;
    background: #fff8f3;
    border-radius: 8px;
    border-left: 3px solid #ff8c42;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.screen {
    display: none;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
}

/* Сообщение "нет результатов" */
.no-results {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
}

.no-results h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    margin: 10px 0;
}

/* Эмодзи в опциях */
.option-emoji {
    font-size: 24px;
}

.option-text {
    flex-grow: 1;
}

/* Адаптивность */
@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    
    .question-title {
        font-size: 20px;
    }
    
    .option-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .cocktail-name {
        font-size: 16px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .start-btn {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .header {
        padding: 15px;
    }
}

/* Стили для эмодзи в результатах */
.cocktail-card .cocktail-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Цветовая палитра */
:root {
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c42;
    --orange-light: #fff0e6;
    --black-primary: #222;
    --black-secondary: #444;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #666;
    --white: #ffffff;
}