/* ----------------------------
Skimes Sweets – Crumbl-style Bright Theme
---------------------------- */

/* Reset & body */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff7f0; /* soft bright background */
  color: #333;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background-color: #ffb347; /* warm orange */
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

header h1 {
  font-size: 2.8em;
  margin: 0;
  font-weight: bold;
}

header p {
  font-size: 1.3em;
  margin-top: 5px;
}

/* Navigation */
nav {
  background-color: #ffd9a6; /* pastel orange */
  text-align: center;
  padding: 12px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  margin: 0 15px;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff7f50; /* coral hover */
}

/* Main content wrapper */
main {
  flex: 1;
  padding: 20px 15px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Section titles */
section h2 {
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

/* Grid Layout for Menu, Specials, Deals */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card Style for items */
.card, .menu-item, .deal-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img, .menu-item img, .deal-item img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s;
}

.card:hover, .menu-item:hover, .deal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card img:hover, .menu-item img:hover, .deal-item img:hover {
  transform: scale(1.05);
}

.card h3, .menu-item h3, .deal-item h3 {
  font-size: 1.4em;
  margin: 10px 0;
  font-weight: bold;
}

.card p, .menu-item p, .deal-item p {
  margin: 5px 0;
}

/* Buttons */
button {
  background-color: #ff7f50; /* coral */
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

button:hover {
  background-color: #ff6347; /* tomato hover */
}

/* Form Styling for Order Page */
form input, form textarea, form select {
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}

/* Sticky Footer */
footer {
  background-color: #ffd9a6;
  color: #333;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9em;
  margin-top: auto;
}

/* Responsive for Mobile */
@media screen and (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
}