/*general*/
html, body {
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
    padding: 0;
    display: flex;
}
a{
    text-decoration: underline;
    color: white;
}
a:hover {
    color: rgb(0, 80, 0);
}
a:active {
    color: white;
}
button {
    cursor: pointer;
}
/* header */
header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    font-family: cursive;
    color: rgb(156, 94, 75);
    width: 100%;
    z-index: 100;
    margin: 0;
    padding: 0;
}
header li {
    display: inline-flex;
    margin: 0 10px;
}
.spacer{
    width: 2rem;
}
.title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}
/* booking section */
.banner {
    /*background-image: url('../images/banner.jpg');*/
    background-color: rgba(0, 0, 0, 0.507);
    background-size: cover;
    background-position: center;
    color: rgb(252, 252, 252);;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    width: 100%;
    height: 43.75rem;
}
/*.banner .banner-text{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border: solid 0.06 black;
    border-radius: 0.5rem;
    background-color: rgb(0, 80, 0);
}*/
.banner button{
    background-color: rgb(156, 94, 75);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.5em;
    margin: 2rem;

}
.background{
    background-image: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* about section */
.aboutme {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgb(156, 94, 75);
    color: rgb(0, 0, 0);
    font-size: medium;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: 100%;
    /*padding-top: 10rem;*/
    border-top: solid 4px black;
}
.aboutme img {
    margin: 20px;
    width: 300px;
    height: 300px;
}
.aboutme-text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}
/*.aboutme-text h2 {
    display: flex;
    justify-content: center;
}*/
.aboutme-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.4;
}
/*@media screen and (max-width: 768px) {
    .aboutme {
        flex-direction: column;
    }
    .aboutme img {
        width: 200px;
        height: 200px;
    }
    .aboutme-text {
        width: 100%;
    }
    
}*/
/* portfolio section */
.portfolio {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: rgb(156, 94, 75);
    width: 100%;
    min-height: 25rem;
    border-top: 4px solid black;
    padding-bottom: 2rem;
}
.portfolio .portfolio-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.portfolio .box{
    display: flex;
    justify-content: center;
    align-items: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 2rem;
    column-gap: 2rem;
    /*border: solid 2px red;*/
    width: 80%;
    height: 100%;
}
.portfolio .box .portfolio-content {
    /*display: flex;
    justify-content: center;*/
    align-items: center;
    max-width: 45rem;
    max-height: 40rem;
    border: solid 2px black;
    background-color: rgb(216, 216, 216);
    background-size: cover;
}
.portfolio-content img {
    width: 25.5rem;
    height: 25.5rem;
}
.portfolio-content h4 {
    color: rgb(0, 0, 0); /* Change text color */
    font-family: cursive;
    text-align: center; /* Center the text */
    margin-top: 0.5rem; /* Add some margin if needed */
}
/* img container*/
#image-container {
    /*display: none;*/
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    row-gap: 2rem;
    background-color: rgb(156, 94, 75);
}
#image-container img {
    width: 25.5rem;
    height: 25.5rem;
}
/* lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px #fff;
}
#close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

#prev { left: 20px;}
#next { right: 20px;}

/*pricing*/
.Pricing {
    border-top: 4px solid black;
    background-color: rgb(156, 94, 75);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricinglists {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    width: 90%;
    height: 100%;
}
/* footer */
footer {
    background-color: rgb(0, 0, 0);
    margin: 0;
    width: 100%;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
