/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #fff;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: 80px;
  
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__logo img {
  height:70px;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }
  
  
  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

}










/* Slider Container */
.slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    max-height: 80vh; /* Ensures the content is vertically centered within the viewport */
}

.slider img {
    width: 100%;
    display: none;
}

img.displaySlide {
    display: block;
    animation-name: fade;
    animation-duration: 1s;
}
.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    padding: 5px 5px;
    background-color: hsla(0, 0%, 0%, 0.5);
    color: white;
    cursor: pointer;
}
.previous{
    left: 0;
}

.next {
    right: 0;
}

@keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
}


.about {
    padding: 50px 200px;
    text-align: center;
    line-height: 200%;
}
.about p{
    text-align: justify;
}




/*global art */

.ga {
    width: 100%;
    max-height: 100vh;
    padding: 50px;
}
.ga h1 {
    text-align: center;
}
.ga p {
    margin-bottom: 20px;
    text-align: justify;
}

.ga img {
    margin-bottom: 30px;
    height: auto;
    max-width: 100%;
}

.gacenter {
    text-align: center;

}

/* gallery */
.gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 20px;
        }

        .program {
            width: 100%;
            margin-bottom: 20px;
        }

        .program h2 {
            margin: 10px 0;
        }

        .thumbnails {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .thumbnail {
            width: 150px;
            height: 150px;
            cursor: pointer;
            object-fit: cover;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 80%;
        }

        .lightbox .controls {
            position: absolute;
            top: 50%;
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .lightbox button {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
        }

        .lightbox button:hover {
            background: rgba(0, 0, 0, 0.8);
        }







/* Contact Us */

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
}
.contact .input {
    width: 500px;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 10px
}

.contact .textarea {
    width: 50%;
    margin-bottom: 10px;
    font-size: 15px;
    padding: 10px;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    min-height: 100vh; /* Ensures the content is vertically centered within the viewport */
}

.map iframe {
    width: 50%;
    height: 300px;
    border: none;
    margin-top: 1rem; /* Add space between form and map */
}

.contact .map iframe {
    width: 100%;
    height: 300px;
	padding-top: 40px;
    border: none;
}
footer {
	background: #f4f4f4;
	text-align: center;
	padding: 10px;
	margin-botton:auto;
	
}




/* gallery */

.gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
}
.gallery-item {
	text-align: center;
	max-width: 150px;
}
.gallery-item img {
	width: 100%;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s;
}
.gallery-item img:hover {
	transform: scale(1.05);
}
.gallery-item h3 {
	margin-top: 10px;
	font-size: 1.2rem;
}




/*   galleries  */
.photo-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 20px;
}
.photo-gallery img {
	max-width: 150px;
	border-radius: 8px;
	transition: transform 0.3s;
	cursor: pointer;
}
.photo-gallery img:hover {
	transform: scale(1.05);
}
.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
}
.popup img {
	max-width: 90%;
	max-height: 80%;
}
.popup .close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 16px;
}
.popup .nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 16px;
	display: none;
}
.popup:hover .nav-btn {
	display: block;
}
.popup .prev-btn {
	left: 20px;
}
.popup .next-btn {
	right: 20px;
}
.hidden {
	display: none !important;
}
.back-link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 20px;
	background-color: grey;
	color: black;
	text-decoration: none;
	
}



/* Responsive Design */

@media (max-width: 768px) {
    .gallery img {
        width: 100px;
        height: 100px;
    }
    .about {
    padding: 30px 100px;
    text-align: center;
    line-height: 200%;
}

    
    .contact form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 80px;
        height: 80px;
    }
    .about {
    padding: 20px 50px;
    text-align: center;
    line-height: 200%;
}

}