/*
Theme Name: Pink Green
Theme URI: http://eccanen.fi
Author: TesSyv
Author URI: http://eccanen.fi
Description: A custom WordPress theme with handcrafted layout and responsive design.
Version: 1.1
*/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #FFF;
  color: #425C4B;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Wrapper for sticky footer layout */
#page {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Main content */
main {
  flex: 1;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.site-header {
  background-color: #E4B4BC;
  padding: 20px;
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-title {
  margin: 0;
  font-size: 2rem;
}

.site-title a {
  color: #425C4B;
  text-decoration: none;
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  color: #425C4B;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #ffffff;
}

/* Hamburger menu (hidden by default) */
#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #425C4B;
  cursor: pointer;
}


/* Footer */
.site-footer {
  background-color: #425C4B;
  color: #F8F7EC;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    display: none;
    background-color: #E4B4BC;
    width: 100%;
    padding: 10px 0;
  }

  .nav-menu.open {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}

/* Default content blocks */
.entry-content > * {
  background-color: #FFF; /* white */
  color: #20342D; /* dark text */
  padding: 1.5rem 2rem;
  margin-top: 1rem; /* spacing between blocks */
}

/* Pink background variant */
.entry-content > *.pink-bg {
  background-color: #E4B4BC; /* pink */
  color: #F8F7EC; /* cream text */
}

/* Make sure headings inside pink blocks are cream */
.entry-content > *.pink-bg h2,
.entry-content > *.pink-bg h3 {
  color: #F8F7EC;
}
