/* ===== FeedbackFrontier.com Custom Styles ===== */

:root {
    --primary-color: #000001;
    --secondary-color: #1a1a1a;
    --accent-color: #8B4513;
    --ff-navbar-bg: #000001;
    --ff-accent: #8B4513;
    --ff-accent-light: #A0522D;
    --ff-hero-bg: #0d0d0d;
    --ff-text: #2D2D2D;
    --ff-text-light: #666666;
    --ff-white: #FFFFFF;
    --ff-section-bg: #f3f5fa;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--ff-text);
    background-color: var(--ff-white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    color: var(--ff-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--ff-accent-light);
}

/* ===== Navbar ===== */
.ff-navbar {
    background: #000001;
    padding: 0.75rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.ff-navbar .navbar-brand img {
    max-height: 45px;
}
.ff-navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}
.ff-navbar .nav-link:hover {
    color: var(--ff-accent) !important;
}
.ff-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.ff-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.ff-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1600&q=80') center center / cover no-repeat;
    color: var(--ff-white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.ff-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ff-white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.ff-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.92;
    max-width: 650px;
    margin: 0 auto 2rem;
    font-weight: 300;
}
@media (max-width: 768px) {
    .ff-hero-title { font-size: 2rem; }
    .ff-hero { padding: 4rem 0 3rem; }
}

/* ===== Buttons ===== */
.ff-btn-primary {
    background: var(--ff-accent);
    border-color: var(--ff-accent);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.ff-btn-primary:hover {
    background: var(--ff-accent-light);
    border-color: var(--ff-accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139,69,19,0.4);
}
.ff-btn-outline {
    border: 1px solid var(--ff-accent);
    color: var(--ff-accent);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.ff-btn-outline:hover {
    background: var(--ff-accent);
    color: #fff;
}

/* ===== Section Title ===== */
.ff-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.75rem;
}
.ff-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--ff-accent);
    border-radius: 2px;
}

/* ===== Cards ===== */
.ff-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}
.ff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}
.ff-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.ff-badge {
    background: var(--ff-accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.35em 0.75em;
    border-radius: 50px;
    font-weight: 500;
}

/* ===== Footer ===== */
#footer a:hover {
    color: var(--ff-accent) !important;
    text-decoration: none;
}

/* ===== Blog page overrides ===== */
.blog-hero {
    background: linear-gradient(135deg, #000001, #1a1a1a);
    color: #fff;
    padding: 3rem 0;
}
