body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #fef1e7;
  margin: 0;
}

.main-navbar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fbb273 ;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 50px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.arrow-btn-drpdwn {
  height: 35px;            
  width: 120px;          
  border-radius: 999px;      /* makes it pill-shaped */
  border: 2px solid #222;
  background-color: #fbb273;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  box-shadow: 5px 4px 0 0 #222;
  cursor: pointer;
  padding: 0 24px;           /* horizontal padding for content */
  transition: box-shadow 0.15s, transform 0.15s;
}

.dropdown {
  position: relative;
  display: inline-block;
}


.arrow-btn-drpdwn img {
  transition: transform 0.2s;
  transform: rotate(90deg); /* Points down */
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
    top: calc(100% + 9px); /* 12px gap below the button */
}

.dropdown-content a {
  color: #494949;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: source-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  font-variant: small-caps;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background-color: #fbb273;
  color: #fff;
}

.arrow-btn:active {
  transform: translate(5px, 4px);
  box-shadow: none;
}

.arrow-btn-drpdwn.pressed {
  box-shadow: 2px 1px 0 0 #222;
  transform: translateY(2px);
  background-color: #ffcb8b; /* Optional: slightly darker on press */
}

.grandparent-container {
  display: flex;
  flex-direction: row;
  gap: 50px; /* Optional: space between boxes */
}

.container-LRG {
  background-color: #f9fdff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  width: 600px;
  position: relative;
  border: 2px solid #5FBAE9;
  border-radius: 15px;
  box-sizing: border-box;
}

.container-LRGimage {
  height: 200px;
  width: 580px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: fill-proportional; /* Ensures image fits well */
}
.container-LRGheader {
  height: 45px;
  width: 580px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
    font-family: source-sans-pro, sans-serif;
  font-weight: 900;
  font-style: normal;
  justify-content: center;
  font-size: 36px;
  color: #F19545;
  letter-spacing: 6px;
  font-variant: small-caps;
}
.container-LRGdescription {
  height: 80px;
  width: 530px;
  border-radius: 8px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #43a7d9;
  font-size: 14px;
  font-family: source-sans-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.5;
  text-align: justify;
}


.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffcfa5;
  display: inline-block;
}

.indicator.active {
  background: #F19545;
}

.arrow-btn {
  --thumb-size: 32px;
  height: var(--thumb-size);
  width: var(--thumb-size);
  border: 2px solid #222;
  border-radius: 50%;
  background-color: #fbb273;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 4px 0 0 #222;
  cursor: pointer;
  padding: 0;
  transition: box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
}
.arrow-btn:active {
  transform: translate(5px, 4px);
  box-shadow: none;
}

.arrow-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  align-items: center;
}
.carousel-slide.active {
  display: flex;
}