﻿
:root{
  --orange:#d35400;
  --orange-dark:#b54700;
  --header:#1f2937; /* blends well with deep orange */
  --soft:#f7f7f9;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  color:#222;
  background:#fff;
}


span1 {
  font-size: 16px;
  font-weight: bold;
  color: ;
}


span2 {
  font-size: 25px;
  font-weight: bold;
  color: var(--orange-dark) ;
}


span3 {
  font-size: 18px;
  font-weight: bold;
  color: #000 ;
}


span4 {
  font-size: 22px;
  font-weight: bold;
  color: #191970 ;
}


span5 {
  font-size: 20px;
  font-weight: bold;
  color: var(--orange-dark) ;
}


.logo {
 padding: 8px;
}

.header-bg { background: var(--header); }
.footer-bg { background: var(--header); }

.hero-bg{
 background: #6B8E23  ;
}


.btn-orange{
  background: var(--orange);
  color:#fff;
  border:none;
}
.btn-orange:hover,
.btn-orange:focus{
  background: var(--orange-dark);
  color:#fff;
}

.bg-soft{ background: var(--soft); }

.stat{
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-label{ color:#666; }

.urgency-bar{
  background: var(--orange);
}

/* Cards, images */
.card img{
  height: 230px;
  object-fit: cover;
}

/* Improve form focus */
.form-control:focus, .form-select:focus{
  border-color: var(--orange);
  box-shadow: 0 0 0 .25rem rgba(211,84,0,.15);
}

/* Accessibility tweaks */
a:focus{
  outline: 2px dashed var(--orange);
  outline-offset: 2px;
}



.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    width: 100%;

}


.products a {
     text-decoration: none;
}


.products a:hover {
     color: red;
}


.product {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 5px;
    margin: 10px 0;
    transition: transform 0.3s;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.product h3 {
    margin-top: 10px;
    color: #003366;
}

.product p {
    color: #000000;
    font-weight: bold;
}

.product .price {
    font-size: 18px;
    color: #ff6600;
    font-weight: bold;
}


.product .price a {
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}




.welcome-message {
    background: #FAEBD7 ;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    padding: 15px;
    color: #006400 ;
}


ul a {
    font-size: 25px;
    margin: 0 0px;
    text-decoration: none;
    font-weight: bold;
     color: var(--orange-dark);
}


ul a:hover {
     color: blue;
}


