@charset "utf-8";
/* CSS Document */


    :root {
        --cl-orange: #B7410E;  /* Rust color */
        --cl-brown: #8B4513;
        --cl-green: #2C5530;
        --cl-beige: #F5F1E9;
        --cl-dark: #333333;
    }

    /* General Styles */
    body {
        font-family: 'Arial', sans-serif;
        color: var(--cl-dark);
        background-color: var(--cl-beige);
    }

.honeypot-field {
    display: none !important;
    position: absolute;
    left: -9999px;
}

.form-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

#orderForm .col-lg-8 {
    width: 100%;
    max-width: 900px;
}

.price-calculator {
    width: 100%;
    max-width: 300px;
}

    /* Navigation */
    .navbar {
        background-color: rgba(44, 85, 48, 0.95) !important;
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .navbar-brand {
        font-size: 1.5rem;
        color: var(--cl-beige) !important;
    }

    .nav-link {
        color: var(--cl-beige) !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: var(--cl-orange) !important;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url("../Img/Header.jpeg");
        background-size: cover;
        background-position: center;
        padding: 250px 0 100px;
        color: white;
        margin-top: -76px;
		height: 90vh;
    }

    /* Feature Cards */
    .feature-card {
        border: none;
        background: white;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
    }

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

    .feature-icon {
        font-size: 2.5rem;
        color: var(--cl-orange);
    }

    /* Section Styles */
    .section-title {
        color: var(--cl-green);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 15px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--cl-orange);
    }

    /* Buttons */
    .btn-primary {
        background-color: var(--cl-orange);
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: var(--cl-brown);
        transform: translateY(-2px);
    }

    .btn-outline-primary {
        color: var(--cl-orange);
        border-color: var(--cl-orange);
    }

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

    /* Hours Section */
    .hours-section {
        background-color: var(--cl-green);
        color: white;
        padding: 60px 0;
    }

    /* Map and Contact Styles */
    .map-container {
        width: 100%;
        height: 400px;
        background-color: #f8f9fa;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .contact-info {
        background-color: white;
        padding: 30px;
        border-radius: 15px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Form Styles */
    .form-section {
        background: white;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .form-section h3 {
        color: var(--cl-green);
        border-bottom: 2px solid var(--cl-orange);
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .blend-option {
        background: var(--cl-beige);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .quantity-input {
        max-width: 100px;
    }

    .price-calculator {
        background: var(--cl-green);
        color: white;
        padding: 20px;
        border-radius: 10px;
        position: sticky;
        top: 100px;
    }

    /* Form Controls */
    .form-control:focus {
        border-color: var(--cl-orange);
        box-shadow: 0 0 0 0.25rem rgba(183, 65, 14, 0.25);
    }

    .form-check-input:checked {
        background-color: var(--cl-orange);
        border-color: var(--cl-orange);
    }

    /* Footer */
    footer {
        background-color: var(--cl-dark);
        color: white;
        padding: 40px 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero-section {
            padding: 150px 0 80px;
        }
        
        .price-calculator {
            position: static;
            margin-top: 20px;
        }
    }
