/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ═══════════════════════════════════════════════
   Style Sandbox Export
   Generated for: BUTTER BUTTER
   ═══════════════════════════════════════════════ */

/* Base Styles */
body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  background-color: #fff7e0;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino Linotype', Palatino, serif;
  color: #111111;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

/* Links */
a {
  color: #8526c5;
  text-decoration: underline;
  transition: all 0.2s ease;
}
a:hover {
  color: #f9ffa8;
}

/* Layout Container */
.container, main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
}

/* Cards / Boxes */
.card, .box, section {
  background: #fff7e0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1.5em;
  margin-bottom: 1.5em;
}

/* Buttons */
.button, button, .btn {
  display: inline-block;
  background: #8526c5;
  color: #ffffff;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.button:hover, button:hover, .btn:hover {
  background: #f9ffa8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Header */
header {
  background: #111111;
  color: #fff7e0;
  padding: 2em;
  text-align: center;
}
header h1 {
  color: #fff7e0;
  margin: 0;
}
header p {
  color: #fff7e0cc;
  margin: 0.5em 0 0 0;
}

/* Navigation */
nav a {
  color: #8526c5;
  margin: 0 1em;
  text-decoration: none;
}
nav a:hover {
  color: #f9ffa8;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em;
  color: #22222299;
  font-size: 0.9em;
}

#logo {
  text-align: center;
  padding: 20px 0;
}

#logo img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo-text {
  font-family: "Dancing Script", cursive;
  font-size: 36px;
  margin-top: 10px;
  color: #fff7e0;
}
        
