@charset "utf-8";
/* CSS Document */

#color-bar{
	background-color: #003D4C;
	color: white;
	text-align: center;
	padding: 10px 0;
}

#accommdations{
	background-color: #708575;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: auto;
	padding-right: auto;
	align-content: center;
	border: thick black;
}

#accommdations h1{
	padding-bottom: 30px;
	text-align: center;
	color: #fff;
}

#home-container {
	display: flex;
    justify-content: center;
}

.card {
    margin-bottom: 20px;
	margin-top: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 1); /*shadow color and intensity as needed */
    transition: box-shadow 0.3s ease; /* Add transition effect for smooth transition */
}

#hot_spots{
	background-color: #003D4C;
	padding-top: 50px;
	padding-bottom: 50px;
}

#hot_spots h1{
	padding-bottom: 30px;
	text-align: center;
	color: #fff;
	
}

#hot_spots p{
	text-align: center;
	color: #fff;
	
}

#hot_spots img{
	padding-bottom: 30px;
	padding-top: 30px;
}

.footer {
    padding: 20px;
    background-color: #dfd7ca; 
}

#right-footer {
	text-align: right;
	padding-top: 35px;
}

/*about page*/
#summary{
	background: #035714;
	color: white;
	text-align: center;
}

#summary h1{
	padding-left: 10px;
}

#summary p{
	padding-left: 20px;
}

.column {
    float: left;
    width: 50%; 
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

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

.team {
    display: flex;
    justify-content: space-between;
	margin-left: 30px;
	margin-right: 30px;
}

.column {
    flex-basis: 45%; /* Adjust column width as needed */
}

#misson_values {
	margin-top: 50px;
	margin-bottom: 50px;
	margin-right: 50px;
	text-align: center;
}
#misson_values h1{
    font-size: 24px;
    color: #333;
	text-align: center;
}

#misson_values ul {
    list-style-type: none;
	text-align: center;
    padding-left: 0;
}

#misson_values li {
	width: 100%;
    margin-bottom: 10px;
	display: flex; /* Align list items and squares horizontally */
	color: white;
	text-align: center;
}

#misson_values ul li {
    font-size: 30px; /* Increase font size */
    display: flex; /* Align text horizontally */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    height: 100%; /* Ensure full height of the colored squares */
    padding: 0 10px; /* Add padding to the sides */
    margin: 0; /* Remove default margin */
    color: white; /* Text color */
}

#misson_values p {
    font-size: 24px;
    line-height: 2.0;
	text-align: center;
	padding-top: 35px;
}

.square {
    width: 100%;
    height: 175px;
    margin-right: 10px;
	text-align: center;
}

.square li {
    margin-left: 10px;
	text-align: center;
}

.blue {
    background-color: #003D4C;
	text-align: center;
}

.tan {
    background-color: #dfd7ca;
	text-align: center;
}

.green {
    background-color: #035714;
	text-align: center;
}

.team-heading{
	position: absolute; /* Set position to absolute */
    top: 57%; /* Place it at 50% from the top */
    left: 0; /* Center it horizontally */
    width: 100%; /* Make it full width */
    transform: translateY(-50%);
}

#our_team {
	text-align: center;
}

.team-heading {
	margin-bottom: 50px;
}

#our_team h1 {
	margin-top: 0;
}

#team_members {
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
}

.image-wrapper {
    text-align: center;
    margin: 10px; /* Add some space between each image */
}

.circle-image {
    width: 200px; /* Adjust size as needed */
    height: 200px; /* Adjust size as needed */
    border-radius: 50%; /* Make it a circle */
    object-fit: cover; /* Ensure the image fills the circle */
}

#our_team h1 {
    padding-bottom: 30px;
    text-align: center;
    color: #000;
}

#our_team p {
    padding-top: 10px; /* Adjust spacing between image and text */
    text-align: center;
    color: #000;
}

/*Accomdation Page*/

/* Card styles */
.container {
    margin-top: 20px; /* Adjust margin as needed */
}

.card {
    width: 100%;
}

/* Center headers */
h2.text-center {
    text-align: center;
}
/*Contact Us Page*/
.us {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.us h2{
	text-align: center;
	padding-top: 10px;
}

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

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #003D4C;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 30px;
}

button[type="submit"]:hover {
  background-color: #035714;
}

/*Hot Spots Page*/

#hot_spots_bar{
	background-color: #003D4C;
	color: white;
	text-align: center;
	padding: 10px 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
	
}

.description {
  padding: 10px;
  background-color: #f0f0f0;
}

.description h3 {
  margin-top: 0;
}

.description p {
  margin-bottom: 0;
}

/*Hot-spot transition*/
.grid-item {
  position: relative;
  overflow: hidden;
}

.description {
  position: absolute;
  top: 0;
  left: 100%;
  width: calc(100% - 20px); /* Adjust the width as needed */
  padding: 10px;
  background-color: #f0f0f0;
  transition: transform 0.3s ease-in-out;
}

.grid-item:hover .description {
  transform: translateX(-100%);
}

/*Accomdation Pages*/
.gallary-photos {
    width: 28%;
    margin: 10px;
    padding: 14px;
    float: left;
    background-color: #fff;
    border: 1px solid #16325a;
    box-shadow: 5px 5px 5px;
    border-radius: 5px;
    height: 260px;
}
/*CSS Transition*/
.overlay img {
  opacity: 1;
  transition: opacity 1s;
}

.overlay img:hover {
  opacity: 0.5; 
}

.overlay {
  position: relative;
  
}

.overlay-content-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay-content-bottom {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-22%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay:hover .overlay-content-top,
.overlay:hover .overlay-content-bottom {
  opacity: 1;
}

/*About*/

.row {
  display: flex;
}

.column {
  flex: 50%;
}


/*Screen Changes*/







