:root {
    --primary-color: #d32f2f; /* Darker red */
    --primary-hover: #b71c1c;
}

/* Custom Red Branding to override Bootstrap Primary if needed, 
   but we'll stick to using utility classes where possible and custom classes for specific branding */

.text-brand {
    color: var(--primary-color) !important;
}

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

.btn-brand {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-brand:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

/* Browser Frame Effect for Screenshots */
.browser-frame {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

[data-bs-theme="dark"] .browser-frame {
    border-color: rgba(255,255,255,0.1);
    background: #2b3035;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.browser-frame:hover {
    transform: translateY(-5px);
}

.browser-header {
    background: #f1f3f4;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .browser-header {
    background: #212529;
    border-bottom-color: rgba(255,255,255,0.05);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dfe1e5;
}

.browser-dot.red { background-color: #ff5f56; }
.browser-dot.yellow { background-color: #ffbd2e; }
.browser-dot.green { background-color: #27c93f; }

.browser-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

[data-bs-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

/* Feature Cards */
.feature-card {
    height: 100%;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
}

[data-bs-theme="dark"] .feature-card {
    background: #2b3035;
    border-color: rgba(255,255,255,0.05);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 1.5rem;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
    text-align: center;
    background: white;
}

[data-bs-theme="dark"] .pricing-body {
    background: #2b3035;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

[data-bs-theme="dark"] footer {
    background-color: #1a1d20;
}

/* Navbar */
.navbar-brand img {
    height: 40px;
}
