/* Body Styling */
body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    color: #212529;
}

/* Navbar Styling */
.navbar {
    background-color: #000;
}

.navbar .nav-link {
    color: #fff;
    font-weight: bold;
}

.navbar .nav-link:hover {
    color: #f8f9fa;
}

.navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Checkout Section */
.checkout-section {
    background-image: url('../assets/bg-dark.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-top: 100px;
}

.checkout-form {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.checkout-form h3 {
    color: #ff4b4b;
}

.checkout-form .form-label {
    color: #ddd;
}

.checkout-form .form-control {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
}

.checkout-form .form-control:focus {
    background-color: #444;
    color: #fff;
    border-color: #ff4b4b;
    box-shadow: none;
}

.checkout-form .btn-primary {
    background-color: #ff4b4b;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.checkout-form .btn-primary:hover {
    background-color: #e64545;
    transform: translateY(-3px);
}

/* Footer Styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f8f9fa;
}
