html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #e4e4e4;
  color: white;
  overflow-x: hidden;
  padding: 0;
}

.menu {
  background: linear-gradient(to right, #14447C, #3875bb); 
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buttonSelect {
  background: linear-gradient(to right, #2f5c90, #5a8fcb ); 
  color: #fff; 
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 12px 16px rgba(0,0,0,0.24), 0 17px 50px rgba(0,0,0,0.19);
  transition: all 0.3s ease;
}

.button {
  background: linear-gradient(to right, #14447C, #145fb4);  
  color: #fff; 
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 12px 16px rgba(0,0,0,0.24), 0 17px 50px rgba(0,0,0,0.19);
  transition: all 0.3s ease;
}

.button:hover {
  background: linear-gradient(to right, #2f5c90, #5a8fcb ); 
  box-shadow: 0 12px 16px rgba(0,0,0,0.27), 0 17px 50px rgba(0,0,0,0.21);
  transform: translateY(-2px);
}

.button span {
  vertical-align: middle;
}

.button b {
  font-size: 18px;
}

.welcome1{
    align-content: center;
    color: rgb(255, 255, 255);
    padding: 16px;
    
    transform: translate(0%, -100%);
}

.h1{
    font-size: 128px;
    text-shadow:
        1px 1px 0 #828282,
        2px 2px 0 #535353,
        3px 3px 0 #3e3e3e,
        4px 4px 0 #242424,
        5px 5px 15px rgba(0, 0, 0, 0.5);
}
.h3{
    font-size: 64px;
    text-shadow:
        1px 1px 0 #828282,
        2px 2px 0 #535353,
        3px 3px 0 #3e3e3e,
        4px 4px 0 #242424,
        5px 5px 15px rgba(0, 0, 0, 0.5);
}

img {
  display: block;
  margin-bottom: 0;
}

 .navbar {
    background: linear-gradient(to right, #a6171e, #d63c44); 
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translate(0%, -562%);
  }
  
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
  
.navbar li {
    margin-right: 200px;
    margin-left: 15px;
}
  
.navbar a {
    color: #fff;
    text-decoration: none;
}
  
.navbar a:hover {
    color: #ccc;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: linear-gradient(to right, #14447C, #3875bb); 
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

#myBtn:hover {
  background: linear-gradient(to right, #2f5c90, #5a8fcb ); 
}

.panel {
  position: relative;
  width: 70%;              
  height: auto;            
  margin: 50px 0 50px 60px;
  backdrop-filter: blur(15px);
  background: rgba(158, 153, 153, 0.3);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  transition: all 1s ease-in-out;
  margin-top: -200px;
}

.panel:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  background: rgba(110, 108, 108, 0.3);
}

.title {
  font-size: 32px;
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
  width: 300px;
  background: linear-gradient(to right, #14447C, #3875bb);
  font-weight: bold;
  color: white;
  padding-left: 20px;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  transition: all 1s ease-in-out;
  z-index: 2;
}

.panel:hover .title {
  width: calc(97% - 20% - 10px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.content {
  flex: 1;
  padding: 80px 30px 30px 30px;
}

.content h2 {
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.content p {
  font-weight: 300;
  color: #333;
  padding-left: 10px;
  margin-bottom: 20px;
}

.video-section {
  margin-top: 20px;
  padding: 15px;
  background: rgba(30, 30, 30, 0.25);
  border-radius: 30px;
  color: white;
  font-weight: bold;
}

.video {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-container {
  width: 20%;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  transition: transform 1s ease-in-out;
}

.panel:hover .image-container {
  transform: scale(1.05);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .panel {
    flex-direction: column;
    width: 90%;
    margin-left: 5%;
  }

  .image-container {
    width: 100%;
    border-radius: 0;
  }

  .panel:hover .title {
    width: 90%;
  }
}



.history-panel {
  position: relative;
  width: 70%;
  height: auto;
  margin: 50px 0 50px 60px;
  backdrop-filter: blur(15px);
  background: rgba(158, 153, 153, 0.3);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  transition: all 1s ease-in-out;
  margin-top: -275px;
}

.history-panel:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  background: rgba(110, 108, 108, 0.3);
}

.history-title {
  font-size: 32px;
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
  width: 300px;
  background: linear-gradient(to right, #713600, #9d530f);
  font-weight: bold;
  color: white;
  padding-left: 20px;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  transition: all 1s ease-in-out;
  z-index: 2;
}

.history-panel:hover .history-title {
  width: calc(97% - 20% - 10px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.history-content {
  flex: 1;
  padding: 80px 30px 30px 30px;
}

.history-content h2 {
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.history-content p {
  font-weight: 300;
  color: #333;
  padding-left: 10px;
  margin-bottom: 20px;
}

.history-video-section {
  margin-top: 20px;
  padding: 15px;
  background: rgba(30, 30, 30, 0.25);
  border-radius: 30px;
  color: white;
  font-weight: bold;
}

.history-video {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.history-image-container {
  width: 20%;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  transition: transform 1s ease-in-out;
}

.history-panel:hover .history-image-container {
  transform: scale(1.05);
}

.history-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .history-panel {
    flex-direction: column;
    width: 90%;
    margin-left: 5%;
  }

  .history-image-container {
    width: 100%;
    border-radius: 0;
  }

  .history-panel:hover .history-title {
    width: 90%;
  }
}



.tourism-panel {
  position: relative;
  width: 70%;
  height: auto;
  margin: 50px 0 50px 60px;
  backdrop-filter: blur(15px);
  background: rgba(158, 153, 153, 0.3);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  transition: all 1s ease-in-out; 
  margin-top: 50px;
}

.tourism-panel:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  background: rgba(110, 108, 108, 0.3);
}

.tourism-title {
  font-size: 32px;
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
  width: 300px;
  background: linear-gradient(to right, #055135, #13855b);
  font-weight: bold;
  color: white;
  padding-left: 20px;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  transition: all 1s ease-in-out;
  z-index: 2;
}

.tourism-panel:hover .tourism-title {
  width: calc(97% - 20% - 10px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.tourism-content {
  flex: 1;
  padding: 80px 30px 30px 30px;
}

.tourism-content h2 {
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.tourism-content p {
  font-weight: 300;
  color: #333;
  padding-left: 10px;
  margin-bottom: 20px;
}

.tourism-video-section {
  margin-top: 20px;
  padding: 15px;
  background: rgba(30, 30, 30, 0.25);
  border-radius: 30px;
  color: white;
  font-weight: bold;
}

.tourism-video {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tourism-image-container {
  width: 20%;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  transition: transform 1s ease-in-out;
}

.tourism-panel:hover .tourism-image-container {
  transform: scale(1.05);
}

.tourism-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .tourism-panel {
    flex-direction: column;
    width: 90%;
    margin-left: 5%;
  }

  .tourism-image-container {
    width: 100%;
    border-radius: 0;
  }

  .tourism-panel:hover .tourism-title {
    width: 90%;
  }
}




.summary-panel {
  position: relative;
  width: 18%;
  margin: 50px 60px 50px auto; 
  backdrop-filter: blur(15px);
  background: rgba(158, 153, 153, 0.3);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  color: white;
  margin-top: -1250px;
}

.summary-title h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #000000;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
}

.summary-box-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-box {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  transition: all 1s ease-in-out;
  background: rgba(126, 125, 125, 0.05);
}

.summary-box:hover {
  transition: all 1s ease-in-out;
  background: linear-gradient(to right, #6a6969, #aaa);
  color: rgb(0, 0, 0);
  border: 1px solid rgba(158, 158, 158, 0.4);
}

.summary-box h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.summary-box p {
  font-size: 16px;
  color: #000000;
  margin: 0;
}




.gallery-container {
  width: 90%;
  margin: 80px auto;
  backdrop-filter: blur(15px);
  background: rgba(158, 153, 153, 0.3);
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.gallery-icon:hover {
  transform: scale(1.05);
}

.gallery-image-wrapper {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}

.gallery-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  transition: transform 0.6s ease-in-out;
}

.gallery-caption {
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin-top: 20px;
}

.gallery-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.gallery-btn {
  font-size: 32px;
  font-weight: bold;
  color: black;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-btn:hover {
  transform: scale(1.03);
}
