/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #fff0f5;
  color: #333;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
}

header .banner {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Main layout */
.main {
  display: flex;
  gap: 20px;
}

/* Columns */
.left-column, .middle-column, .right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Boxes */
.box {
  background: #ffe4f0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Blog Entries */
.blog-entry {
  margin-bottom: 15px;
}

.blog-entry h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Gallery */
.scroll-gallery {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.scroll-gallery img {
  height: 100px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 30px;
  padding: 10px;
  border-top: 1px solid #ccc;
  color: #555;
}

/* Links */
a {
  color: #d459a5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive */
@media(max-width: 900px) {
  .main {
    flex-direction: column;
  }
}
