@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Anton Sc";
}

h1{
  text-transform: uppercase;
}
p {
  font-family: "Inter";
}

li{
  list-style: none;
}

button{
  text-transform: uppercase;
  margin-top: 40px;
  background-color: #F2B441;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
}

button:hover{
  cursor: pointer;
}

header {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  z-index: 999;
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  background-color: #000000;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.nav-branding {
  max-height: 65px;
  width: auto;
}

.nav-branding img {
  max-height: 60px;
  width: auto;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: 0.7s ease;
}

.nav-link:hover {
  color: #F2B441;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-menu {
    flex-direction: column;
    background-color: #000000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-branding {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(media/gent-skyline.webp);
  background-size: cover;
  background-position: center;
  filter: blur(1.5px);
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

.hero-section h1, 
.hero-section h2, 
.hero-section h3 {
  font-family: 'Poppins', sans-serif;
  color: #F2B441;
  position: relative;
  z-index: 2;
  /* Stronger multi-layer shadow for image backgrounds */
  text-shadow: 
    0px 2px 6px rgba(0, 0, 0, 0.8),
    0px 4px 12px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  letter-spacing: 1px;
}

/* Heading hierarchy for readability */
.hero-section h1 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 15px;
}

.hero-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 25px;
  margin-left: 15px;
  margin-right: 15px;
}

.hero-section h3 a {
  color: #F2B441;           /* keep yellowish color */
  text-decoration: underline; /* keep underline to show it's clickable */
}
.hero-section h3 a:visited {
  color: #F2B441; /* prevent turning purple after click */
}

.hero-section h3 a:hover,
.hero-section h3 a:focus {
  color: #F2B441; /* optional: lighter yellow on hover/focus */
}

/* Make phone number less bold */
.hero-section h3 a {
  font-weight: 400 !important;
}

.hero-section h3 a:hover {
  text-decoration: underline;
}

.hero-section button{
  z-index: 2;
  position: relative;
  color: #000000;
  background-color: #F2B441;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 30px;
  margin-top: 30px;
  border-radius: 25px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 180, 65, 0.3);
}

.hero-section button:hover {
  background-color: #ffc941;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 180, 65, 0.4);
}






.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.intro h2{
  color: #000000;
  margin-bottom: 30px;
}

.intro-left, .intro-right {
  width: 48%;
}

.intro-right img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column-reverse;
    align-items: center;
  }

  .intro-left, .intro-right {
    width: 100%;
    text-align: center;
  }

  .intro-right img {
    margin-bottom: 20px;
  }
}

.taxidiensten {
  text-align: center;
  padding: 20px;
  background-color: #F2B441;
}

.taxidiensten h3 {
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.box {
  background-color: #260505;
  color: #F2E4C9;
  border-radius: 15px;
  padding: 20px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.grid-container > .box {
  align-self: stretch;
}

.box img.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.box:hover {
  transform: translateY(-10px);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.box {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.box h4, .box p {
  margin: 0;
  width: 100%;
  text-align: center;
}

.box .icon {
  margin-bottom: 20px;
}


.contact {
  text-align: center;
  padding: 20px;
  background-color: #260505;
  color: white;
  border-radius: 15px;
  max-width: 600px;
  margin: 20px auto;
}

.contact h3 {
  margin-bottom: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

.form textarea {
  height: 100px;
  resize: none;
}

button {
  text-transform: uppercase;
  margin-top: 40px;
  background-color: #F2B441;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
}

.terms {
  margin-top: 10px;
  text-align: left;
}

.terms label {
  font-size: 12px;
  color: #f5c456;
}

.terms a {
  color: #f5c456;
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-buttons button {
  padding: 10px 20px;
  margin: 10px auto;
  width: auto;
}

@media (min-width: 769px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }

  .contact-buttons button {
    width: auto;
  }
}

.icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: #F2B441;
}

.icon-box {
  background-color: #260505;
  color: #f1e0c5;
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  width: 200px;
}

.icon-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.icon-box p {
  margin: 0;
  font-size: 1.2em;
}

.icon-box:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .icons {
    flex-direction: column;
  }

  .icon-box {
    width: 80%;
    margin: 10px auto;
  }
}

footer {
  background-color: #000;
  padding: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  text-align: left;
  margin-right: 30px;
}

.footer-logo img {
  max-width: 100px;
}

.sitemap {
  flex: 1;
  text-align: right;
  margin-left: 30px;
}

.sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap li {
  margin: 5px 0;
  font-size: 1.2em;
  text-transform: uppercase;
}

.sitemap a{
  text-decoration: none;
  color: #fff;
}

.sitemap a:hover{
  color: #F2B441;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy, .ginfra {
  font-size: 1em;
}

.ginfra a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter"
}

.ginfra a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo, .sitemap {
    text-align: center;
    margin: 0;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  text-align: center;
  font-size: 1.5em;
  z-index: 1000;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
}

.betaalinfo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #000000;
}

.betaalinfo-text {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.betaalinfo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #000;
}

.payment-logo {
    max-width: 100px;
    height: auto;
    margin: 10px;
}


@media (max-width: 768px) {
    .payment-logo {
        max-width: 70px;
    }
}

/* Privacy Policy Styling */
.privacy-hero {
    background: linear-gradient(135deg, #F2B441 0%, #e6a338 100%);
    padding: 60px 20px 60px 20px;
    text-align: center;
    margin-top: 70px;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    color: #260505;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-intro {
    color: #260505;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacybeleid {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #F2B441;
}

.privacy-section h2 {
    color: #260505;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F2B441;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-list {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-list li {
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
}

.privacy-list li::before {
    content: "✓";
    color: #F2B441;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.business-info p,
.contact-info p {
    background: #f8f9fa;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 8px;
    border-left: 3px solid #F2B441;
}

.contact-section {
    background: linear-gradient(135deg, #260505 0%, #3d0808 100%);
    color: white;
    border-left: 5px solid #F2B441;
}

.contact-section h2 {
    color: #F2B441;
    border-bottom: 2px solid #F2B441;
}

.contact-section p {
    color: white;
}

.contact-info p {
    background: rgba(242, 180, 65, 0.1);
    border-left: 3px solid #F2B441;
    color: white;
}

.contact-section a {
    color: #F2B441;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    color: #FFD366;
    text-decoration: underline;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 15px 40px 15px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-intro {
        font-size: 1rem;
    }
    
    .privacybeleid {
        padding: 40px 15px;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}
