@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap');

body {
  background-color: #f0edf8;
  background-image: url('texture_yellow.png');
  background-repeat: repeat;
  color: #3d2e3f;
  font-family: 'Quicksand', normal;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Silkscreen', sans-serif;
  font-weight: 400;
}

.container {
  max-width: 860px;
  padding: 2rem;
  margin-left: 275px;
  flex-grow: 1;
    min-height: 100vh;       
  display: flex;            
  flex-direction: column;
}

footer {
  margin-top: auto;         /* ← this pushes footer to the bottom */
}

.sidebar {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 160px;
}

.floating-nav {
  background-color: #fdf6f0;
  border: 1px solid #3d2e3f;
  padding: 1.5rem;
  box-shadow: 4px 4px 0px #3d2e3f;
}

.nav-title {
  font-family: 'Silkscreen', normal;
  font-size: 0.75rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
}

.floating-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.floating-nav li {
  margin-bottom: 0.6rem;
}

.floating-nav a {
  color: #3d2e3f;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
}

.floating-nav a:hover {
  text-decoration: underline;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

hr.flower-divider {
  border: none;                        /* removes the default ugly line */
  background-image: url('misc/whiteflowers.png');
  background-repeat: repeat-x;        /* repeats horizontally only */
  background-position: center;
  height: 40px;                        /* adjust to match your image height */
  margin-bottom: 1rem;
}