﻿:root {
    --orange-primary: #FF6B35;
    --orange-secondary: #FF8C42;
    --orange-light: #FFA552;
    --orange-lighter: #FFB77C;
    --orange-dark: #E05A2D;
}

/* Orange Theme */
.bg-orange {
    background-color: var(--orange-primary) !important;
}

.text-orange {
    color: var(--orange-primary) !important;
}

.btn-orange {
    background-color: var(--orange-primary);
    color: white;
}

    .btn-orange:hover {
        background-color: var(--orange-dark);
        color: white;
    }

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 107, 53, 0.8), rgba(255, 107, 53, 0.9)), url('/Images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    border-radius: 0 0 20px 20px;
}

/* Features */
.feature-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
}

/* Footer */
footer {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--orange-light);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}
