

.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #060630;
}

/* Burger button */
.burger {
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1001;
}

/* Menu container */
.burger-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}

/* Open state */
.burger-menu.open {
  right: 0;
}

/* Menu links */
.burger-menu a {
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

/* HEADER */

.image-header {
  position: relative;
  margin-left: 0px;
  width: 100%;
  height: 45vh; /* adjust height */
  background: url("clouds.png") center / cover no-repeat;
}

/* Optional dark overlay */
.image-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.header-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}


/* images gallery */
  /* The Image Box */
div.img {
  border: 0px solid #ccc;
}

div.img:hover {
  border: 1px solid #777;
}

/* The Image */
div.img img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* Description of Image */
div.desc {
  padding: 5px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

/* Add Responsiveness */
.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: auto;
  max-width: 700px;
  max-height: 500px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.1)} 
  to {transform:scale(1)}
}


/* Responsive Columns */
@media only screen and (max-width: 700px){
  .responsive {
    width: 33.33333%;
    margin: 250px 0;
  }
  .modal-content {
    width: 100%;
  }
}

@media only screen and (max-width: 500px){
  .responsive {
    width: 100%;
  }
}

/* Clear Floats */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.modal-carousel {
  position: relative;
  margin: auto;
  padding-top: 80px;
  width: 100%;
  height: auto;
  text-align: center;
}

#modalImage {
  width: auto;
  max-width: 800px;
  max-height: 500px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 36px;
  padding: 10px;
  background: rgba(0,0,0,0.3);
  border: none;
}

.prev { left: 0; }
.next { right: 0; }

/* The Close Button */
.close {
  position: absolute;
  top: 40px;
  right: 60px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}


.w3-container,
.w3-section,
.w3-row-padding {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
