/* Reset & global */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

/* Navigation */
.nav {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav h1 a {
  color: chartreuse;
  font-size: 1.8rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background-color: white;
  color: blue;
  border-radius: 4px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
}

#About {
  background: url(images/bg11.jpg) center/cover no-repeat;
  color: white;
  min-height: 100vh;   /* full viewport height */
  background-size: cover;   /* scale background to cover screen */
  background-position: center; /* keep it centered */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
background-size: cover;
background-attachment: scroll;  /* avoid issues on mobile */

}

#About img {
  width: 180px;
  height: 180px;
  margin: 20px auto;
  display: block;
}

.second {
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Location */
#Location {
  background: url(images/bg2.jpg) center/cover no-repeat;
  min-height: 100vh;   /* full viewport height */
  background-size: cover;   /* scale background to cover screen */
  background-position: center; /* keep it centered */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
background-size: cover;
background-attachment: scroll;  /* avoid issues on mobile */
align-items:center;

}
#Location iframe {
  width: 90%;
  max-width: 600px;
  height: 300px;
  border: none;
}

/* News */
#News {
  background: url(images/bg3.jpg) center/cover no-repeat;
  color: white;
min-height: 100vh;   /* full viewport height */
  background-size: cover;   /* scale background to cover screen */
  background-position: center; /* keep it centered */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center content vertically */
background-size: cover;
background-attachment: scroll;  /* avoid issues on mobile */

}

#News table {
  margin: 20px auto;
  border-collapse: collapse;
  color: white;
}

#News table td {
  border: 1px solid white;
  padding: 10px 20px;
}

#News h2 {
  margin-top: 30px;
}

#News a{
color:white;
}

/* Contact */
#Contact {
  background: url(images/bg4.jpeg) center/cover no-repeat;
min-height: 100vh;   /* full viewport height */
  background-size: cover;   /* scale background to cover screen */
  background-position: center; /* keep it centered */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center content vertically */
background-size: cover;
background-attachment: scroll;  /* avoid issues on mobile */

}
/* Container for buttons */
.social-buttons {
  display: flex;
  gap: 35px;       /* space between buttons */
  margin-left: 10%;
  margin-top: 1%;
}

/* General button style */
.fa {
  padding: 15px;
  font-size: 30px;
  width: 25px;
  height: 25px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  display: flex;              /* center icons inside */
  justify-content: center;
  align-items: center;
}

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}


/* Email */
.fa-envelope {
  background: #D44638;
  color: white;
}

/* Hover effect */
.fa:hover {
  opacity: 0.8;
}


.iframe{
  width: 100%;
  max-width: 800px;
  height: 700px;   /* adjust if needed */
  border: none;
  display: block;
  margin: 0 auto;
}

.gdpr-note {
  margin: 20px auto;
  max-width: 700px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
}

.gdpr-note a {
  color: white;
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .second {
    font-size: 14px;
    padding: 20px;
    line-height: 1.4;
  }

  #Location iframe {
    height: 250px;
  }
}







