/* style.css – simple blue layout inspired by colour_blue */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f3e8;
    color: #333333;
    line-height: 1.6;
  }
  
  #page-wrapper {
    width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  /* Header */
  
  header {
    background: linear-gradient(#0074c7, #004c7f);
    color: #ffffff;
    padding: 25px 30px;
  }
  
  header h1 {
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  header p {
    font-size: 14px;
    opacity: 0.9;
  }
  
  /* Primary navigation */
  
  nav.primary-nav {
    background: #2c3e50;
  }
  
  nav.primary-nav ul {
    list-style: none;
    display: flex;
  }
  
  nav.primary-nav li {
    flex: 1;
  }
  
  nav.primary-nav a {
    display: block;
    padding: 12px 10px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
  }
  
  nav.primary-nav a:hover,
  nav.primary-nav a.active {
    background: #1abc9c;
  }
  
  /* Layout: content + sidebar */
  
  #content-area {
    display: flex;
    padding: 20px 30px 30px 30px;
  }
  
  main {
    flex: 2.8;
    margin-right: 25px;
  }
  
  aside {
    flex: 1.2;
  }
  
  aside h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  aside .sidebar-box {
    margin-bottom: 25px;
  }
  
  aside .sidebar-box ul {
    list-style: none;
    padding-left: 15px;
  }
  
  aside .sidebar-box li {
    margin-bottom: 6px;
  }
  
  /* General text styles */
  
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 8px;
  }
  
  p {
    margin-bottom: 12px;
  }
  
  ul,
  ol {
    margin: 10px 0 15px 25px;
  }
  
  /* Share box */
  
  .share-box {
    margin: 20px 0;
    padding: 12px;
    border: 1px solid #dddddd;
    background-color: #f9fcff;
  }
  
  /* Tables + gallery */
  
  table.photo-gallery {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }
  
  table.photo-gallery th,
  table.photo-gallery td {
    border: 1px solid #dddddd;
    padding: 10px;
    text-align: center;
  }
  
  table.photo-gallery img {
    max-width: 100%;
    height: auto;
  }
  
  /* Forms */
  
  form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  form input[type="text"],
  form input[type="email"],
  form textarea,
  form select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #cccccc;
    border-radius: 3px;
  }
  
  form textarea {
    height: 100px;
    resize: vertical;
  }
  
  form .form-row-inline {
    display: flex;
    gap: 15px;
  }
  
  form .form-row-inline > div {
    flex: 1;
  }
  
  form .button-row {
    margin-top: 15px;
  }
  
  button,
  input[type="submit"] {
    padding: 8px 18px;
    border: none;
    border-radius: 3px;
    background-color: #0074c7;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
  }
  
  button:hover,
  input[type="submit"]:hover {
    background-color: #00558f;
  }
  
  /* Images */
  
  .photo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .photo-list figure {
    flex: 1 1 30%;
    text-align: center;
  }
  
  .photo-list img {
    max-width: 100%;
    height: auto;
    border: 3px solid #eeeeee;
  }
  
  /* Footer + secondary nav */
  
  footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 13px;
  }
  
  footer p {
    margin-bottom: 5px;
  }
  
  #footer-nav a {
    color: #ffffff;
    text-decoration: none;
  }
  
  #footer-nav a:hover {
    text-decoration: underline;
  }
  
  /* Utility */
  
  .highlight {
    color: #1abc9c;
    font-weight: bold;
  }