@charset "utf-8";
img, object, embed, video {
  max-width: 100%;
  display: block;
}
.focus {
  outline: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #FFFFFF;
}
#disclamer section h3 {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 2em;
}

body { /* Mobile first kleinste schermen (default) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-size: 1.2rem;
    background-color: #EFEFEF;
    overflow-x: hidden;
    margin-top: 4.1em;
}
.header { /*Begin vangstberichten strandvangsten*/
  background-color: #24262B;
  color: white;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 200;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .nav-container .logo {
  width: 100%;
  height: 100%;
  max-width: 277px;
  max-height: 53px;
}
ul li .menu-item {
    display: flex;        
    align-items: center;   
    gap: 8px;              
    text-decoration: none; 
}
ul li .menu-item {
}

ul li .menu-icon {
    width: 28px;            /* Pas de grootte van de afbeelding aan */
    height: auto;
}
.hamburger { /* begin Hamburger-menu */
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 25px;
}
.hamburger .line {
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
}
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}
.hamburger.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
}
.side-menu {
  position: fixed;
  top: 4.8rem;
  right: -300px;
  width: 300px;
  height: 42%;
  background-color: #24262B;
  color: white;
  overflow-y: auto;
  transition: right 0.4s ease-in-out;
  z-index: 100;
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu li {
  margin-top: 2rem;
  padding: 1rem;
  border-bottom: 1px solid #555;
}
.side-menu a {
  color: white;
  text-decoration: none;
}
ul li a:hover {
  color: #e91e63;
}
.side-menu.active {
  right: 0;
} /* Einde Hamburger-menu */
/* begin Mobile van de Home pagina */
#main-container {
    overflow: hidden;
    max-width: 1366px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 0px auto;
    background-color: #FFFFFF;
}
#main-container .content #introbox .introductietekst {
    padding: 1em;
}

#main {
    background-image: url("../foto/main-bg.JPG");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main .container .main-content .line {
  width: 200px;
  border-top: 3px solid #e91e63;
  color: #efefef;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}
#main .container .main-content p {
  width: 100%;
  padding: 0em 0, 5em;
  min-height: 233px;
  font-size: 1.2rem;
  margin-top: -10px;
  text-align: center;
}
#main .container .main-content a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main .container .main-content a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main .container .main-content a:hover::before {
  top: 0;
}
#main .container .main-content a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Einde van de Home pagina */
/* Begin vangstberichten strandvangsten */
#main-container #main1 {
  background-image: url("../foto/main-bg.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container #main1 .container1 {
  max-width: 100%;
}
#main1 .container1 .main-content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main1 .container1 .main-content1 h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main1 .container1 .main-content1 a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main1 .container1 .main-content1 a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main1 .container1 .main-content1 a:hover::before {
  top: 0;
}
#main1 .container1 .main-content1 a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Einde vangstberichten strandvangsten */
/* Begin vangstberichten havenhoofd */
#main-container #main2 {
  background-image: url("../foto/havenhoofd.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 350px;
  width: 100%;
}
#main-container #main2 .container2 {
  max-width: 100%;
}
#main2 .container2 .main-content2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main2 .container2 .main-content2 h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
  padding-bottom: 14px;
  text-align: center;
}
#main2 .container2 .main-content2 a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main2 .container2 .main-content2 a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main2 .container2 .main-content2 a:hover::before {
  top: 0;
}
#main2 .container2 .main-content2 a:hover {
  background-color: #0eb3d6;
  color: #000000;
  font-family: Roboto, sans-serif;
}
/* Einde vangstberichten havenhoofd */
/* Begin vangstberichten garnalenvangst */
#main-container #main3 {
  background-image: url(../foto/garnalenvissen.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container #main3 .container3 {
  max-width: 100%;
}
#main3 .container3 .main-content3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main3 .container3 .main-content3 h1 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 1.5em;
}
#main3 .container3 .main-content3 a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main3 .container3 .main-content3 a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main3 .container3 .main-content3 a:hover::before {
  top: 0;
}
#main3 .container3 .main-content3 a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
a {
  text-decoration: none;
}
/* Einde vangstberichten garnalenvangst */
/* Begin plaats hier je vangstberichten  */
#main-container #main4 {
  background-image: url("../foto/main-bg.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container .main4 .container4 {
  max-width: 100%;
}
#main4 .container4 .main-content4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pading-top: 1rem;
  color: #EFEFEF;
}
#main4 .container4 .main-content4 h1 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 1.5em;
}
#main4 .container4 .main-content4 a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main4 .container4 .main-content4 a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main4 .container4 .main-content4 a:hover::before {
  top: 0;
}
#main4 .container4 .main-content4 a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Begin wintervisperiode loopt van 21 december tot 21 maart. */
#main-container #main-w {
  background-image: url("../foto/winter.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container #main-w .container-w {
  width: 100%;
}
#main-w .container-w .main-content-w {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-w .container-w .main-content-w h1 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 8.5em;
}
#main-w .container-w .main-content-w a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main-w .container-w .main-content-w a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main-w .container-w .main-content-w a:hover::before {
  top: 0;
}
#main-w .container-w .main-content-w a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Einde wintervisperiode loopt van 21 december tot 21 maart. */
/* Begin lentevisperiode loopt van 21 maart tot 21 juni. */
#main-container #main-l {
  background-image: url("../foto/lente.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container #main-l .container-l {
  width: 100%;
}
#main-l .container-l .main-content-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-l .container-l .main-content-l h1 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 1.5em;
}
#main-l .container-l .main-content-l a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main-l .container-l .main-content-l a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main-l .container-l .main-content-l a:hover::before {
  top: 0;
}
#main-l .container-l .main-content-l a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Einde lentevisperiode loopt van 21 maart tot 21 juni. */
/* Begin zomervisperiode loopt van 21juni tot 21 september. */
#main-container #main-z {
  background-image: url("../foto/main-bg.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container #main-z .container-l {
  width: 100%;
}
#main-z .container-z .main-content-z {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-z .container-z .main-content-z h1 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 1.5em;
}
#main-z .container-z .main-content-z a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main-z .container-z .main-content-z a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main-z .container-z .main-content-z a:hover::before {
  top: 0;
}
#main-z .container-z .main-content-z a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Einde zomervisperiode loopt van 21juni tot 21 september. */
/* Begin herfstvisperiode loopt van 21 september tot 21 december. */
#main-container #main-h {
  background-image: url("../foto/herfst.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 350px;
}
#main-container #main-h .container-h {
  width: 100%;
}
#main-h .container-h .main-content-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-h .container-h .main-content-h h1 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 1.5em;
}
#main-h .container-h .main-content-h a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #0eb3d6;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  border-radius: 5px;
  z-index: 10;
  padding: 8px 25px;
  top: -2em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 1.5em;
}
#main-h .container-h .main-content-h a::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #f7a800;
  transition: top 0.4s ease;
}
#main-h .container-h .main-content-h a:hover::before {
  top: 0;
}
#main-h .container-h .main-content-h a:hover {
  background-color: #0eb3d6;
  color: #000000;
}
/* Einde herfstvisperiode loopt van 21 september tot 21 december. */
/* Begin Paginering strand-vangsten */
.pagination {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination a {
    display: inline-block;
    padding-right: 10px;
    margin-top: 0;
    margin-right: 3px;
    margin-left: 3px;
    margin-bottom: 0;
    text-decoration: none;
    color: #000000;
    border-radius: 5px;
    text-shadow: 0px 0px #000000;
    padding-left: 10px;
}

.pagination a.active {
    font-weight: normal;
}

.pagination a:hover {
    text-decoration: underline;
    color: #298CF5;   
}

.pagination .prev, .pagination .next {
    font-weight: normal;
}
.image-text-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.image-text-container .text-content {
    flex: 1;
    min-width: 250px;
}
.image-text-container .text-content ul {
    list-style-type: none;
}

.image-text-container .responsive-img  {
    width: 250px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}
/* Einde Paginering strand-vangsten */

/* Begin  strandhengel  zeemolen voorslag zeeonderlijn zeeaas strandvisuitrusting visweer footer */
#main-container #voorslag, #zeemolen, #strandhengel, #zeeonderlijn, #zeeaas, #visuitrusting, #getijde, #maan, #visweer, #mui {
    width: 92%;
    max-width: 890px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 2em;
}
#main-container h3 {
    padding-top: 2em;
}
#main-container #voorslag h2,  #zeemolen h2, #strandhengel h2, #zeeonderlijn h2, #zeeaas h2, #visuitrusting h2,#getijde h2, #maan h2, #visweer h2, #mui h2 {
    color: #3050BF;
    font-size: 1.5rem;
}
#main-container #voorslag h3, #zeemolen h3,  #strandhengel h3, #zeeonderlijn h3, #zeeaas h3, #visuitrusting h3,  #visuitrusting h3, #getijde h3, #maan h3,  #visweer h3,  #mui h3 {
    color: #007BFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: left;
}
#main-container #voorslag p, #zeemolen p, #strandhengel p, #zeeonderlijn p, #zeeaas p, #visuitrusting p, #getijde p, #maan p, #visweer p, #mui p {
    margin: 0 0 10px;
}
#voorslag .video-container, #zeemolen .video-container, #zeeonderlijn .video-container,  #zeeaas .video-container, #mui .video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#voorslag section p img {
    max-width: 100px;
    width: 100%;
    border-radius: 50%;
    float: left;
    padding-right: 10px;
}
#main-container #voorslag ul, #zeemolen ul, #strandhengel ul, #zeeonderlijn ul,  #zeeaas ul, #visuitrusting ul, #getijde ul, #maan ul, #mui ul {
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style-type: none;
}
#main-container #voorslag ul li,  #zeemolen ul li, #strandhengel ul li, #zeeonderlijn ul li, #zeeaas ul li,  #visuitrusting ul li, #getijde ul li, #visweer ul li, #mui ul li, .introductietekst ul li {
    font-size: 18px;
    line-height: 1.6;  /* Betere leesbaarheid */
    margin-bottom: 8px; /* Extra ruimte tussen de punten */
    display: flex;
    align-items: flex-start;
}
#main-container #voorslag ul li::before,  #zeemolen ul li::before, #strandhengel ul li::before,  #zeeonderlijn ul li::before, #zeeaas ul li::before, #visuitrusting ul li::before,  #getijde ul li::before, #maan ul li::before, #visweer ul li::before, #mui ul li::before,  .introductietekst ul li::before {
    content: "🔹 ";
    font-size: 18px;
    margin-right: 5px;
}
#main-container #voorslag ul li, #zeemolen ul li, #strandhengel ul li, #strandhengel ul li, #zeeonderlijn ul li, #zeeaas ul li,  #visuitrusting ul li, #getijde ul li, #maan ul li, #visweer ul li,  #mui ul li{
     word-break: break-word;
    overflow-wrap: break-word;
}
#main-container #getijde .image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
tbody tr th {
    padding: 5px;
}
tbody tr td {
    padding-left: 7px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 1.2rem;
}
#main-container #main-sh {
  background-image: url("../foto/strandhengel.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 350px;
}
#main-sh .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-sh .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-zm {
  background-image: url("../foto/zeemolen.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 350px;
}
#main-zm .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-zm .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.3em;
  text-align: center;
  padding-bottom: 14px;
}

#main-container #main-vslag {
    background-image: url("../foto/voorslag.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px; 
}
#main-vslag .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-vslag .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-onderl {
    background-image: url("../foto/zeeonderlijn.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px; 
}
#main-onderl .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-onderl .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-zeeaas {
    background-image: url("../foto/zeeaas.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px; 
}
#main-zeeaas .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-zeeaas .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-getij {
    background-image: url(../foto/getij.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-getij .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-getij .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}

#main-container #main-maan {
    background-image: url(../foto/maan.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-maan .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-maan .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-visuitrust {
    background-image: url("../foto/visuitrust.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-visuitrust .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-visuitrust .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-katwijk {
    background-image: url(../foto/katwijk.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-katwijk .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-katwijk .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}

#main-container #main-watering {
    background-image: url(../foto/watering.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-watering .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-watering .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}

#main-container #main-visweer {
    background-image: url("../foto/visweer.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-visweer .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-visweer .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
#main-container #main-mui {
    background-image: url("../foto/mui1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 350px;
}
#main-mui .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EFEFEF;
}
#main-mui .container .main-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 8.5em;
  text-align: center;
  padding-bottom: 14px;
}
/* Einde  strandhengel  zeemolen voorslag zeeonderlijn zeeaas strandvisuitrusting footer */
/* Begin van de footer */
#main-container .footer {
  background-color: #24262B;
  padding-bottom: 0;
  margin-bottom: 70px;
}
#main-container .footer .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: 2rem;
}
.footer .row .footer-box {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}
.row .footer-box h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 61px;
  padding-bottom: 10px;
}
.row .footer-box ul {
  list-style: none;
}
.row .footer-box h4::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 150px;
}
.footer-box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-box ul li {
  color: #FFFFFF;
}
.footer-box ul li a {
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 300;
  display: block;
  color: #FFFFFF;
}
.footer-box ul li a:hover {
  color: #e91e63;
}
.row .footer-box h4 {
  text-transform: uppercase;
  text-align: left;
}
.footer-box .volg-ons {
  margin-top: 40px;
  text-align: left;
}
.footer-box .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-box .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}
.footer .copyright {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  color: #FFFFFF;
  margin-left: auto;
  margin-right: auto
}
.copyright span a {
  color: #FFFFFF;
}
.copyright span a:hover {
  color: #e91e63;
}
/* Einde van de footer */

/* Begin Overons, Disclamer, Huisregels */
#main-container #overons {
    width: 92%;
    max-width: 890px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
#main-container #overons h2 {
    margin-top: 3em;
    color: #3050BF;
    font-size: 1.5rem;
}
#main-container #overons h3 {
    color: #007BFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: left;
}
#main-container #overons p {
    margin: 0 0 10px;
}
#overons section p img {
    max-width: 100px;
    width: 100%;
    border-radius: 50%;
    float: left;
    padding-right: 10px;
}

#main-container #disclamer {
    width: 92%;
    max-width: 890px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
#main-container #disclamer h2 {
    margin-top: 3em;
    color: #3050BF;
    font-size: 1.5rem;
}
#disclamer section h3 {
    color: #007BFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: left;
}
#disclamer section p {
    margin: 0 0 10px;
}
#main-container #huisregels {
    width: 100%;
    max-width: 1200px;
    margin: 2em auto;
    background: #EEFAFC;
    padding: 1.5em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
#main-container #huisregels h2 {
    color: #3050BF;
    font-size: 1.5rem;
}
#huisregels section h3 {
    color: #007BFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: left;
}
#huisregels section ul l {
    margin-bottom: 2rem;
}
#main-container #backToTop { 
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 35px;
    height: 35px;
    background-color: #0eb3d6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Einde Overons, Disclamer, Huisregels */
 

/* Begin Stijlen voor tablets (481px tot 768px) */
@media screen and (min-width: 482px) and (max-width: 768px) {
  .header {
    max-width: 768px;
  }
  #main .container .main-content h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 1.5em;
    padding-bottom: 14px;
    text-align: center;
  }
  .image-text-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    }

 .image-text-container .responsive-img {
        margin-top: 10px;
    }  
  #main .container {
    max-width: 768px;
  }
  #main .container .main-content {
    padding-bottom: 2em;
  }
  #main-container .container #main {
    max-width: 768px;
    height: 350px;
  }
  #main .container .main-content .line {
    width: 400px;
  }
  #main .container .main-content p {
    width: 100%;
    font-size: 1.1rem;
  }
  #main .container .main-content a {
    top: -2em;
  }
  /* Pagina Strandvangst */
  #main1 .container1 .main-content1 h1 {
    font-size: 2rem;
  }
  #main1 .container1 .main-content1 a {
    padding: 8px 25px;
    top: -2em;
  }
  #main1 .container1 .main-content1 a:hover {
    background-color: #0eb3d6;
    color: #000000;
  }
  /* Pagina Havenhoofd vangst */
  #main2 .container2 .main-content2 h1 {
    font-size: 2rem;
    margin-top: 1.5em;
  }
  #main2 .container2 .main-content2 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Pagina Garnalenvangst */
  #main3 .main-content3 h1 {
    font-size: 2rem;
  }
  #main3 .container3 .main-content3 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Pagina Vangst toevoegen */
  .main-content4 h1 {
    font-size: 2rem;
  }
  #main-container .footer .row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
  }
#main-container #backToTop { 
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1rem;
    
}
}
/* Einde Stijlen voor tablets (481px tot 768px) */
/* Begin Stijlen voor tablets (769px tot 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header {
    max-width: 100%;
  }
  .header .nav-container .logo {
    margin-left: 1rem;
  }
  .hamburger {
    display: none;
  }
  .main .container {
    max-width: 1024px;
  }
  #main .container .main-content {
    padding-bottom: 2em;
  }
  #main-container #main {
    max-width: 1024px;
  }
  #main .container .main-content h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 1.5em;
    padding-bottom: 14px;
    text-align: center;
  }
  #main .container .main-content .line {
    width: 530px;
    border-top: 3px solid #e91e63;
    color: #efefef;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
  }
  #main .container .main-content p {
    width: 60%;
    line-height: 1.6;
    font-size: 1.3rem;
  }
  #main .container .main-content a {
    top: -2em;
    font-size: 1.4rem;
  }
  /* Pagina Strandvangst */
  #main1 .container1 .main-content1 h1 {
    font-size: 2rem;
  }
  #main1 .container1 .main-content1 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Pagina Havenhoofd vangst */
  #main2 .container2 .main-content2 h1 {
    font-size: 2rem;
  }
  #main2 .container2 .main-content2 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Pagina Havenhoofd vangst */
  #main3 .container3 .main-content3 h1 {
    font-size: 2rem;
  }
  #main3 .container3 .main-content3 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Pagina Vangst toevoegen */
  .container4 .main-content4 h1 {
    font-size: 2.5rem;
  }
  #main4 .container4 .main-content4 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Begin van het top menu */
  .side-menu {
    position: static; /* Verwijder de vaste positionering */
    width: auto; /* Breedte aangepast naar de inhoud */
    height: auto; /* Geen specifieke hoogte */
    background-color: transparent; /* Transparante achtergrond */
    color: inherit; /* Erf kleur van de container */
    display: flex; /* Gebruik flexbox voor horizontale weergave */
    justify-content: flex-end; /* Menu-items naar rechts */
    align-items: center; /* Horizontaal gecentreerd */
  }
  .side-menu li {
    margin: 0; /* Verwijder extra marges */
    padding: 0.5rem 1rem; /* Pas padding aan voor horizontale menu-items */
    border: none; /* Verwijder de onderste lijn */
  }
  .side-menu ul {
    display: flex; /* Horizontale lijst */
    list-style: none; /* Verwijder standaard lijststijl */
    margin: 0;
    padding: 0;
    gap: 20px; /* Ruimte tussen menu-items */
  }
  .side-menu li {
    display: inline-block; /* Horizontale uitlijning */
  }
  .side-menu a {
    text-decoration: none; /* Geen onderlijning */
    color: white; /* Zorg dat de tekst wit is */
    font-size: 1.1rem; /* Tekstgrootte aanpassen */
    transition: color 0.3s ease; /* Hover-animatie */
  }
  .side-menu a:hover {
    color: #e91e63; /* Hoverkleur */
  }
  .side-menu ul {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
    margin: 0; /* Zorgt ervoor dat er geen extra ruimte rondom de lijst staat */
    padding: 0; /* Verwijdert eventuele padding */
    border: none; /* Zorgt ervoor dat er geen randen worden weergegeven */
  }
  .side-menu li {
    display: inline-block;
    margin: 0; /* Verwijdert eventuele extra ruimte tussen de items */
    padding: 0; /* Verwijdert ongewenste padding */
  }
  .side-menu {
    border: none; /* Verwijdert randen die per ongeluk zijn toegevoegd */
    box-shadow: none; /* Verwijdert eventuele schaduwen */
  }
  #main-container .footer {
    max-width: 1366px;
    width: 100%;
  }
  #main-container .footer .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
  }
  .footer .row .footer-box {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start
  }
    
  /* Begin Overons, Disclamer, Huisregels */
#main-container #overons, #main-container #voorslag{
    width: 100%;
    max-width: 890px;
}
#main-container #overons h2 {
    font-size: 2rem;
}
#main-container #overons h3 {
    font-size: 1.4rem;
}


#main-container #disclamer {
    width: 100%;
    max-width: 890px;
}
#main-container #disclamer h2 {
    font-size: 2rem;
}
#disclamer section h3 {
    font-size: 1.4rem;
}
#disclamer section p {
    margin: 0 0 10px;
}
#main-container #huisregels {
    width: 100%;
    max-width: 725px;
}
#main-container #huisregels h2 {
    font-size: 2rem;
}
#huisregels section h3 {
    font-size: 1.4rem;
}
#huisregels section ul l {
    margin-bottom: 2rem;
}
/* Einde Overons, Disclamer, Huisregels */
  
    
  #main-container #backToTop { 
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: #0eb3d6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#main-container #backToTop:hover {
    background-color: #f7a800;
    color: #202020;
}
}
/* Einde Stijlen voor tablets (769px tot 1024px) */
/* Begin Stijlen voor tablets (1025px tot 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .header {
    width: 100%;
    display: flex;
  }
  .header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1366px;
    margin: auto;
    padding-left: 0rem;
  }
  .hamburger {
    display: none;
  }
  /* Begin van het top menu */
  .side-menu {
    position: static; /* Verwijder de vaste positionering */
    width: auto; /* Breedte aangepast naar de inhoud */
    height: auto; /* Geen specifieke hoogte */
    background-color: transparent; /* Transparante achtergrond */
    color: inherit; /* Erf kleur van de container */
    display: flex; /* Gebruik flexbox voor horizontale weergave */
    justify-content: flex-end; /* Menu-items naar rechts */
    align-items: center; /* Horizontaal gecentreerd */
  }
  .side-menu li {
    margin: 0; /* Verwijder extra marges */
    padding: 0.5rem 1rem; /* Pas padding aan voor horizontale menu-items */
    border: none; /* Verwijder de onderste lijn */
  }
  .side-menu ul {
    display: flex; /* Horizontale lijst */
    list-style: none; /* Verwijder standaard lijststijl */
    margin: 0;
    padding: 0;
    gap: 20px; /* Ruimte tussen menu-items */
  }
  .side-menu li {
    display: inline-block; /* Horizontale uitlijning */
  }
  .side-menu a {
    text-decoration: none; /* Geen onderlijning */
    color: white; /* Zorg dat de tekst wit is */
    font-size: 1.2rem; /* Tekstgrootte aanpassen */
    transition: color 0.3s ease; /* Hover-animatie */
  }
  .side-menu a:hover {
    color: #e91e63; /* Hoverkleur */
  }
  .side-menu ul {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
    margin: 0; /* Zorgt ervoor dat er geen extra ruimte rondom de lijst staat */
    padding: 0; /* Verwijdert eventuele padding */
    border: none; /* Zorgt ervoor dat er geen randen worden weergegeven */
  }
  .side-menu li {
    display: inline-block;
    margin: 0; /* Verwijdert eventuele extra ruimte tussen de items */
    padding: 0; /* Verwijdert ongewenste padding */
  }
  .side-menu {
    border: none; /* Verwijdert randen die per ongeluk zijn toegevoegd */
    box-shadow: none; /* Verwijdert eventuele schaduwen */
  }
  #main-container #main {
    width: 100%;
    max-height: 100%;
    max-width: 1366px;
    background-image: url(../foto/main-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
  }
  #main .container .main-content {
    padding-bottom: 2em;
  }
  #main .container .main-content h1 {
    font-size: 2rem;
  }
  #main .container .main-content .line {
    width: 50%;
    padding-bottom: 10px;
  }
  #main .container .main-content p {
    width: 50%;
    z-index: 100;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
  }
  #main .container .main-content a {
    padding: 8px 25px;
    top: -2em;
  }
  #main-container #main1 {
    width: 100%;
    max-height: 100%;
    max-width: 1366px;
    background-image: url(../foto/mobile-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
  }
  #main1 .container1 .main-content1 h1 {
    font-size: 2rem;
  }
  #main1 .container1 .main-content1 a {
    padding: 8px 25px;
  }
  #main2.container2 .main-content2 h1 {
    font-size: 2rem;
  }
  #main2 .container2 .main-content2 a {
    padding: 8px 25px;
  }
  #main3 .container3 .main-content3 h1 {
    font-size: 2rem;
  }
  #main3 .container3 .main-content3 a {
    padding: 8px 25px;
  }
  #main4 .container4 .main-content4 h1 {
    font-size: 2rem;
  }
  #main4 .container4 .main-content4 a {
    padding: 8px 25px;
  }
#main-container .paginering {
    margin-bottom: 21px;
}
    #main-container article #huisregels{
    max-width: 800px;
    width: 100%;
    }
  #main-container .footer {
    max-width: 1366px;
    width: 100%;
  }
  #main-container .footer .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.6;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
  }
  .footer .row .footer-box {
    width: 23%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: left;
  }
   #main-container #backToTop { /* Verberg standaard de knop */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: #0eb3d6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#main-container #backToTop:hover {
    background-color: #f7a800;
    color: #202020;
}
}
/* Media query voor bredere schermen vanaf 1367px */
@media screen and (min-width: 1367px) {
  .header {
    background-color: #1a1a1a; /* Donkere achtergrondkleur zoals in je screenshot */
    color: white;
    position: fixed; /* Vaste navigatiebalk bovenaan */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  /* Container met logo en navigatie */
  .nav-container {
    display: flex;
    justify-content: space-between; /* Logo links, menu rechts */
    align-items: center;
    width: 1366px;
    margin: auto;
    ;
  }
  /* Logo */
  .logo a img {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
  /* Begin van het top menu */
  .side-menu {
    position: static; /* Verwijder de vaste positionering */
    width: auto; /* Breedte aangepast naar de inhoud */
    height: auto; /* Geen specifieke hoogte */
    background-color: transparent; /* Transparante achtergrond */
    color: inherit; /* Erf kleur van de container */
    display: flex; /* Gebruik flexbox voor horizontale weergave */
    justify-content: flex-end; /* Menu-items naar rechts */
    align-items: center; /* Horizontaal gecentreerd */
    margin-right: 1rem;
  }
  .side-menu li {
    margin: 0; /* Verwijder extra marges */
    padding: 0.5rem 1rem; /* Pas padding aan voor horizontale menu-items */
    border: none; /* Verwijder de onderste lijn */
  }
  .side-menu ul {
    display: flex; /* Horizontale lijst */
    list-style: none; /* Verwijder standaard lijststijl */
    margin-right: 2rem;
    padding: 0;
    gap: 20px; /* Ruimte tussen menu-items */
  }
  .side-menu li {
    display: inline-block; /* Horizontale uitlijning */
  }
  .side-menu a {
    text-decoration: none; /* Geen onderlijning */
    color: white; /* Zorg dat de tekst wit is */
    font-size: 1.2rem; /* Tekstgrootte aanpassen */
    transition: color 0.3s ease; /* Hover-animatie */
  }
  .side-menu a:hover {
    color: #FF5658; /* Hoverkleur */
  }
  .side-menu ul {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
    margin: 0; /* Zorgt ervoor dat er geen extra ruimte rondom de lijst staat */
    padding: 0; /* Verwijdert eventuele padding */
    border: none; /* Zorgt ervoor dat er geen randen worden weergegeven */
  }
  .side-menu li {
    display: inline-block;
    margin: 0; /* Verwijdert eventuele extra ruimte tussen de items */
    padding: 0; /* Verwijdert ongewenste padding */
  }
  .side-menu {
    border: none; /* Verwijdert randen die per ongeluk zijn toegevoegd */
    box-shadow: none; /* Verwijdert eventuele schaduwen */
  }
  .hamburger {
    display: none;
  }
  /* begin van de Home pagina */
  #main .container .main-content {
    padding-bottom: 2em;
  }
  #main .container .main-content h1 {
    font-size: 2rem;
    margin-top: 1.5em;
  }
  #main .container .main-content .line {
    width: 49%;
    padding-bottom: 10px;
  }
  #main .container .main-content p {
    width: 50%;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  #main .container .main-content a {
    padding: 8px 25px;
    top: -2em;
  }
  /* begin van de Strandvangsten pagina */
  #main1 .container1 .main-content1 h1 {
    font-size: 2rem;
    margin-top: 1.5em;
  }
  #main1 .container1 .main-content1 .line {
    width: 30%;
    padding-bottom: 10px;
  }
  #main1 .container1 .main-content1 p {
    width: 50%;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  #main1 .container1 .main-content1 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Einde van de Strandvangsten pagina */
  /* Begin van de Havenhoofd vangsten pagina */
  #main2 .container2 .main-content2 h1 {
    font-size: 2rem;
  }
  #main2 .container2 .main-content2 a {
    padding: 8px 25px;
    top: -2em;
  }
  #main3 .container3 .main-content3 h1 {
    font-size: 2rem;
  }
  #main3 .container3 .main-content3 a {
    padding: 8px 25px;
    top: -2em;
  }
  /* Einde van de Garnalenvangsten pagina */
  /* Begin van de Vangst Toevoegen pagina */
  .container4 .main-content4 h1 {
    font-size: 2.5rem;
  }
  .container4 .main-content4 .line {
    width: 39%;
  }
  .container4 .main-content4 p {
    width: 50%;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  #main4 .container4 .main-content4 a {
    padding: 8px 25px;
    top: -2em;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 1.5em;
  }
  /* Einde van de Vangst Toevoegen pagina */
  #main-container .footer {
    max-width: 1366px;
    width: 100%;
  }
  #main-container .footer .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.6;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
  }
  .footer .row .footer-box {
    width: 23%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: left;
  }
   #main-container #backToTop { /* Verberg standaard de knop */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: #0eb3d6;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#main-container #backToTop:hover {
    background-color: #f7a800;
    color: #202020;
}
   
 
}
@media (max-width: 870px) {
  .container .main-content h1 {
    font-size: 2.2rem;
  }
}
