/**
 * Audilynx Theme Custom Styles
 * These styles work alongside Elementor
 */

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.site-branding a {
    text-decoration: none;
}

.logo-first-letter {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
}

.logo-rest {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
}

/* Navigation Styles */
.main-navigation .menu-container {
    display: flex;
    gap: 30px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation li a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--background-light);
}

.btn-get-started {
    padding: 10px 24px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget-area h3,
.footer-widget-area h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-widget-area a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget-area a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #334155;
    background: #1e293b;
    color: white;
    border-radius: 8px;
}

.newsletter-form button {
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #059669;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Page Content */
.site-main {
    margin-top: 80px;
}

.page-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    padding: 10px;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* Elementor Overrides */
.elementor-section {
    position: relative;
}

.elementor-section .elementor-container {
    max-width: 1200px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elementor-element.animated {
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Loading States */
body.loading {
    overflow: hidden;
}

/* Responsive Design - See responsive.css for details */