html {
    height: 100%;
}

body {
    width: 100%;
    background-color: #f7f4ef;
    box-sizing: border-box;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto; 
}

@media screen and (max-width: 665px) {
  body {
    padding: 0;
  }
}

/*----header----*/
header {
  text-align: center;
  background-image: linear-gradient(rgb(235,213,191,0.3), rgb(235,213,191,0.9));
}

#logomobile {
  display: none;
  padding: 3% 0;
  max-width: 150px;
  width: 100%; 
  height: auto; 
  margin: 0 auto;
}

@media screen and (max-width: 665px) { 
header img {
  display: none;
}
#logomobile {
  display: block;
 }
} 
/*----menu mobile----*/
#navigationbar {
  display: none; 
  position: sticky;
  top: 0;
  z-index: 100;
  background-image: linear-gradient(rgb(235,213,191,0.9), rgb(235,213,191));
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
  #navigationbar {
    display: block;
  }
  #navbar {
    display: none;
  }
}

.hamburger {
  display: block;
  padding: 15px;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

/* Cross icon when menu is closed (no .active class) */
.hamburger .bar:nth-child(2) {
  opacity: 1;
}

.hamburger .bar:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.hamburger .bar:nth-child(3) {
  transform: translateY(0) rotate(0);
}

/* Cross icon when menu is closed */
.hamburger:not(.active) .bar:nth-child(2) {
  opacity: 0;
}

.hamburger:not(.active) .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger:not(.active) .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hamburger icon when menu is open */
.hamburger.active .bar:nth-child(2) {
  opacity: 1;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(0) rotate(0);
}

.navbar-content {
  display: none; 
  background-color: rgb(235,213,191);
  text-align: center;
}

.navbar-content.active {
  display: block; 
}

.navbar-items {
  display: block;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.navbar-items:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #cce902;
}

/*----navbar----*/
.navbar {
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  transition: top 0.3s;
  text-align: center;
  margin: 0 auto;
  background-image: linear-gradient(rgb(235,213,191,0.9), rgb(235,213,191));
  padding: 10px 0; /* Add padding for better spacing */
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item {
  margin: 0 10px; /* Add spacing between menu items */
}

.nav-link {
  display: block;
  color: black;
  text-align: center;
  padding: 10px 20px; /* Increased padding for button-like appearance */
  font-size: x-large;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px; /* Rounded corners for button style */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
}

.nav-link:hover {
  background-color: #cce902; /* Hover background color (your brand green) */
  color: white; /* White text on hover for contrast */
  transform: scale(1.05); /* Slight scale-up for hover effect */
}

.dropdown-menu {
  background-color: rgb(235,213,191);
  border: none; /* Remove default border */
  border-radius: 5px; /* Match rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.dropdown-menu {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navbar .nav-item:hover .dropdown-menu {
  opacity: 1;
}

.dropdown-item {
  color: black;
  padding: 10px 20px;
  font-size: large; /* Slightly smaller than main menu */
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #cce902; /* Match main menu hover color */
  color: white; /* White text on hover */
}

.navbar .nav-item .dropdown-menu { 
  display: none; 
}

.navbar .nav-item:hover .dropdown-menu {
  display: block; 
}

.navbar .nav-item .dropdown-menu { 
  margin-top: 0; 
}

.nav-item.active .nav-link {
  background-color: #cce902; /* Your brand green */
  color: white; /* White text for contrast */
  transform: scale(1.05); /* Slight scale-up to match hover effect */
}

ul {
  list-style: none;
  display: inline-block;
  margin: 0;
}

li {
  float: left;
}

@media screen and (max-width: 1200px) {
  #navbar { 
    display: none;
  }
}

/*----pagina's----*/

section {
  height: auto;
}
section h1, h2 {
  padding-top: 10px;
  text-align: center;
  color: black;
}
#welkom p{
  padding: 0 15% 15px 15%;
  text-align: center;
}

#nieuw p{
  text-align: center;
}

#bruidstaart {
  padding:0 5% 0.5% 5%;
}

#bruidstaart p {
  text-align: left;
}
#sweettable {
  padding:0 5% 0.5% 5%;
}
#sweettable p {
  padding: 0 0 15px 0;
  text-align: center;
}
.pagina-schaduw {
  text-align: center;
  max-width: 70%;
  margin: 0.5% auto 0.5% auto;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media screen and (max-width: 1000px) {
  .pagina-schaduw {
    max-width: 100%;
  }
  #bruidstaart p {
    text-align: center;
  }
} 
#schets {
  padding: 0 15% 0 15%;
}
#foto4 {
  padding-top: 10px;
}
.row {
display: flex;
justify-content: center;
}
.head-caption {
  text-align: center;
  font-weight: bold;
}
.caption { 
 display: block;
}
#lijst {
  display: inline-block;
  font-weight: normal;
}
#lijst li {
 float: left;
 clear: left;
 list-style-type: circle;
}
#bruidstaart-proeverij {
  padding: 40px 0 10px 0;
}
#bruidstaart-prijzen {
  padding-bottom: 30px;
}
#wrapper-proeverij {
  padding: 0 0 0 0;
}
#foto1 {
  width: 300px;
  padding-left: 20px;
 }
#sweettablefoto {
  width: 300px;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  #sweettablefoto {
    width: 100%;
    padding: 0;
  }
}
#sweettable-proeverij-foto1, #sweettable-proeverij-foto2,  #sweettable-proeverij-foto3 {
  width: auto;
  height: 300px;
  padding-top: 5px;
}
@media screen and (max-width: 1000px) {
  #foto1 {
    width: 100%;
    padding: 0;
  }
}
#smakenfoto {
  width: 650px;
  padding-right: 50px;
}
@media screen and (max-width: 1460px) {
  #smakenfoto {
    width: 550px;
  }
} 
@media screen and (max-width: 1300px) {
  #smakenfoto {
    width: 100%;
    padding-right: 0;
  }
} 

/*------contact formulier------*/
.popup-options {
  text-align: center;
}

.popup-button {
  background-color: #cce902;
  color: white;
  font-size: large;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}


.popup-button:hover {
  background-color: #43A047;
}

.contact-form {
  margin-top: 20px;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  text-align: left;
}

.contact-form input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}
.g-recaptcha {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
.get_in_touch {
  max-width: 800px;
  margin: auto;
  padding: 50px;
  margin-bottom: 50px;
}

.contact-form .form-field {
  margin: 32px 0;
  
}
.contact-form .input-text {
  display: block;
  width: 100%;
  height: 42px;
  border-width: 0 0 2px 0;
  border-color: #cce902;
  background-color: #f7f4ef;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text:valid + .label {
  transform: translateY(-24px);

}

.contact-form .input-text:focus{
  outline: none;
}
.contact-form .label{
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #5b6e60;
  cursor: text;
  text-transform: capitalize;
  transition: transform 0.2s ease-in-out;
}
.label2{
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #5b6e60;
  cursor: text;
  transform: translateY(-24px);

}

textarea {
  min-height: 36px;
  overflow-y: auto;
  word-wrap:break-word;
  }

.contact-form .sumbit-btn {
  display: inline-block;
  background-image: linear-gradient(125deg, #cce902,#00AB08);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  padding: 8px 16px;
  border: none;
  width: 200px;
  cursor: pointer;
  outline: none;
}


.verstuurd {
  max-width: 400px;
  margin:20px auto;
  text-align: center;
  background-color: #a9a9a9;
  color: white;
  padding: 10px 0px 10px 0px;
  
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
  min-width: 45%;
  margin-right: 10px;
}

.form-group:last-child {
  margin-right: 0;
}

@media screen and (max-width: 600px) {
  .form-group {
      min-width: 100%;
      margin-right: 0;
  }
}

/*----cookie pop-up-----*/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 9999;
  display: none; /* Standaard verborgen, wordt getoond met JS */
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.cookie-content {
  max-width: 800px;
  text-align: center;
  padding: 15px;
}

.cookie-content p {
  margin: 0 0 10px 0;
  font-size: 1em;
}

.cookie-content a {
  color: #66BB6A;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: #43A047;
}

.cookie-button {
  background-color: #66BB6A;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s;
}

.cookie-button:hover {
  background-color: #43A047;
}
  /*-------footer------*/
footer{
  width: 100%;
  background: #a9a9a9;
  border-top: 3px solid #cce902;
  flex-shrink: 0
}
.footer-container{
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
}
.left-col {
  padding-top: 30px;
  color: #cce902;
}
.social-media{
  margin: 20px 0;
}
.social-media a{
  color: #001a21;
  margin-right: 25px;
  font-size: 22px;
  text-decoration: none;
  transition: .3s linear;
}
.social-media a:hover{
  color: #cce902;
}
.page-content{
  min-height: 100vh;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presentation {
  display: flex;
  width: 80%;
  margin: auto;
  min-height: 80vh;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .footer-container{
  max-width: 600px;
  }
  .left-col{
  width: 100%;
  text-align: center;
  }
/* onderstaande activeren wanneer perfect wedding logo weg is.
  .zankyou {
    margin:0 auto;
    }
    .zankyouGallery {
      margin:0 auto;
    }
    .tpw-widget { 
      margin:0 auto;
    }
      */
}
 @media screen and (max-width: 770px) {
  .zankyou {
  margin:0 auto;
  }
  .zankyouGallery {
    margin:0 auto;
  }
  .tpw-widget { 
    margin:0 auto;
  }
 }
 @media screen and (max-width: 630px) {
   .tpw-widget { 
    margin:0 auto;
    overflow-x: hidden;
  }
 }
 
 /*--gallerij--*/
 .gallerij-schaduw {
  max-width: 70%;
  margin: 1% auto 400px auto;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
 }
 #gallerij-achtergrond {
  padding:0 5% 0.5% 5%;
 }
 
 .gallery {
  padding: 50px 0 50px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-width: 33%;
  -moz-column-width: 33%;
  column-width: 33%;
}

.gallery .pics {
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.gallery .animation {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 1000px) {
  .gallerij-schaduw {
    max-width: 70%;
    margin: 1% auto 500px auto;
   }
  .zankyouGallery {
    display: none;
  }
}

@media (max-width: 666px) {
  .gallery {
    padding: 50px 0 100px;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-width: 100%;
    -moz-column-width: 100%;
    column-width: 100%;
  }
  .gallerij-schaduw {
    max-width: 900%;
    margin: 1% auto 400px auto;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
   }
   #gallerij-achtergrond {
    padding:0 5% 0.5% 5%;
   }
}

@media (max-width: 400px) {
  .btn.filter {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}