
  .bbw-bottom{
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 14px;
    max-width: 450px;
    margin: 0 auto;
      justify-content: center;
}
.bbw-logo {
width: 100px;
justify-content: center}

.bbw-logoa {
border-radius: 30px;
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
}

nav {background-color: #FF8C00}

.horizontal-list {
 font-size: 30px;
    display: flex; 
  list-style-type: none;
  padding: 0;
  margin: 0; 
justify-content: center;
}

.horizontal-list li {
  padding: 10px;
}

.horizontal-list2 {
 font-size: 20px;
    display: flex; 
  list-style-type: none;
  padding: 0;
  margin: 0; 
justify-content: center;
}

.horizontal-list2 li {
  padding: 10px;
}

a:link {text-decoration: none;
color: #000000;
font-family: cursive;}

a:visited {color: #000000}

a:hover {text-decoration: underline}


body {background-color: #FF8C00}

.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 

}


.card {
background: rgba(255, 255, 255, 0.08);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.card:hover {
transform: translateY(-10px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}


.card img {
width: 100%;
height: 250px;
}


.card .content {
padding: 1.5rem;
}


.card h3 {
margin-bottom: 0.5rem;
font-size: 1.3rem;
}


.card p {
font-size: 0.95rem;
opacity: 0.85;
}


.font3 {font-size: 20px; 
margin-left: auto;
margin-right: auto;}


    @media (max-width: 768px) {
    .nav-menu {
        flex-direction: column; }
}




.slideshow {
  position: relative;
  width: 80%;
  max-width: 700px;
  margin: 20px auto;
}

.slideshow input {
  display: none; /* hide radio buttons */
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Show the slide when its radio button is checked */
#slide1:checked ~ .slide:nth-of-type(1),
#slide2:checked ~ .slide:nth-of-type(2),
#slide3:checked ~ .slide:nth-of-type(3) {
  opacity: 1;
  position: relative;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots label {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#slide1:checked ~ .dots label:nth-of-type(1),
#slide2:checked ~ .dots label:nth-of-type(2),
#slide3:checked ~ .dots label:nth-of-type(3) {
  background-color: #717171;
}