body {
    margin: 0;
    padding: 0; 
    color: #000000;
    /* background-color: #9A5C63; */
}

/* NAVIGATION shop */ 
.navbar {
    background: #9A5C63;             /* from my color theme */
    color: white;
}

.navleft a {
    color: white;
}

/* VISIT */
.visitsection {
    padding: 80px 20px 40px 20px;
    text-align: center;
    background-color: #9A5C63;
    color: white;
}

.visitsection h2 {
    font-size: 4.1em;
    font-weight: 700;
    margin-bottom: 60px;
    padding-bottom: 15px;
}

.visitcontainer {
    display: flex;
    justify-content: center; 
    gap: 200px; 
    flex-wrap: wrap;
}

.visittext {
    max-width: 350px; 
    text-align: center;
    font-size: 1.6em;
}

.visittext ul p {
    padding-top: 16px;
    font-size: 1em;
    letter-spacing: 0.3px;
    color: white;
    
}

.visittext ul {
    list-style: none;
}

/* VISITIMG */
.visitimgsection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; 
    width: 100%;
    padding: 20px;
    background-color: #9A5C63;
}

.visitimg {
    width: 500px; 
    height: 700px; 
    background-color: #fff; 
    position: relative;
    overflow: hidden;
    border-radius: 50% / 35% 35% 0 0;
    /*clip-path: inset(0 0 0 0 round 50% / 35% 35% 0 0);*/
}

.visitimg img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* HOVER SIDENAV */
#hover a {
  position: fixed; 
  left: -70px; /* position outside of the window */
  transition: 0.3s; /* transition speed*/
  padding: 20px; 
  width: 115px; 
  text-decoration: none; 
  font-size: 20px; 
  color: white; 
  border-radius: 0 12px 12px 0; /* rounded corners */
  padding-left: 10px;
}

#hover a:hover {
  left: 0; 
}

#instagram {
  top: 68%; /* distance between bars */
  background-color: #C8B8A8;
}

#maps {
  top: 76%;
  background-color: #722B37; 
}

#direct {
  top: 84%;
  background-color: #C5A46D; 
}

/* FOOTER FOR CONTACT PAGE */
:root {
    --scroll-color: #5A1F2A; 
    --text-color: white; 
}

.footer {
    background-color: #5A1F2A;
}

.footersection a {
    background-color: white;
    color: #5A1F2A;
}

.footersection a:hover {
    background-color:  #d2cfcc;
}