/* 
   Оранжевые градиенты для moriartymega.site
   Переопределяет фиолетовые цвета на оранжевые
*/

/* Основной градиент для фона (заголовок) */
.bg-gradient {
    background-image: -moz-linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%) !important;
    background-image: -webkit-linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%) !important;
    background-image: -ms-linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%) !important;
    background-image: linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%) !important;
}

/* Навигационное меню */
.nav-menu {
    background-color: #ff8c00 !important;
    background: -moz-linear-gradient(135deg, rgb(255, 140, 0) 0%, rgb(255, 69, 0) 100%) !important;
    background: -webkit-linear-gradient(135deg, rgb(255, 140, 0) 0%, rgb(255, 69, 0) 100%) !important;
    background: linear-gradient(135deg, rgb(255, 140, 0) 0%, rgb(255, 69, 0) 100%) !important;
}

/* Градиент заливка для иконок */
.gradient-fill:before {
    color: #ff8c00 !important;
    background: -moz-linear-gradient(top, #ff8c00 0%, #ff4500 100%) !important;
    background: -webkit-linear-gradient(top, #ff8c00 0%, #ff4500 100%) !important;
    background: linear-gradient(to bottom, #ff8c00 0%, #ff4500 100%) !important;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Кнопки primary */
.btn-primary {
    background-image: -moz-linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    background-image: -webkit-linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    background-image: -ms-linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    background-image: linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    border-color: #ff8c00 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-image: linear-gradient(122deg, #ff4500 0%, #ff8c00 100%) !important;
    border-color: #ff4500 !important;
}

/* Круглые иконки */
.circle-icon {
    background-image: -moz-linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    background-image: -webkit-linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    background-image: -ms-linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    background-image: linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
}

/* Дополнительные элементы с градиентом */
.card.features:after {
    background: -moz-linear-gradient(top, #ff8c00 0%, #ff4500 100%) !important;
    background: -webkit-linear-gradient(top, #ff8c00 0%, #ff4500 100%) !important;
    background: linear-gradient(to bottom, #ff8c00 0%, #ff4500 100%) !important;
}

/* Тэглайн цвет */
.tagline {
    color: #ffcc80 !important; /* Светло-оранжевый для контраста */
}

/* Дополнительные цветовые акценты */
a[style*="color: dodgerblue"] {
    color: #ff8c00 !important;
}

/* Кнопка absolute-enter */
.btn.absolute-enter {
    background: linear-gradient(122deg, #ff8c00 0%, #ff4500 100%) !important;
    border: 2px solid #ff8c00 !important;
    color: white !important;
}

.btn.absolute-enter:hover {
    background: linear-gradient(122deg, #ff4500 0%, #ff8c00 100%) !important;
    border-color: #ff4500 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3) !important;
} 