/* HandyHive Landing Page Styles */

:root {
    /* Brand Colors - Updated */
    --hive-yellow: #efd000;     /* Primary brand color - updated */
    --navy: #1e2d40;            /* Dark text, headers */
    --soft-cream: #faf9f6;      /* Background, cards */
    --neutral-gray: #6b7280;    /* Secondary elements */
    
    /* Semantic Colors */
    --success: #16a34a;
    --warning: #ea580c;
    --error: #dc2626;
    --info: #2563eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--navy);
    background-color: var(--soft-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--navy);
}

.hero-section {
    background: var(--navy);
    color: var(--soft-cream);
    padding: 80px 0 100px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--soft-cream);
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--hive-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.5rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--neutral-gray);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(30, 45, 64, 0.1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--hive-yellow);
    border-width: 2px;
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hive-yellow);
    color: var(--navy);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--neutral-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(30, 45, 64, 0.1);
}

.btn-primary {
    background: var(--hive-yellow);
    color: var(--navy);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #d6bb00;
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 208, 0, 0.3);
}

.navbar {
    box-shadow: none;
    border: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy) !important;
    text-decoration: none;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-brand:hover {
    color: var(--hive-yellow) !important;
}

.navbar-dark .nav-link {
    color: var(--soft-cream) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.navbar-dark .nav-link:hover {
    color: var(--hive-yellow) !important;
}

/* Keep original styles for footer nav links */
.navbar-light .nav-link {
    color: var(--navy) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.navbar-light .nav-link:hover {
    color: var(--hive-yellow) !important;
}

.how-it-works-step {
    text-align: center;
    margin-bottom: 3rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--hive-yellow);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary {
    background: transparent;
    color: var(--soft-cream);
    border: 2px solid var(--soft-cream);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--soft-cream);
    color: var(--navy);
}

.btn-outline-primary {
    background: transparent;
    color: var(--hive-yellow);
    border: 2px solid var(--hive-yellow);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.btn-outline-primary:hover {
    background: var(--hive-yellow);
    color: var(--navy);
    border-color: var(--hive-yellow);
}

.text-muted {
    color: var(--neutral-gray) !important;
}

.bg-light {
    background-color: var(--soft-cream) !important;
}

.bg-primary {
    background-color: var(--navy) !important;
}

.text-warning {
    color: var(--hive-yellow) !important;
}

footer {
    background: var(--navy) !important;
    color: var(--soft-cream);
}

footer a {
    color: var(--neutral-gray);
    text-decoration: none;
}

footer a:hover {
    color: var(--hive-yellow);
}

footer h5, footer h6 {
    color: var(--soft-cream);
}

/* Update CTA section */
.cta-section {
    background: var(--hive-yellow) !important;
    color: var(--navy);
}

.cta-section h2, .cta-section p {
    color: var(--navy);
}

.btn-light {
    background: white;
    color: var(--navy);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.btn-light:hover {
    background: var(--soft-cream);
    color: var(--navy);
}

.btn-outline-light {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.btn-outline-light:hover {
    background: var(--navy);
    color: var(--hive-yellow);
}

/* Mobile carousel styling */
.carousel-indicators {
    bottom: -30px;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--neutral-gray);
}

.carousel-indicators button.active {
    background-color: var(--hive-yellow);
}

/* Pricing mobile scroll indicator */
@media (max-width: 991px) {
    .pricing-card {
        scroll-snap-align: start;
    }
}

/* Andy/Andi section styling */
.btn-outline-warning {
    background: transparent;
    color: var(--hive-yellow);
    border: 1px solid var(--hive-yellow);
    padding: 4px 12px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.btn-outline-warning:hover {
    background: var(--hive-yellow);
    color: var(--navy);
    border-color: var(--hive-yellow);
}

.text-white-50 {
    opacity: 0.7;
}