/* AdSnout Shared Styles */

:root {
    --soft-orange: #E4A574;
    --soft-orange-hover: #D99B65;
    --soft-orange-active: #CD8F56;
    --soft-orange-disabled: #F1C19E;
    --soft-orange-light: #F9F1EB;
    --soft-orange-border: #D99B65;

    /* Complementary colors - Soft Teal Blue */
    --soft-teal: #74B5B3;
    --soft-teal-hover: #68A5A3;
    --soft-teal-active: #5C9593;
    --soft-teal-disabled: #A1CCC7;
    --soft-teal-border: #68A5A3;

    /* Muted Red for destructive actions */
    --soft-red: #D4776B;
    --soft-red-hover: #C96A5E;
    --soft-red-active: #BE5D51;
    --soft-red-disabled: #E5A59A;
    --soft-red-border: #C96A5E;

    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
}

/* Global Font */
* {
    font-family: 'Inter', sans-serif;
}

/* Navigation */
.navbar-brand img {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Buttons */
.btn-primary {
    background-color: var(--soft-orange) !important;
    border-color: var(--soft-orange-border) !important;
    color: #fff !important;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--soft-orange-hover) !important;
    border-color: var(--soft-orange-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 165, 116, 0.3);
}

.btn-primary:focus,
.btn-primary.focus {
    background-color: var(--soft-orange-hover) !important;
    border-color: var(--soft-orange-hover) !important;
    box-shadow: 0 0 0 0.2rem rgba(228, 165, 116, 0.5) !important;
    color: #fff !important;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background-color: var(--soft-orange-active) !important;
    border-color: var(--soft-orange-active) !important;
    color: #fff !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--soft-orange-disabled) !important;
    border-color: var(--soft-orange-disabled) !important;
    color: #fff !important;
    opacity: 0.65;
}

.btn-outline-primary {
    color: var(--soft-orange) !important;
    border-color: var(--soft-orange) !important;
}

.btn-outline-primary:hover {
    background-color: var(--soft-orange) !important;
    border-color: var(--soft-orange) !important;
    color: #fff !important;
}

/* Text Colors */
.text-primary {
    color: var(--soft-orange) !important;
}

h4.text-primary {
    color: var(--soft-orange) !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(228, 165, 116, 0.1);
}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

.display-4 {
    font-weight: 600;
}

.lead {
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
}

.footer a {
    color: var(--soft-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--soft-orange-hover);
}

.footer .logo-footer {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Hero Section (for main page) */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E4A574" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2374B5B3" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23E4A574" opacity="0.05"/><circle cx="10" cy="60" r="1" fill="%2374B5B3" opacity="0.05"/><circle cx="90" cy="40" r="1" fill="%23E4A574" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.logo-hero {
    max-width: 120px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)) brightness(0) saturate(100%) invert(100%);
}

@media (max-width: 576px) {
    .logo-hero {
        max-width: 80px;
        margin-bottom: 1rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.text-muted-custom {
    color: rgba(255,255,255,0.8) !important;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--soft-teal);
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.icon-orange {
    background: linear-gradient(135deg, var(--soft-orange), var(--soft-orange-hover));
    color: white;
}

.icon-teal {
    background: linear-gradient(135deg, var(--soft-teal), var(--soft-teal-hover));
    color: white;
}

.icon-gray {
    background: linear-gradient(135deg, #e9ecef, #ced4da);
    color: var(--medium-gray);
}

/* Stats/Benefits Section */
.stats-section {
    background: var(--light-gray);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-orange);
    line-height: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--soft-orange) 0%, var(--soft-teal) 100%);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 90vh;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn-primary,
    .btn-outline-light {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .btn-primary,
    .btn-outline-light {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .stats-section .d-flex {
        flex-direction: column !important;
        text-align: center !important;
    }

    .stats-section .text-start {
        text-align: center !important;
    }

    .step-card .rounded-circle {
        min-width: 50px !important;
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0 !important;
    }
}