/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Test if CSS is loading */
body {
  background-color: #fdfcf8;
  font-family: Georgia, serif;
  line-height: 1.6;
  color: #333;
  padding: 20px;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

/* Main Content */
main {
  padding: 30px;
}

/* Section Styling */
section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

section:last-child {
  border-bottom: none;
}

h2 {
  color: #e76f51;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f4a261;
  font-weight: 400;
}

h3 {
  color: #2a9d8f;
  font-size: 1.3rem;
  margin: 20px 0 10px 0;
  font-weight: 500;
}

/* Recipe Info Grid */
.recipe-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.info-item {
  background: #f8f9fa;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  border-left: 4px solid #f4a261;
}

.info-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.info-value {
  font-weight: bold;
  color: #e76f51;
  font-size: 1.1rem;
}

/* Lists */
ul {
  list-style: none;
  margin-left: 0;
}

li {
  background: #fff8f5;
  margin: 8px 0;
  padding: 12px 15px;
  border-radius: 6px;
  border-left: 4px solid #f4a261;
  font-size: 1.05rem;
}

/* Tools List */
.tools-list li {
  background: #f0f9ff;
  border-left: 4px solid #2a9d8f;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-image {
  text-align: center;
  margin: 30px 0;
}

/* Steps */
.step {
  background: #fafafa;
  margin: 25px 0;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #e76f51;
}

.step h3 {
  background: #e76f51;
  color: white;
  padding: 10px 15px;
  margin: -10px -10px 15px -10px;
  border-radius: 5px;
  font-size: 1.2rem;
}

.step p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* Tips Section */
.tips li {
  background: #e8f5e5;
  border-left: 4px solid #28a745;
  position: relative;
  padding-left: 45px;
}

.tips li::before {
  content: "💡";
  position: absolute;
  left: 15px;
  font-size: 1.2rem;
}

/* Final Image */
.final-image {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.final-image img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.caption {
  font-style: italic;
  color: #666;
  margin-top: 10px;
  font-size: 1rem;
}

/* Links */
a {
  color: #e76f51;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
  color: #d63447;
}

/* Footer */
footer {
  background: #2d3436;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Special highlight box */
.highlight {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid #f39c12;
}

.highlight strong {
  color: #856404;
}