body {
  font-family: "Georgia", serif;
  margin: 0;
  background-color: #f5f5f5;
}

nav {
  background-color: #333;
  overflow: hidden;
  padding: 15px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-top: 45px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

.column{
  width: 100%;
  display: block;
  flex: 1;
}

header {
  color: white;
  text-align: center;
  padding: 100px 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

header h1 {
  font-size: 50px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
}

header h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #ffd149;
  margin: 10px auto 0;
}

.content {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

.info h2,
.images h2,
.more-info h2 {
  font-size: 30px;
  color: #333;
  border-bottom: 2px solid #ffd149;
  display: inline-block;
  margin-bottom: 10px;
}

.info p,
.more-info p,
ul {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
ol {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
li{
  margin-bottom: 9px;
}

.image-gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.image-wrapper {
  position: relative;
  width: 30%;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-grow: 1;
  flex-basis: calc(30% - 20px);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s;
  object-fit: cover;
}

.image-wrapper .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 10px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.image-wrapper:hover {
  transform: scale(1.05);
}

.image-wrapper:hover img {
  opacity: 0.7;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.image-gallery-SR {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: column;
}

.image-wrapper-SR {
  position: relative;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-grow: 1;
  flex-basis: calc(30% - 20px);
  width: 100%;
  margin-bottom: 20px;
}

.image-wrapper-SR img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
  object-fit: cover;
}

.image-wrapper-SR .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 10px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.image-wrapper-SR:hover {
  transform: scale(1.05);
}

.image-wrapper-SR:hover img {
  opacity: 0.7;
}

.image-wrapper-SR:hover .overlay {
  opacity: 1;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.province-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.province-icon {
  width: 10%;
  height: 10%;
  margin-right: 15px;
}

.province-info {
  display: flex;
  flex-direction: column;
}

.province-info strong {
  font-size: 18px;
  color: #333;
}

.province-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

a{
  color: darkblue;
}

a:hover{
  color: blue;
}

.Battambang {
  background: url("images/BattambangH.jpg") no-repeat center center/cover;
}

.Pailin {
  background: url("images/PailinH.jpg") no-repeat center center/cover;
}

.Pursat {
  background: url("images/PursatH.jpg") no-repeat center center/cover;
}

.BMeanchey {
  background: url("images/BMeancheyH.jpg") no-repeat center center/cover;
}

.KohKong {
  background: url("images/KohKongH.jpg") no-repeat center center/cover;
}

.KPS {
  background: url("images/PreahSihanoukH.jpg") no-repeat center center/cover;
}

.Kampot {
  background: url("images/KampotH.jpg") no-repeat center center/cover;
}

.Kep {
  background: url("images/KepH.jpg") no-repeat center center/cover;
}

.Takeo {
  background: url("images/TakeoH.jpg") no-repeat center center/cover;
}

.KPSpeu {
  background: url("images/KPSpeuH.jpg") no-repeat center center/cover;
}

.KPCh {
  background: url("images/KPChH.jpg") no-repeat center center/cover;
}

.KDL {
  background: url("images/KDLH.jpg") no-repeat center center/cover;
}

.PP {
  background: url("images/PPH.jpg") no-repeat center center/cover;
}

.SVR {
  background: url("images/SVRH.jpg") no-repeat center center/cover;
}

.PRV {
  background: url("images/PRVH.jpg") no-repeat center center/cover;
}

.KPC {
  background: url("images/KPCH.jpg") no-repeat center center/cover;
}

.TBK {
  background: url("images/TBKH.jpg") no-repeat center center/cover;
}

.KRT {
  background: url("images/KRTH.jpg") no-repeat center center/cover;
}

.KPT {
  background: url("images/KPTH.jpg") no-repeat center center/cover;
}

.Mond {
  background: url("images/MondH.jpg") no-repeat center center/cover;
}

.SR {
  background: url("images/SRH.jpg") no-repeat center center/cover;
}

.ODMCH {
  background: url("images/ODMCHH.jpg") no-repeat center center/cover;
}

.PVH {
  background: url("images/PVHH.jpg") no-repeat center center/cover;
}

.ST {
  background: url("images/STH.jpg") no-repeat center center/cover;
}

.RTK {
  background: url("images/RTKH.jpg") no-repeat center center/cover;
}

.KohRong {
  background: url("images/KohRongH.jpg") no-repeat center center/cover;
}

.TLSP {
  background: url("images/TLSPH.jpg") no-repeat center center/cover;
}

.Prov {
  background: url("images/PrvBG.jpg") no-repeat center center/cover;
}

.His {
  background: url("images/HisH.jpg") no-repeat center center/cover;
}
