.top-image {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
}

.top-image img {
    width: 100%;
    height: 1000px;
    display: block !important; 

}
.overlay-text {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 100px; 
    text-align: center;
    width: 100%; 
    z-index: 1; 
  }

/* button */
.community-button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #c69e54;
    cursor: pointer;
}

.community-button:hover {
    background-color: #000000;
    color: #ffffff !important;
}
.image-container {
    position: relative;
  }
  /* css for card in community page */
  .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .purchase-ticket-btn{
    position: absolute;
    bottom: 70px;
    right: 50px;
    padding: 10px;
    background-color:#c69e54;
  }
  .purchase-ticket-btn:hover{
    
    background-color: #e2b157;
  }
  
  /* Adjust the font size for smaller screens */
  @media only screen and (max-width: 768px) {
    .overlay-text {
      font-size: 16px; 
    }
    h5{
        font-size: 20px !important;
    }
  }
  /* Fade out in the 2nd video on index page */
  #video-container video {
    opacity: 5;
    transition: opacity 0.5s ease-in-out;
  }
  
  .fade-out {
    opacity: 0;
  }
  
  .fade-in-animation {
    animation: fadeInAnimation 2s ease-in-out forwards;
  }
  /*   text inside the video  */
  
  .transparent-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c69e54;
    font-weight: bold;
    font-size: 80px; 
    opacity: 0;
    animation: fadeInAndOut 6s ease-in-out forwards;
    overflow: hidden;
    text-shadow: 3px 3px 0 #c69e54, -3px -3px 0 #c69e54, 3px -3px 0 #c69e54, -3px 3px 0 #c69e54; 
}

@media (max-width: 768px) {
  .transparent-div {
      font-size: 60px; 
  }
}

@media (max-width: 576px) {
  .transparent-div {
      font-size: 40px;
  }
}

@keyframes fadeInAndOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    80% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(50%, 50%) rotate(45deg);
    }
}


  /*  end text inside the video  */
  
  @keyframes fadeInAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  

  
  
/* Make the community.html page fully responsive */

@media only screen and (max-width: 768px) {
    .button-container {
        align-items: center; 
        text-align: center; 
        margin-top: 100px !important;
    }
    
    .button-container h3 {
        margin-bottom: 1px; 
        text-align: center; 
        font-size: 20px;
    }

    .community-button {
        display: block; 
        margin: 10px auto; 
        font-size: 12px; 
        padding: 5px 10px; 
    }
}
@media only screen and (max-width: 768px) {
    .community-button {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
}
@media only screen and (max-width: 768px) {
    .overlay-text {
      font-size: 16px; 
    }
  }
.video-block:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

/* staff board css */
.container-staff {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.accordion {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  text-align: left;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  position: relative; 
}

.panel {
  display: none;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.accordion-active + .panel {
  display: block;
}

.sub-section {
  padding-left: 20px;
  border-left: 1px solid #ddd;
}
.accordion::after {
  content: "+"; 
  position: absolute; 
  top: 50%; 
  right: 10px; 
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-active::after {
  content: "-"; 
}
.accordion::after {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}


  /* our season page slider */
.customSlider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.customSlides {
  display: flex;
  width: 300%;  
}

.customSlide {
  flex: 1;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideContent {
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.customSlide.active .slideContent {
  opacity: 1;
}

.slideText {
  max-width: 80%;
}

.slideText h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.slideText p {
  font-size: 5.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.customBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background-color: #c69e54; 
    /* color: black; Text color */
    border: 2px;
    border-radius: 50%; 
    width: 50px; 
    height: 50px; 
    font-size: 24px;
    font-weight: bold; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customBtn:active {
  border: 2px solid #b38a41; 
}

.customBtn:hover {
  background-color: #b38a41; 
}

.customPrev {
  left: 10px;
}

.customNext {
  right: 10px;
}


/* All Products page css */
.productGallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.productItem {
  border: 1px solid #c69e54;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.productItem img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.productName {
  font-size: 1.5em;
  margin-top: 10px;
}

.productPrice {
  font-weight: bold;
  color: #333;
}

.productDescription {
  color: #666;
  margin-top: 10px;
}

.productPagination {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  background-color: black;
width: 400px;
border-radius: 8px;
}

.paginationBtn {
  padding: 10px 20px;
  text-decoration: none;
  color: #c69e54;
  font-size: 1.2em;
}
.paginationBtn:hover{
color: #c69e54;
}
.productItem {
  overflow: hidden; 
  transition: transform 0.3s ease-in-out; 
  cursor: pointer; 
}

.productItem:hover {
  transform: scale(1.05); 
}

.productItem img {
  width: 100%; 
  height: auto; 
  transition: transform 0.3s ease-in-out; 
}

.productItem:hover img {
  transform: scale(1.1); 
}


.opera-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.opera-heading {
  color: #c69e54;
  text-align: center;
  margin-top: 0px;
  margin-top: 40px;
}

.opera-theme, .opera-events, .opera-team {
  margin-top: 30px;
}

.theme-title {
  color: #c69e54;
}

.theme-description, .event-name, .event-location, .team-role, .team-name {
  margin: 5px 0;
  line-height: 1.6;
}

.event-detail {
  margin-bottom: 25px;
}

.team-heading {
  color: #c69e54;
  text-align: center;
}
.event-date{
  color: #c69e54;
}

.team-member {
  text-align: center;
  margin-bottom: 20px;
}

.team-photo {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
}

.opera-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


  /* our season page slider */
  /* start */
  .marquee-container {
    margin-top: 50px;
    margin-bottom: 60px;
    width: 100%; 
    overflow: hidden;
    background-color: #000;
    position: relative;
    height: 90px; 
    display: flex;
    align-items: center; 
}

.marquee {
    display: flex;
    padding: 0 50px; 
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}
.marquee-link {
    padding: 0 24px;
    text-decoration: none; 
    color: #c69e54;
    font-size: 20px; 
    transition: color 0.3s ease;
}

.marquee-link:hover {
    color: #dca237; 
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


  /* ends */
.customSlider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.customSlides {
  display: flex;
  width: 300%;  
}

.customSlide {
  flex: 1;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideContent {
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.customSlide.active .slideContent {
  opacity: 1;
}

.slideText {
  max-width: 80%;
}

.slideText h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.slideText p {
  font-size: 5.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.customBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background-color: #c69e54; 
    /* color: black; Text color */
    border: 2px;
    border-radius: 50%; 
    width: 50px; 
    height: 50px; 
    font-size: 24px;
    font-weight: bold; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customBtn:active {
  border: 2px solid #b38a41; 
}

.customBtn:hover {
  background-color: #b38a41; 
}

.customPrev {
  left: 10px;
}

.customNext {
  right: 10px;
}

.opera-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.opera-heading {
  color: #c69e54;
  text-align: center;
  margin-top: 0px;
  margin-top: 40px;
}

.opera-theme, .opera-events, .opera-team {
  margin-top: 30px;
}

.theme-title {
  color: #c69e54;
}

.theme-description, .event-name, .event-location, .team-role, .team-name {
  margin: 5px 0;
  line-height: 1.6;
}

.event-detail {
  margin-bottom: 25px;
}

.team-heading {
  color: #c69e54;
  text-align: center;
}
.event-date{
  color: #c69e54;
}

.team-member {
  text-align: center;
  margin-bottom: 20px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

/* All Products page css */
.productGallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.productItem {
  border: 1px solid #c69e54;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.productItem img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.productName {
  font-size: 1.5em;
  margin-top: 10px;
}

.productPrice {
  font-weight: bold;
  color: #333;
}

.productDescription {
  color: #666;
  margin-top: 10px;
}

.productPagination {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  background-color: black;
width: 400px;
border-radius: 8px;
}

.paginationBtn {
  padding: 10px 20px;
  text-decoration: none;
  color: #c69e54;
  font-size: 1.2em;
}
.paginationBtn:hover{
color: #c69e54;
}
.productItem {
  overflow: hidden; 
  transition: transform 0.3s ease-in-out; 
  cursor: pointer; 
}

.productItem:hover {
  transform: scale(1.05); 
}

.productItem img {
  width: 100%; 
  height: auto; 
  transition: transform 0.3s ease-in-out; 
}

.productItem:hover img {
  transform: scale(1.1); 
}

/* All cart page css */
.cart-page {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-top: 250px;
}

.productSection {
  width: 60%;
}

.productWrapper {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.image {
  flex: 1; 
  text-align: center; 
}

.responsive-image {
  max-width: 100%; 
  height: auto; 
}

.productDetails {
  text-align: center;
}

.quantityControls {
  position: absolute;
  top: 20px;
  right: 20px;
}

.quantityInput {
  width: 40px;
  text-align: center;
  border: 2px solid #c69e54;
  border-radius: 5px;
  margin: 0 5px;
  padding: 5px;
}

.addToCartBtn,
.continueShoppingBtn,
.updateCartBtn {
  background-color: #c69e54;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
}

.cartSection {
  width: 35%;
  background-color: #c69e54;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.cartItemsList {
  margin-bottom: 20px;
}

.cartOptions {
  text-align: center;
}

.cartOptions button {
  background-color: #fff;
  color: #c69e54;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
}

/* CSS for Blog pages */
.blog-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 3px solid #c69e54;
  border-radius: 10px;
  overflow: hidden;
}
.blog-title {
  text-align: center;
  font-size: 23px;
  margin-bottom: 20px;
  /* text-align: justify; */
}
.blog-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; 
}
.blog-image-container {
  width: 700px; 
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px; 
}
.blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px; 
}
.blog-content {
  text-align: justify;
}
.blog-contact {
  padding-top: 20px; 
  text-align: center;
}
.like-comment-section {
  margin-top: 40px;
  text-align: center;
}
.like-comment-section .like-icon {
  font-size: 24px;
  margin-right: 10px;
  cursor: pointer;
}
.like-comment-section .comment-box {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.like-comment-section .comment-box textarea {
  width: 100%;
  height: 100px;
  resize: none;
}

 /* Staff and board page CSS */
 .container-staff {
  margin-top: 230px;
}
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion.active, .accordion:hover {
  background-color: #ccc;
}
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.panel.show {
  display: block;
}
.sub-section {
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}
.sub-section:last-child {
  border-bottom: none;
}
.toggle-button {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: black;
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 5px;
}

/* bio pages */
.candide-bio{
  /* padding-top: 80px; */
  border: 3px solid #a8a250;
  border-radius: 20px ;
  padding: 20px;
  /* padding-bottom: 80px; */
  color: #000000 !important;

}

.candide-img img{
  width: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.candide-cast-bio p{
  font-size: 13px;
  font-weight: 600;

}



@media only screen and (max-width: 990px) {

  .candide-img img{
      width: 100% !important;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  }
}

.mobile-view{
  display: none;
}

@media only screen and (max-width: 990px) {

  .dekstop-view{
     display: none;
  }

  .mobile-view{
      display: block;
  }
}


  /* Adjust the font size for smaller screens */
  @media only screen and (max-width: 768px) {
    .overlay-text {
      font-size: 16px; 
    }
    
  }
  
/* Make the community.html page fully responsive */

@media only screen and (max-width: 768px) {
    .button-container {
        align-items: center; 
        text-align: center; 
        margin-top: 100px !important;
    }
    
    .button-container h3 {
        margin-bottom: 1px; 
        text-align: center; 
        font-size: 20px;
    }

    .community-button {
        display: block; 
        margin: 10px auto; 
        font-size: 12px; 
        padding: 5px 10px; 
    }
}
@media only screen and (max-width: 768px) {
    .community-button {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
}

@media only screen and (max-width: 768px) {
    .overlay-text {
      font-size: 16px; 
    }
  }
  /* forgetpassword page add responsiveness */
  @media (max-width: 576px) {
    .contact-form {
      width: 90%;
      margin-left: 100px;
    }
  }
  /* login page add responsiveness */
  @media (max-width: 576px) {
    .contact-form {
      margin-top: 20px;
    }
    .col-lg-6, .col-md-8, .col-sm-10 {
      margin-bottom: 20px;
    }
  }
  /* signup page add responsiveness */
  @media (max-width: 768px) {
    .contact-form {
      width: 90%;
    }
  }

  
  /* our season page slider */
  /* start */
  .marquee-container {
    margin-top: 50px;
    margin-bottom: 60px;
    width: 100%; 
    overflow: hidden;
    background-color: #000;
    position: relative;
    height: 90px; 
    display: flex;
    align-items: center; 
}

.marquee {
    display: flex;
    padding: 0 50px; 
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.marquee-link {
    padding: 0 24px;
    text-decoration: none; 
    color: #c69e54;
    font-size: 20px; 
    transition: color 0.3s ease;
}

.marquee-link:hover {
    color: #dca237; 
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


  /* ends */
.customSlider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.customSlides {
  display: flex;
  width: 300%;  
}

.customSlide {
  flex: 1;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideContent {
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.customSlide.active .slideContent {
  opacity: 1;
}

.slideText {
  max-width: 80%;
}

.slideText h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.slideText p {
  font-size: 5.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.customBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background-color: #c69e54; 
    /* color: black; Text color */
    border: 2px;
    border-radius: 50%; 
    width: 50px; 
    height: 50px; 
    font-size: 24px;
    font-weight: bold; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customBtn:active {
  border: 2px solid #b38a41; 
}

.customBtn:hover {
  background-color: #b38a41; 
}

.customPrev {
  left: 10px;
}

.customNext {
  right: 10px;
}

.opera-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.opera-heading {
  color: #c69e54;
  text-align: center;
  margin-top: 0px;
  margin-top: 40px;
}

.opera-theme, .opera-events, .opera-team {
  margin-top: 30px;
}

.theme-title {
  color: #c69e54;
}

.theme-description, .event-name, .event-location, .team-role, .team-name {
  margin: 5px 0;
  line-height: 1.6;
}

.event-detail {
  margin-bottom: 25px;
}

.team-heading {
  color: #c69e54;
  text-align: center;
}
.event-date{
  color: #c69e54;
}

.team-member {
  text-align: center;
  margin-bottom: 20px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

/* All Products page css */
.productGallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.productItem {
  border: 1px solid #c69e54;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.productItem img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.productName {
  font-size: 1.5em;
  margin-top: 10px;
}

.productPrice {
  font-weight: bold;
  color: #333;
}

.productDescription {
  color: #666;
  margin-top: 10px;
}

.productPagination {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  background-color: black;
width: 400px;
border-radius: 8px;
}

.paginationBtn {
  padding: 10px 20px;
  text-decoration: none;
  color: #c69e54;
  font-size: 1.2em;
}
.paginationBtn:hover{
color: #c69e54;
}
.productItem {
  overflow: hidden; 
  transition: transform 0.3s ease-in-out; 
  cursor: pointer; 
}

.productItem:hover {
  transform: scale(1.05); 
}

.productItem img {
  width: 100%; 
  height: auto; 
  transition: transform 0.3s ease-in-out; 
}

.productItem:hover img {
  transform: scale(1.1); 
}

/* All cart page css */
.cart-page {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-top: 250px;
}

.productSection {
  width: 60%;
}

.productWrapper {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.image {
  flex: 1; 
  text-align: center; 
}

.responsive-image {
  max-width: 100%; 
  height: auto; 
}

.productDetails {
  text-align: center;
}

.quantityControls {
  position: absolute;
  top: 20px;
  right: 20px;
}

.quantityInput {
  width: 40px;
  text-align: center;
  border: 2px solid #c69e54;
  border-radius: 5px;
  margin: 0 5px;
  padding: 5px;
}

.addToCartBtn,
.continueShoppingBtn,
.updateCartBtn {
  background-color: #c69e54;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
}

.cartSection {
  width: 35%;
  background-color: #c69e54;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.cartItemsList {
  margin-bottom: 20px;
}

.cartOptions {
  text-align: center;
}

.cartOptions button {
  background-color: #fff;
  color: #c69e54;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
}

/* CSS for Blog pages */
.blog-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 3px solid #c69e54;
  border-radius: 10px;
  overflow: hidden;
}
.blog-title {
  text-align: center;
  font-size: 23px;
  margin-bottom: 20px;
  /* text-align: justify; */
}
.blog-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; 
}
.blog-image-container {
  width: 700px; 
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px; 
}
.blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px; 
}
.blog-content {
  text-align: justify;
}
.blog-contact {
  padding-top: 20px; 
  text-align: center;
}
.like-comment-section {
  margin-top: 40px;
  text-align: center;
}
.like-comment-section .like-icon {
  font-size: 24px;
  margin-right: 10px;
  cursor: pointer;
}
.like-comment-section .comment-box {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.like-comment-section .comment-box textarea {
  width: 100%;
  height: 100px;
  resize: none;
}

 /* Staff and board page CSS */
 .container-staff {
  margin-top: 230px;
}
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion.active, .accordion:hover {
  background-color: #ccc;
}
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.panel.show {
  display: block;
}
.sub-section {
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}
.sub-section:last-child {
  border-bottom: none;
}
.toggle-button {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: black;
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 5px;
}

/* bio pages */
.candide-bio{
  /* padding-top: 80px; */
  border: 3px solid #a8a250;
  border-radius: 20px ;
  padding: 20px;
  /* padding-bottom: 80px; */
  color: #000000 !important;

}

.candide-img img{
  width: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.candide-cast-bio p{
  font-size: 13px;
  font-weight: 600;

}



@media only screen and (max-width: 990px) {

  .candide-img img{
      width: 100% !important;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  }
}

.mobile-view{
  display: none;
}

@media only screen and (max-width: 990px) {

  .dekstop-view{
     display: none;
  }

  .mobile-view{
      display: block;
  }
}


  /* Adjust the font size for smaller screens */
  @media only screen and (max-width: 768px) {
    .overlay-text {
      font-size: 16px; 
    }
    
  }
  
/* Make the community.html page fully responsive */

@media only screen and (max-width: 768px) {
    .button-container {
        align-items: center; 
        text-align: center; 
        margin-top: 100px !important;
    }
    
    .button-container h3 {
        margin-bottom: 1px; 
        text-align: center; 
        font-size: 20px;
    }

    .community-button {
        display: block; 
        margin: 10px auto; 
        font-size: 12px; 
        padding: 5px 10px; 
    }
}
@media only screen and (max-width: 768px) {
    .community-button {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
}

@media only screen and (max-width: 768px) {
    .overlay-text {
      font-size: 16px; 
    }
  }
  /* forgetpassword page add responsiveness */
  @media (max-width: 576px) {
    .contact-form {
      width: 90%;
      margin-left: 100px;
    }
  }
  /* login page add responsiveness */
  @media (max-width: 576px) {
    .contact-form {
      margin-top: 20px;
    }
    .col-lg-6, .col-md-8, .col-sm-10 {
      margin-bottom: 20px;
    }
  }
  /* signup page add responsiveness */
  @media (max-width: 768px) {
    .contact-form {
      width: 90%;
    }
  }

 

/* checkout page css */


.main .page-header {
    background-size: cover;
    background-position: center;
    /* padding: 30px 0; */
    /* margin-bottom: 20px; */
}

.main .page-title {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.main .page-title span {
    color: #c69e54;
}

.cart {
    background: #fff;
    padding: 15px;
}

.table-cart {
    width: 100%;
    margin-bottom: 20px;
}

.table-cart th {
    background-color: #e9ecef;
    color: #495057;
    padding: 8px;
}

.table-cart td {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

.product-media img {
    width: 100px;
    height: auto;
    border-radius: 4px;
}

.product-title {
    margin: 0 0 0 10px;
    font-size: 16px;
}

.cart-product-quantity .quantity-input {
    width: 60px;
    text-align: center;
}

.summary {
    padding: 20px;
    background: #f4f4f4;
    border: 1px solid #dee2e6;
}

.summary-title {
    font-size: 18px;
    font-weight: bold;
}

.table-summary {
    width: 100%;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

.btn-success {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

.btn-order {
    padding: 12px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}
/* category page css */

.main {
  margin-top: 70px;
  margin-left: 100px;
  margin-bottom: 50px;
}

.page-header {
  text-align: center;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-header .container {
  padding: 0 15px;
}

.page-title {
  color: #333;
  font-size: 2.5rem;
  font-weight: bold;
}

.page-title span {
  color: #c69e54;
}

.page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.toolbox {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.toolbox-info span {
  font-weight: bold;
}

.products .row {
  margin-top: 20px;
}

.product {
  margin-bottom: 30px;
  padding: 0 15px;
}

.product-7 {
  border: 1px solid #eee;
  padding: 20px;
  transition: box-shadow 0.3s ease-in-out;
}

.product-7:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.product-media {
  position: relative;
  margin-bottom: 15px;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

.btn-product {
  background-color: #c69e54;
  color: white;
  padding: 8px 12px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
}

.product-body {
  text-align: center;
}

.product-cat a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.product-title {
  margin: 5px 0 10px;
  font-size: 18px;
}

.product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.product-title a:hover {
  color: #c69e54;
}

.product-price {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.ratings-container {
  display: flex;
  justify-content: center;
}

.ratings {
  position: relative;
  height: 15px;
  display: inline-block;
}

.ratings-val {
  background-color: #ffd700;
  height: 100%;
}

.ratings-val {
  position: absolute;
  top: 0;
  left: 0;
}

/* Css for cart page */

.main .page-header {
  text-align: center;
  background-size: cover;
  background-position: center;
}
.page-title {
  color: #333;
  font-size: 2.5rem;
  font-weight: bold;
}

.page-title span {
  color: #6c757d;
}

.page-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.table-cart {
  width: 100%;
  margin-bottom: 20px;
}

.table-cart thead {
  background-color: #f7f7f7;
}

.table-cart th, .table-cart td {
  padding: 15px;
  text-align: center;
}

.product-col {
  display: flex;
  align-items: center;
}

.product-media img {
  width: 80px;
  height: auto;
  margin-right: 10px;
}

.product-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.price-col, .total-col {
  font-weight: bold;
}

.quantity-col .quantity-input {
  width: 60px;
  text-align: center;
}

.cart-discount {
  margin-top: 20px;
}

.btn-order {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
}

.btn-order:hover {
  background-color: #0056b3;
  color: white;
}

.summary {
  background-color: #f8f9fa;
  padding: 20px;
  border: 1px solid #dee2e6;
}

.summary-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 20px;
}

.table-summary th, .table-summary td {
  padding: 10px;
  border-top: none;
}

.table-summary tr.summary-total {
  font-size: 18px;
  font-weight: bold;
}

.btn-success {
  background-color: #28a745;
  color: white;
  padding: 10px 15px;
  width: 100%;
  font-size: 16px;
}

.btn-success:hover {
  background-color: #218838;
  color: white;
}

/* cart button design */
.btn-cart {
  background-color: #000; 
  color: #c69e54;
  padding: 10px 15px;
  /* width: 100%; */
  font-size: 16px;
  border: none;
  display: block; 
  text-align: center; 
  margin-top: 3px;
  margin-bottom: 3px;
  transition: background-color 0.3s ease; 
}

.btn-cart:hover, .btn-cart:focus {
  background-color: #000000; /* Darker background on hover/focus */
  color: #ea9b09; /* Optional: change color on hover/focus */
  text-decoration: none; /* Removes underline text on hover/focus */
}

/* increment and decrement */
.cart-product-quantity {
  display: flex;
  align-items: center;
}

.quantity-decrement, .quantity-increment {
  padding: 5px 10px;
  border: 1px solid #ccc;
  color: #333;
  background-color: #fff;
  cursor: pointer;
}

.quantity-input {
  text-align: center;
  border: 1px solid #ccc;
  width: 50px;
  padding: 5px;
  margin: 0 5px;
}


/* checkout order section */
.page-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between; 
}

.main {
  flex: 1; 
}

.order-section {
  flex: 0 0 30%; 
}


       
* start team on our season */

.team-heading {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 30px;
}

.team-member {
  display: inline-block;
  width: 300px;
  margin: 20px;
  vertical-align: top;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.team-photo {
  width: 100%;
  height: auto;
}

.team-role {
  font-size: 1.2em;
  color: #555;
  margin: 10px 0;
}

.team-name {
  font-size: 1em;
  color: #777;
  margin: 5px 0 20px;
}
/* end team on our season *