
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body 
{
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

.top-bar 
{
  height: 130px;
  background-color: #eeece7;
  border: 1px solid #cccccc;
  
  /*color: white;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*font-size: 1.2rem;*/
}

.bottom-bar 
{
  height: 230px;
  background-color: #acaba9;
  text-align: center;
  /*line-height: 230px;*/
}

.slideshow 
{
  position: relative;
  width: 100%;
}

.slideshow img 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#slide1 
{
	opacity: 1;
	position: relative;
}

.content 
{
	padding-top: 100px;
}

.bio 
{
	justify-content: left;
	width: 400px;
	color: green;				
}

.caption 
{
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  font-size: 20px; /*1.5rem;*/
  font-family: "Helvetica", sans-serif;
  padding: 10px;
  cursor: pointer;
}

.previous-slide,
.next-slide 
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-family: "Helvetica", sans-serif;
  padding: 10px;
  cursor: pointer;
}

.previous-slide 
{
  left: 0px;
}

.next-slide 
{
  right: 0px;
}

.more-about-nuala 
{
  width: 200px;
  height: 45px;
  background-color: #ffb122;
  color: #ffffff;
  border: none;
  box-shadow: none;
  cursor: pointer;
}


.image-row 
{
  display: flex;
  gap: 40px;
  padding: 0 60px;
  box-sizing: border-box;
}

.image-box 
{
  flex: 1;
  text-align: center;
}

.image-box img 
{
  width: 100%;
  height: auto;
}

.image-title 
{
  font-family: Garamond, serif;
  font-size: 18px;
  color: #444;
  margin-bottom: 8px;
}	

/* Container for the dropdown */
.dropdown 
{
  position: relative;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content 
{
	font-size: 14px;
  	display: none;
  	position: absolute;
  	background-color: #999795;
  	min-width: 260px;
  	box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a 
{
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

/* Hover effects */
.dropdown-content a:hover 
{
  color: orange;
}

  /* Add hover behavior */
  .dropdown:hover .dropdown-content 
  {
    display: block !important;
  }




