/* GlossedOver - Custom Styles
   Soft, welcoming, confidence-building design
   Warm neutrals, muted tones, gentle contrasts
*/

:root {
    --ggo-warm-white: #fdfcfb;
    --ggo-soft-gray: #6b7280;
    --ggo-warm-gray: #9ca3af;
    --ggo-accent: #1f2937;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ggo-accent);
    background-color: var(--ggo-warm-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

/* Navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--ggo-soft-gray);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--ggo-accent);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-dark {
    background-color: var(--ggo-accent);
    border-color: var(--ggo-accent);
}

.btn-dark:hover {
    background-color: #374151;
    border-color: #374151;
}

.btn-outline-dark {
    color: var(--ggo-accent);
    border-color: var(--ggo-accent);
}

.btn-outline-dark:hover {
    background-color: var(--ggo-accent);
    color: white;
}

/* Hero sections */
.hero {
    padding: 5rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--ggo-soft-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Cards */
.card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: var(--ggo-warm-white) !important;
}

/* Alerts */
.alert {
    border-radius: 0.5rem;
    border: none;
}

/* Section spacing */
.section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

/* Pricing cards */
.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: var(--ggo-accent);
}

.pricing-card.featured {
    border-color: var(--ggo-accent);
    background-color: #fafafa;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--ggo-accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e5e7eb;
}
