@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #fff 0%, #ffeaea 100%);
  color: #222;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.site-header {
  background: linear-gradient(90deg, #b30000 60%, #ff4d4d 100%);
  color: #fff;
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(179,0,0,0.10);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  position: relative;
}

.store-sign {
  width: 320px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  margin-bottom: 1.2rem;
  border: 4px solid #fff;
  background: #fff;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

nav a:hover {
  background: #fff;
  color: #b30000;
  box-shadow: 0 2px 8px rgba(255,77,77,0.12);
}

h1 {
  margin: 0.5rem 0 0 0;
  font-size: 2.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.site-header p {
  margin: 0.5rem 0 0 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #fff8f8;
}

.site-main {
  max-width: 800px;
  margin: 2.5rem auto 2rem auto;
  padding: 0 1.2rem;
}

section {
  margin-bottom: 2.8rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(179,0,0,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}

h2 {
  color: #b30000;
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

#sales-list li {
  background: linear-gradient(90deg, #ffeaea 60%, #fff 100%);
  border-left: 6px solid #b30000;
  margin-bottom: 0.7rem;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(179,0,0,0.04);
}

form textarea {
  width: 100%;
  border: 2px solid #b30000;
  border-radius: 8px;
  padding: 0.7rem;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  resize: vertical;
  background: #fff8f8;
  transition: border 0.2s;
}

form textarea:focus {
  border: 2px solid #ff4d4d;
  outline: none;
}

form button {
  background: linear-gradient(90deg, #b30000 60%, #ff4d4d 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(179,0,0,0.10);
}

form button:hover {
  background: linear-gradient(90deg, #ff4d4d 60%, #b30000 100%);
  box-shadow: 0 4px 16px rgba(255,77,77,0.15);
}

#suggestion-message {
  color: #008a00 !important;
  font-weight: bold;
  margin-top: 0.5rem;
}

footer {
  background: linear-gradient(90deg, #b30000 60%, #ff4d4d 100%);
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 1.1rem;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 12px rgba(179,0,0,0.08);
}

@media (max-width: 600px) {
  .site-header {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .store-sign {
    width: 98vw;
    max-width: 98vw;
  }
  .site-main {
    padding: 0 0.3rem;
  }
  section {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    border-radius: 10px;
  }
  footer {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    font-size: 1rem;
  }
}

.store-hours {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 1.08rem;
}
.store-hours li {
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.2rem;
  background: #fff8f8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.store-hours li strong {
  color: #b30000;
  font-weight: 700;
  margin-right: 0.3rem;
}
.store-hours li .open {
  color: #008a00;
  font-weight: bold;
}
.store-hours li span[style] {
  font-weight: bold;
} 