/*
 * Global styles for the FatCoolBoats landing page.
 * This stylesheet sets up a simple layout with a header
 * and a centered image. The header has a white background
 * with a subtle shadow and padding to give the logo room
 * to breathe. The main section centers the provided image.
 */

/* Reset default margins to remove unwanted spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default margin on the html element itself to allow full‑width header */
html {
  margin: 0;
  padding: 0;
}

/* Basic body styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  /* Ensure the body fills the viewport height */
  min-height: 100vh;
  margin: 0;
}

/* Header container styling */
header {
  /* Ensure the header spans the full available width */
  width: 100%;
  /* Remove the debug border */
  background-color: #ffffff;
  /* Remove shadow and padding so the header acts as a banner */
  padding: 0;
  margin: 0;
}

/* The header image spans the full width of the page */
header img {
  /* Make the image fill the header’s width */
  width: 100%;
  height: auto;
  display: block;
}

/* Remove the previous logo container styles since the new logo banner fills the header */

/* Main section to center the middle image on the page */
main {
  width: 100%;
  padding: 40px 0;
  /* Center the content horizontally */
  text-align: center;
}

/* Styling for the centered image */
.center-image img {
  max-width: 80%;
  width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}