/* Global Styles */

body {
  margin: 0;
  padding: 0;
  font-family: Poppins, Arial, sans-serif;
  background-color: #f9f9f9;
  overflow-x: hidden; /* only a vertical scroll bar */
}

.clear{
    clear:both;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}
header .container{
  max-width: unset;
  width: 100%;
}


header, section, footer{
    overflow: hidden;
}




h1 {
  text-align: center;
  margin-bottom: 20px;
}
h1,h2,h3,h4,h5{
    color: #ed4247;
}

form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
}

textarea {
  height: 120px;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  margin-right: 5px;
}



    /* Checkbox Label Styles */
    input[type="checkbox"] {
      display: none;
    }
    
    .checkbox-label {
      display: inline-block;
      position: relative;
      cursor: pointer;
      margin-right: 10px;
    }
    
    .checkbox-label::before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 20px;
      background-image: url('../images/checkbox_unclicked.png');
      background-repeat: no-repeat;
      background-size: cover;
      transition: background-image 0.3s ease;
    }
    
    input[type="checkbox"]:checked + .checkbox-label::before {
      background-image: url('../images/checkbox_clicked.png');
    }
    
    /* Radio Button Label Styles */
    input[type="radio"] {
      display: none;
    }
    
    .radio-label {
      display: inline-block;
      position: relative;
      cursor: pointer;
      margin-right: 10px;
    }
    
    .radio-label::before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 20px;
      background-image: url('../images/radio-btn-unselected.png');
      background-repeat: no-repeat;
      background-size: cover;
      transition: background-image 0.3s ease;
    }
    
    input[type="radio"]:checked + .radio-label::before {
      background-image: url('../images/radio-btn-selected.png');
    }

    /* Select Styles */
    select::-ms-expand {
      display: none;
    }


    .custom-dropdown {
      position: relative;
      display: inline-block;
      cursor: pointer;
      width: 100%;
    }

    .custom-dropdown select {
      display: none;
    }

    .custom-dropdown .dropdown-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px;
      background-color: #ffffff;
      border: 1px solid #ccc;
      border-radius: 4px;
    width: 96%;
    }

    .custom-dropdown .dropdown-label::after {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      background-image: url('../images/dropdown_arrow2.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    .custom-dropdown .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
    max-height: 200px;
      overflow-y: auto;
      display: none;
      background-color: #ffffff;
      border: 1px solid #ccc;
      border-top: none;
      border-radius: 4px;
      z-index: 9999;
    list-style-type: none;
    padding-left: 0;
    }

    .custom-dropdown .dropdown-menu.open {
      display: block;
    margin: 0;
    width: 100%;
    }

    .custom-dropdown .dropdown-menu li {
      padding: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .custom-dropdown .dropdown-menu li:nth-child(even) {
      background-color: #f8f8f8; /* Off-white background color for even items */
    }

    .custom-dropdown .dropdown-menu li:nth-child(odd) {
      background-color: #ffffff; /* White background color for odd items */
    }

    .custom-dropdown .dropdown-menu li:hover {
      background-color: #f1f1f1; /* Hover background color */
    }





input[type="submit"] {
  display: inline-block;
  background-color: #ed4247;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #c72126;
}

fieldset {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

legend {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}




/* <!--div id="swipe-container">Swipe me!</div--> */
#swipe-container {
    width: 300px;
    height: 50px;
    margin:0 auto;
    background-color: lightgray;
    text-align: center;
    font-size: 24px;
}


/* Define the initial state of the button */
.image-gallery .button {
  border: 2px solid transparent;
  animation: glow .5s infinite alternate; /* infinite */
  animation: glow .8s 5 alternate; /* only 10 times */
}

/* Define the glow animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 7px black; /* Initial glow effect */
  }
  100% {
    box-shadow: 0 0 30px black; /* Maximum glow effect */
  }
}


.center{
    text-align:center;
}
.show-toc-button, .hide-toc-button{
}

.table-of-contents{
    display:block;
    margin-top:10px;
    border-radius:10px;
    background:gray;
}

.table-of-contents h2{
    text-align:center;
    color:white;
    margin:0;
    padding:0;
}

.table-of-contents a{
    text-decoration:none;
}

.columns-wrap{
    width:100%;
    margin-left:10px;
    position:relative;
}

.column{
    width:21%;
    float:left;
    padding:0px 10px;
    background:#ddd;
    
    border-radius:10px;
    
    margin-left:5px;
}
.column:nth-child(odd) {
    background:#eee;
}
.column:nth-child(even) {
}

.image_thumbnail {
    height: 200px;
}
button{
    padding: 20px 60px;
    width:50%;
    margin:0 auto;
}

@media screen and (max-width: 650px) {
    .columns-wrap{
        margin-left:5px;
    }
    .column{
        width:19%;
        margin-left:2px;
    }
    
}
@media screen and (max-width: 400px) {
    .columns-wrap{
        margin-left:5px;
    }
    .column{
        width:17%;
    }
}











@media screen and (max-width: 600px) {
  form {
    padding: 10px;
  }

  input,
  textarea,
  select {
    font-size: 14px;
  }
}


/* Header Styles */

header {
  background: linear-gradient(to bottom, #354c69, #001734);
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
    margin-top: -20px;
    margin-bottom: 20px;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius:25px;
}

.logo-text a {
  color: #ffffff;
  font-size: 24px;
  line-height:50px;
  text-decoration:none;
}

nav{
    max-width: 600px; /*max-width: 600px; for when there's only a few menu items*/
    margin: 0 auto;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  position:relative;
}

nav ul li {
  margin-right: 10px;
  float:left;
  height: 45px;
}

nav ul li a {
  color: #e0e0e0;
  background: linear-gradient(to bottom, #354c69, #002757);
  text-decoration: none;
  padding: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  font-weight: 500;
}
nav ul li.active a {
  background: linear-gradient(to top, #00367a, #1a3a61);
  color: #ffffff;
}
nav ul li a:hover {
  background: linear-gradient(to top, #00367a, #1a3a61);
  color: #ffffff;
}

@media screen and (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul li {
    margin-bottom: 10px;
  }
}





/* Form Section Styles */

.form-section {
  padding: 40px 0;
  text-align: center;
}

.form-section h2 {
  color: #354c69;
  font-size: 28px;
  margin-bottom: 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  color: #354c69;
  font-size: 18px;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 96%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

input[type="submit"] {
  display: inline-block;
  background-color: #ed4247;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #c72126;
}

/* Footer Styles */

footer {
  background-color: #f1f1f1;
  padding: 20px 0;
  text-align: center;
}

footer p {
  color: #777777;
  font-size: 14px;
}



.featured-celebrities img{
    width:200px;
    height:auto;
}


.prompt{
    border:1px gray solid;
    border-radius:10px;
    margin:10px;
    padding:10px;
}







/* big button look */

input, textarea, select, button {
  width: auto; /* width: 100%; */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
}
form input, form textarea, form select, form button{
    width: 100%;
}

input[type="number"],input[type="color"],input[type="time"],input[type="date"]{
    width:auto;
}


button, input[type="submit"], input[type="reset"] {
  display: inline-block;
  background-color: #c72126; /* #ed4247 */
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight:bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover, input[type="reset"]:hover {
  background-color: #a01418;
}









/* Art GALLERY */

.showing_all_art .all_images {
  display: inline-block;
  position: relative;
}

.showing_all_art .hover_image {
  position: absolute;
  display: none;
  pointer-events: none;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 10px;
  z-index: 999;
}

.showing_all_art .hover_image img {
  max-width: 100%;
  height: auto;
}



.showing_1_art_piece img {
	border: none;
	width:100%;
	height:auto;
}
.showing_1_art_piece #thumbnail img {
	cursor: pointer;	
}
.showing_1_art_piece #large {
	display: none;
	position: absolute;	
	color: #FFFFFF;
	background: #333333;	
	padding: 5px;
}










/* showing the 3 images for each folder */

.group-container{
    border: 1px gray solid;
    border-radius:10px;
    margin:30px 0px;
    padding:20px;
}
.group-container:hover{
   box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

.group-container h2{
    border-bottom: 1px gray solid;
}
.group-container .link-to-view{
    clear:both;
    width:100%;
    border:0px gray solid;
    max-width:600px;
}
.group-container .link-to-view button{
    width:90%;
}



/* For the images to be displayed with a hover image tooltip */

.tooltip {
  text-decoration:none;
  position:relative;
}

.tooltip span {
  display:none;
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  color:black;
  background:white;
}
 
.tooltip span img {
  float:left;
  margin:0px 8px 8px 0;
}
 
.tooltip:hover span {
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:1000;
  width:auto;
  max-width:320px;
  min-height:128px;
  border:1px solid black;
  margin-top:-10px;
  margin-left:-100px;
  overflow:hidden;
  padding:8px;
}


.image_thumbnail{
    height:100px;
    width:auto;
    margin: 10px;
}


@media (min-width: 0px) and (max-width: 600px) {
    .image-gallery{
        text-align: center;
    }
    h2{
        text-align: left;
    }
    
    .tooltip:hover span {
        margin-top:-10px;
        margin-left:-50px;
    }
}





/* Image Gallery */
.image-gallery-wrap{
   position:relative;
   background: gray;
   padding:40px;
   padding-top:20px;
   margin-bottom:0px;
   border-radius:10px;
   border-radius: 20px 20px 0 0;
   box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}
.image-gallery-wrap h2{
    color:white;
    margin:0;
    padding:0;
    margin-bottom:20px;
    font-weight:normal;
    font-size:16px;
    text-align:center;
}

.image-gallery{
    position:relative;
}

.image-gallery .gallery-single-image-wrap{
    margin:0 auto;
    width:90%;
}
.image-gallery .gallery-single-image-wrap img{
    width:100%;
    height:auto;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}




    

.gallery-previous-side-button-wrap, .gallery-next-side-button-wrap{
    border:0px white solid;
    height:100%;
    width:50px;
    position:absolute;
    top:0;
}
.gallery-previous-side-button-wrap{
    left:-40px;
}
.gallery-next-side-button-wrap{
    right:-40px;
}
.gallery-previous-side-button, .gallery-next-side-button{
    width:100%;
    height:100%;
    opacity: .8;
    background:#888;
    border-radius:10px;
    transition: background 0.3s ease, opacity .3s ease;
}
.gallery-previous-side-button:hover, .gallery-next-side-button:hover{
    background:#aaa;
    opacity: .9;
}



.gallery-previous-button-wrap, .gallery-next-button-wrap{
    color:white;
    width:50px;
    text-align:center;
    cursor:pointer;
    position:absolute;
    top:40%;
}

.gallery-previous-button-wrap{
    left:-25px;
}
.gallery-next-button-wrap{
    right:-25px;
}
.gallery-previous-button-wrap a, .gallery-next-button-wrap a{
    text-decoration:none;
}


/* buttons to change the gallery - to another folder */
.gallery_change{
    cursor:pointer;
    position:absolute;
    top:0;
    padding:10px;
    border:1px white solid;
    background:#eee;
    width:auto; /*40px*/
    font-size:10px;
    border-radius:10px;
    transition: background 0.3s ease;
}
.gallery_change:hover{
    background:white;
}
.gallery_change.previous-gallery{
    left:0;
}
.gallery_change.next-gallery{
    right:0;
    text-align:right;
}
.gallery_change i{
    font-size:20px;
}


.image-gallery .gallery-previous-button, .image-gallery .gallery-next-button{
    font-size:40px;
    line-height:40px;
    border-radius:100px;
    border:0px black solid;
    background:gray;
    color:white;
    width:40px;
    height:40px;
    text-align:center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, color 0.3s ease;

}
.image-gallery .gallery-previous-button:hover, .image-gallery .gallery-next-button:hover{
    background: white;
    color:#555;
}

.image-gallery .gallery-previous-button{
    left:-25px;
}
.image-gallery .gallery-next-button{
    right:-25px;
}



.image-gallery .gallery-previous-image, .image-gallery .gallery-next-image{
    margin-top:20px;
    margin-left:0;
    font-size:10px;
    border:1px black solid;
    background: #eee;
    color:black;
    width:50px;
    transition: margin 0.3s ease;
}
.image-gallery .gallery-previous-image:hover, .image-gallery .gallery-next-image:hover{
    margin-top:25px;
}

.image-gallery .gallery-previous-image:hover, .image-gallery .gallery-next-image:hover{
    background: white;
    color:black;
}

.image-gallery .gallery-previous-image{
    left:-25px;
}
.image-gallery .gallery-next-image{
    right:-25px;
}

.gallery-previous-image img, .gallery-next-image img{
    width:50px;
    height:auto;
    margin-bottom: -4px;
}



/* Single Close Up View - Gallery */

.single-gallery{
    border:0px rgba(0,0,0,.1) solid;
    border: 0 0 5px 5px;
    padding:20px 30px;
    border-radius: 0 0 10px 10px;
    margin-bottom:100px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, gray, #eee);
}
.single-gallery h2{
    margin-top:0;
    padding-top:0;
    color:white;
}
.single-gallery h2 span{
    font-weight:normal;
}
.single-gallery .link-part-of{
    float:right;
    width:auto;
    height:30px;
    margin-top: 10px;
    border:0px white solid;
}
.single-gallery .link-part-of a{
    color:white;
    text-decoration:none;
}
.single-gallery .link-part-of a:hover{
    color:white;
    text-decoration:underline;
}

.selected-image{
    border:10px #ccc solid;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    transition: border 0.3s ease;
}
.selected-image:hover{
    border:10px #999 solid;
}


.unselected-image{
    border:2px rgba(255,255,255,0) solid;
    opacity:1;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
    transition: border 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.unselected-image:hover{
    border:2px #aaa solid;
    opacity:.7;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}










