/*
Theme Name: Dax Alpha Theme
Theme URI: https://daxalpha.com
Author: Dax Alpha Media
Author URI: https://daxalpha.com
Description: A custom multi-page theme for Dax Alpha Media, designed to showcase all services and portfolio items on dedicated pages.
Version: 4.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daxalphatheme
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.hero-gradient {
    background: linear-gradient(to right, #262262, #F7941D);
}

.btn-primary {
    background-color: #262262;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a174a;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 4px;
    background-color: #F7941D;
    border-radius: 2px;
}

.logo-font {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content > * {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-content .btn-primary {
    animation-delay: 0.6s;
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#contact-success-message {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.menu-item a {
    color: #4B5563;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.menu-item a:hover {
    color: #262262;
}
