/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header, footer, section, aside, nav, article {
  display: block;
}

/* BODY */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  background-color: #c1d6cc;
  background-image: url(images/fishing-background.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

/* GLOBAL IMAGE FIX */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* WRAPPER */
#wrapper {
  width: 1200px;
  max-width: 1200px;
  margin: 20px auto;
  background: transparent;
}
/* HEADER */
header {
  height: auto;
  overflow: visible;
}

header img {
  width: 100%;
  height: auto;
  display: block;
}

/* NAV */
nav {
  background: #009898;
  min-height: 52px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 12px;
}

nav li {
  margin-right: 8px;
}

nav a {
  display: block;
  padding: 0 14px;
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* TOP AD BANNER */
.ad-banner {
  text-align: center;
  margin: 20px 0;
}

.ad-banner img {
  width: 100%;
  max-width: 728px;
  height: auto;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* MAIN */
#main {
  background: #fff;
  overflow: hidden;
  padding: 20px 0 0;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* SIDEBAR */
#sidebar {
  float: left;
  width: 200px;
  padding-left: 20px;
}

.asidebox {
  background: #ffebdc;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 13px;
}

.asidebox img {
  margin-top: 10px;
}

.asidebox p {
  margin-top: 10px;
}

/* CONTENT */
#content {
  float: left;
  width: 860px;
  margin: 10px 30px;
}

article {
  margin-bottom: 30px;
}

article::after {
  content: "";
  display: table;
  clear: both;
}

article p {
  margin-bottom: 14px;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  color: #da92aa;
  margin-bottom: 18px;
  line-height: 1.2;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

/* FIGURES */
figure {
  width: 30%;
  float: left;
  margin-right: 5%;
  text-align: center;
  margin-bottom: 20px;
}

figure:last-child {
  margin-right: 0;
}

figure img {
  width: 100%;
}

figcaption {
  font-size: 12px;
  margin-top: 6px;
}

/* LINKS */
a {
  color: #7a2f52;
}

a:hover {
  opacity: 0.9;
}

/* SQUARE AD BANNER */
.ad-square {
  text-align: center;
  margin: 35px auto 25px;
}

.ad-square a {
  display: inline-block;
}

.ad-square img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* WHAT'S NEW */
.whats-new {
  text-align: center;
  margin: 40px 0;
}

.new-images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.new-images figure {
  flex: 1;
  margin: 0;
  text-align: center;
}
.new-images img {
  width: 100%;
  max-width: 170px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto;
}


/* PROMO SECTION */
.promo-section {
  background: #3b3235;
  color: #ffffff;
  margin-top: 0;
  padding: 50px 30px 35px;
  text-align: center;
}

.promo-inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.promo-section h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 20px;
}

.promo-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.promo-section a {
  color: #ffffff;
  text-decoration: underline;
}

.promo-banner {
  margin: 25px 0 30px;
}

.promo-banner img {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.promo-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  flex-wrap: wrap;
  margin-top: 20px;
  text-align: center;
}

.promo-column {
  min-width: 180px;
}

.promo-column h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.promo-column p {
  margin: 6px 0;
}

/* FOOTER */
footer {
  background: #3b3235;
  color: #ffebdc;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
  margin-bottom: 8px;
}

footer p:last-child {
  margin-bottom: 0;
}

footer a {
  color: #ffebdc;
  text-decoration: underline;
}

