/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

.book p {
  text-align: center;
}

.bookpromo {
  display: inline-block;
  margin: 10px auto;
}

.site-header {
    text-align: center;
    padding-top: 20px;
}

.boat1 {
    width: 150px;   /* Change this number */
    height: auto;   /* Keeps proportions correct */
}
.boat2 {
    width: 150px;   /* Change this number */
    height: auto;   /* Keeps proportions correct */
}


.logo {
    max-width: 200px;   /* Adjust size if needed */
    height: auto;
}


.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-weight: bold;
  letter-spacing: 1px;
}

.cta:hover {
  background: #111;
  color: #fff;
}

/* Sections */
section {
  padding: 60px 0;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Grid layout */
.grid,
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card,
.book-card {
  border: 1px solid #eee;
  padding: 15px;
}

.card img,
.book-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.card h3,
.book-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p,
.book-card p {
  font-size: 14px;
  margin-bottom: 12px;
}

.book-link {
  text-decoration: none;
  color: #111;
  font-weight: bold;
}

.book-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #f8f8f8;
  border-top: 1px solid #eee;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
