/* static/css/style.css */

/* CSS Variables for a modern color scheme */
:root {
  --primary-color: #4CAF50;       /* A fresh green */
  --secondary-color: #ff9800;     /* A warm orange */
  --accent-color: #0056b3;        /* A dark blue accent */
  --text-color: #333;
  --background-color: #f8f9fa;
  --font-family-sans: 'Roboto', sans-serif;
}

/* Global Styles */
body {
  font-family: var(--font-family-sans);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Navbar Customization */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
  margin-right: 10px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.25rem;
}


/* Features Section */
.features .col-md-4 {
  margin-bottom: 30px;
}
.features i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.features h3 {
  font-weight: 700;
  margin-top: 15px;
}

.table-header {
    background-color: #004085 !important;
    color: white !important;
}
.table {
    border: 1px solid black !important;
}

.header-row {
    background-color: #0056b3 !important;
}

.header-cell {
    background-color: #9e8768 !important;
    color: white !important;
    padding: 10px;
    font-weight: bold;
}
.day-cell {
    background-color: #faebd2 !important;
    font-weight: bold;
    padding: 10px;
    width: 12%;
}

/* Sample Menu Table */
.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
  padding: 12px;
}

/* Footer */
footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

#corneredbox {
  border-radius: 20px;
  border: 0.5px solid #ceddef;
  padding: 20px;
  margin: 30px 2.5em 0px 0px;
  box-shadow: 1px 1px 10px #aacdf7;
  font-family: 'Inconsolata', sans-serif;
}
