body {
  background: url(../img/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

p {
  font-size: 1.25em;
  line-height: 1.6;
  color: #000;
}

hr {
  border-color: #999999;
  max-width: 400px;
}

.brand,
.address-bar {
  display: none;
}


.navbar-brand {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.navbar-nav {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

.img-full {
  min-width: 100%;
}

.brand-name {
  font-weight: 700;
  font-size: 1.5em;
  text-transform: capitalize;
  letter-spacing: normal;
}

.tagline-divider {
  margin: 15px auto 3px;
  border-color: #999999;
  max-width: 250px;
}

.box {
  background: #fff;
  background: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  padding: 30px 15px;
}

.intro-text {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25em;
  font-weight: 400;
}

.img-border {
  float: none;
  margin: 0 auto 0;
  border: #999999 solid 1px;
}

.img-left {
  float: none;
  margin: 0 auto 0;
}

footer {
  background: #fff;
  background: rgba(255,255,255,0.9);
}

footer p {
  margin: 0;
  padding: 50px 0;
}

@media screen and (min-width: 768px) {

.brand {
  display: inherit;
  font-weight: 700;
  font-size: 5em;
  line-height: normal;
  text-align: center;
  margin: 0;
  padding: 30px 0 10px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.top-divider {
  margin-top: 0;
}

.img-left {
  float: left;
  margin-right: 25px;
  object-fit: scale-down;
}

.address-bar {
  display: inherit;
  text-align: center;
  margin: 0;
  padding: 0 0 40px;
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar {
  border-radius: 0;
}

.navbar-header {
  display: none;
}

.navbar {
  min-height: 0;
}

.navbar-default {
  background: #fff;
  background: rgba(255,255,255,0.9);
  border: none;
}

.nav>li>a {
  padding: 35px;
}

.navbar-nav>li>a {
  line-height: normal;
}

.navbar-nav {
  float: none;
  margin: 0 auto;
  display: table;
  table-layout: fixed;
  font-size: 1.25em;
}

}

@media screen and (min-width: 1200px) {
    .box:after {
        content: '';
        display: table;
        clear: both;
    }
}

.bio{
  font-size: 1.25em;
  line-height: 1.6;
  color: #000;
  padding-top: 10px;
}

.jan{
  text-align: right;
  float: right
}
.mariska{
  text-align: right;
  float: right
}

.fab{
  font-size: 40px;
  float: right;
  color: #4267B2;
  margin-top: -10px;
  
}
.fab:hover{
  transition: all .3s ease-in-out;
  transform: rotate(10deg) scale(1.5);

}

table{
  border-collapse: collapse;
  table-layout: fixed;
  display: block;
  overflow-x: auto;
  border: #000 1px;
}
th{
  border: 2px solid #000;
  text-align: center;
  max-width: 320px;
}
td {
  border: 2px solid #000;
  vertical-align: top;
  word-wrap: break-word;
  min-width: 280px;
}

ul1 {
  list-style-type: none;
  margin-left: -20px;
  margin-top: 10px;
}

.foto_container{
  padding: 1rem;
  margin: 2rem auto;
  object-fit: contain;
}

/* images original */

img{
  max-width: 100%;
  max-height: 100%;
  object-position: 50% 50%;
  border: 5px solid #ddd;
  object-fit: contain;

}


/* images New */

foto-ul{
  margin: 0px;
  padding: 0px;
}
foto-ul li{
  display: inline-block;
  cursor: pointer;
  width: 250px;
  height: 250px;
}
foto-ul li img{
  width: 100%;
  height: 100%;
}
#show_image_popup{
  width: 500px;
  height: 500px;
  border: 1px solid #333;
  box-sizing: border-box;
  padding: 5px;
  text-align: center;
  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e5e5e5;
/*    */
  display: none;
}
#show_image_popup img{
  max-width: 100%;
  height: 100%;
}

#all-images .active{
  filter: blur(5px);
}
.close-btn-area{
  width: 100%;
  text-align: right;
  margin-bottom: 5px;
  
}
.close-btn-area button{
  cursor: pointer;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Popup Styles */
#show_image_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#show_image_popup img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.close-btn-area {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 10000;
}

#close-btn {
  font-size: 30px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}