/* General Reset */
body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf6e3;
  color: #333;
}

/* Header */
header {
  background-color: #f4d35e;
  padding: 1rem;
  text-align: center;
  border-bottom: 4px solid #e0c97f;
}

header h1 {
  margin: 0.5rem 0;
  font-size: 2rem;
  color: #5c3d00;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #5c3d00;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
}

/* Main Image */
.baldy-icon {
  display: block;
  margin: 2rem auto;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}

.blog-banner {
  display: block;
  margin: 2rem auto;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  /* max-height: 300px; */
  /* object-fit: contain; */
  
}

/* Intro Section */
.intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

/* Blog Header Image */
.blog-header-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Blog Summary Cards */
.blog-summary {
  background: #fff8dc;
  border: 1px solid #e0c97f;
  border-radius: 8px;
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 600px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.blog-summary h2 {
  margin-top: 0;
}

.blog-summary h2 a {
  color: #5c3d00;
  text-decoration: none;
}

.blog-summary h2 a:hover {
  text-decoration: underline;
}

/* Blog Post Styling */
.blog-post {
  background: #fff;
  padding: 2rem;
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.blog-post h2 {
  color: #5c3d00;
  margin-top: 2rem;
}

.contact-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #fff8dc;
  border: 1px solid #e0c97f;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-section button {
  background-color: #f4d35e;
  color: #5c3d00;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.contact-section button:hover {
  background-color: #e0c97f;
}

.brevo-form {
  margin-top: 1rem;
  text-align: left;
}

.cheeky-note {
  margin-top: 1rem;
  font-style: italic;
  color: #666;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #f4d35e;
  color: #5c3d00;
  font-weight: bold;
  border-top: 4px solid #e0c97f;
}
