/* ----------------------------- */
/* Root Variables and Base Setup */
/* ----------------------------- */
/* === Donation Ticker (clean, validated) === */

/* === Donation Ticker (no CSS variables) === */

/* Base ticker styling */
.ticker {
  position: relative;
  z-index: 1030;
  width: 100%;
  height: 48px;
  min-height: 48px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 500;

  background: #2A4F7A;     /* default (neutral) */
  color: #ffffff;
  border-bottom: 2px solid #2A4F7A;
}

.ticker__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: 0 .75rem;
}

.ticker__icon {
  font-size: 20px;
}

.ticker__viewport {
  overflow: hidden;
  white-space: nowrap;
  /* You can keep or remove this mask; it’s just a fade-at-edges effect */
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%
  );
}

.ticker__track {
  display: inline-block;
  will-change: transform;
  animation: tickerScroll 35s linear infinite; /* scrolling speed */
}

.ticker__item {
  display: inline-block;
  padding-right: 4rem;
}

/* Pause on hover/focus */
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

.ticker__close {
  background: transparent;
  border: 0;
  color: #E3B354;
  font-size: 22px;
  line-height: 1;
  padding: 0 .25rem;
  cursor: pointer;
}

@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* === Themes – override basic colors === */

.ticker--thanksgiving {
  background: #5C3A21;
  color: #FFFBEA;
  border-bottom-color: #B9472B;
}

.ticker--christmas {
  background: #0f3a2a;
  color: #ffffff;
  border-bottom-color: #B9472B;
}

.ticker--neutral {
  background: #2A4F7A;
  color: #ffffff;
  border-bottom-color: #2A4F7A;
}

/* ----------------------------- */
/* Global Styles */
/* ----------------------------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
  }
    .gallery-img {
      max-width: 600px;
      max-height: 400px;
      min-width: 250px;
      min-height: 150px;
      width: 100%;
      height: auto;
      object-fit: cover;
      margin-bottom: 15px;
    }
 
.modal .modal-body video { width: 100%; }
   
.news-sidebar {
  background-color: #f5f5f5;      /* soft light gray */
  border-left: 4px solid #B9472B; /* your brick red accent */
  color: #111;                    /* dark readable text */
  font-size: 1rem;                /* base readable size */
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.news-sidebar h4 {
  color: #2A4F7A;  /* denim blue heading */
  font-weight: 600;
  margin-bottom: .75rem;
}
/* === Donation Ticker (PHAB) === */

/* Base ticker + default (neutral) values */
.ticker {
  /* CSS variables – easy to override by theme classes */
  --ticker-height: 48px;
  --ticker-speed: 35s;  /* lower = faster */
  --ticker-bg: #2A4F7A;
  --ticker-text: #ffffff;
  --ticker-accent: #E3B354;
  --ticker-border: #2A4F7A;

  position: relative;
  z-index: 1030;
  width: 100%;
  background: var(--ticker-bg);
  color: var(--ticker-text);
  border-bottom: 2px solid var(--ticker-border);
  font-size: 16px;
  line-height: var(--ticker-height);
  min-height: var(--ticker-height);
  font-weight: 500;
}

.ticker__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: 0 .75rem;
}

.ticker__icon {
  font-size: 20px;
}

.ticker__viewport {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%
  );
}

.ticker__track {
  display: inline-block;
  will-change: transform;
  animation: tickerScroll var(--ticker-speed) linear infinite;
}

.ticker__item {
  display: inline-block;
  padding-right: 4rem;
}

/* Pause on hover/focus */
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

.ticker__close {
  background: transparent;
  border: 0;
  color: var(--ticker-accent);
  font-size: 22px;
  line-height: 1;
  padding: 0 .25rem;
  cursor: pointer;
}

@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* === Themes override the variables above === */
.ticker--thanksgiving {
  --ticker-bg: #5C3A21;
  --ticker-text: #FFFBEA;
  --ticker-accent: #E3B354;
  --ticker-border: #B9472B;
}

.ticker--christmas {
  --ticker-bg: #0f3a2a;
  --ticker-text: #ffffff;
  --ticker-accent: #F5D97E;
  --ticker-border: #B9472B;
}

.ticker--neutral {
  --ticker-bg: #2A4F7A;
  --ticker-text: #ffffff;
  --ticker-accent: #E3B354;
  --ticker-border: #2A4F7A;
}

body {
  font-family: 'futura-pt', sans-serif;
  background-color: #fff;
  padding: 20px;
  color: #222;
}

#backToTop {
  display: none;         /* Hide by default */
  position: fixed;       /* Float over content */
  bottom: 40px;          /* 40px from the bottom */
  right: 40px;           /* 40px from the right */
  z-index: 999;          /* Make sure itâ€™s above other elements */
  font-size: 2rem;       /* Large arrow */
  background: #333;      /* Dark background */
  color: #fff;           /* White arrow */
  border: none;          /* No border */
  border-radius: 50%;    /* Circle shape */
  width: 48px;           /* Button size */
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.3s;
  outline: none;
  opacity: 0.7;
}
#backToTop:hover {
  background: #555;
  opacity: 1;
}
#backToTop.show {
  display: block;        /* Show when scrolled */
}





/* FAQ area ebds*/

#newsSidebar .news-list li {
  display: flex;
  align-items: baseline;
  padding: 0.25rem 0 0.5rem;
  margin: 0 0 0.25rem;
  border-bottom: 1px dashed rgba(0,0,0,.15);
}

#newsSidebar .news-date {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 3rem;      /* narrower */
  margin-right: 0.25rem; /* smaller gap */
  color: #6c757d;
  line-height: 1.2;
}

#newsSidebar .news-link {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}



/* Typography */
h1 {
  font-size: 37px;
  font-weight: 300;
  font-style: normal;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
}

h3 {
  font-size: 22px;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 10px;
}
h6 {
	font-weight:lighter;
	
	
}
  .donate-btn {
    display: inline-block;
    background-color: blanchedalmond;
    color: #000;
    font-size: 1.1rem;       /* keep the text size */
    font-weight: bold;
    padding: 2px 10px;       /* đź”‘ shrink the box, not the text */
    line-height: 1.2;        /* reduces vertical "extra space" */
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .donate-btn:hover {
    background-color: #e3b354;
    color: #000;
  }


  .donate-btn:hover {
    background-color: #e3b354; /* a slightly richer almond/golden tone */
    color: #000;
  }
 
    .image-wrapper {
      position: relative;
      display: inline-block;
      max-width: 100%;
    }

    .main-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
    }

    .overlap-img1 {
      position: absolute;
      bottom: -60px;      /* most of it below */
      right: -10px;       /* slightly inside from right */
      width: 220px;       /* fixed size */
      height: auto;
      border: 3px solid white;
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 2;
    }

    /* Optional: prevent layout from breaking */
    .wrapper-container {
      padding-bottom: 80px;  /* make space for the overlap image */
    }
/* Fade-in effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to the image */
.overlap-img1 {
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
/* Carousel container with fixed size */
.carousel-frame {
  width: 700px;
  height: 565px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
}

.custom-prev { left: -80px; }
.custom-next { right: -80px; }


.carousel-frame {
  width: 700px;
  height: 565px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* Ensure images fully fill the frame */
.carousel-frame .carousel-inner,
.carousel-frame .carousel-item,
.carousel-frame img {
  height: 100%;
}

.carousel-frame img {
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* Prev/Next Button Container */
.carousel-frame {
  width: 700px;
  height: 565px;
  position: relative;
  overflow: hidden;
}

.carousel-frame .carousel-inner,
.carousel-frame .carousel-item,
.carousel-frame img {
  height: 100%;
}

.carousel-frame img {
  object-fit: cover;
  width: 100%;
  display: block;
  border-radius: 6px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-control-prev {
  left: -70px;
}

.carousel-control-next {
  right: -70px;
}


/* Override Bootstrapâ€™s built-in icons with white SVG arrows */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0L6 0.75 2.75 4 6 7.25 5.25 8 1 4z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0L2 0.75 5.25 4 2 7.25 2.75 8 7 4z'/%3E%3C/svg%3E");
}

@media (max-width: 576px) {
  .overlap-img1 {
    width: 160px;
    bottom: -30px;
    right: 0;
  }

  .wrapper-container {
    padding-bottom: 160px;  /* Add this line */
  }
}
@media (max-width: 767.98px) and (min-width: 577px) {
  .wrapper-container {
    padding-bottom: 140px;  /* Add more room for mid-size screens */
  }

  .overlap-img1 {
    width: 180px;
    bottom: -40px;
    right: 0;
  }
}



/*

@media (min-width: 768px) {
  .overlap-img1 {
    width: 220px;
    bottom: -50px;
  }
}

@media (min-width: 992px) {
  .overlap-img1 {
    width: 240px;
    bottom: -60px;
  }
}

*/


    .btn-red {
      background-color: #e63946;
      color: white;
      font-weight: bold;
      padding: 12px 24px;
      border: none;
    }
    .btn-red:hover {
      background-color: #c62828;
    }

.container1{
	align-content: center;
	border-style: solid;
	border-color:darkcyan;

}




/* Flex wrapper for image and text */
.h3-block {
  display: flex;
  align-items: stretch; /* KEY: makes the image match full h3 height */
  margin-bottom: 2rem;
}

/* Responsive image that matches full text height */
.h3-block .h3-image {
  height: auto;
  width: auto;
  max-width: 200px; /* You can adjust this width */
  max-height: 200%;
  margin-right: 16px;
  object-fit: contain;
}

  .image-column {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .image-column img {
      padding: 5px;
      max-width: 100%;
      height: auto;
    } 


  .gallery-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .gallery-card:focus,
  .gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    text-decoration: none;
  }
  /* 16:10-ish aspect without Bootstrap 5 utilities */
  .gallery-thumb {
    width: 100%;
    padding-top: 62.5%; /* height ratio */
    background-size: cover;
    background-position: center;
  }
  .gallery-title {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: .75rem 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 80%);
  }



/* Retreat page-specific alignment */
.retreat-text h2 {
  text-align: center;
  margin-bottom: 10px;
}

.retreat-text h3 {
  text-align: left;
  margin-top: 0;
}
.bckalmond{
	background-color: blanchedalmond;
}

.bcklgtcyan{
	background-color:lightcyan;
}
.space-small{
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.space-med{
	padding-top:15px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: 10px;
}
.img-pop {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.img-pop:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cause-list li {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 6px;
  margin-bottom: 0.5em;
  list-style-type: disc;
  margin-left: 1.2em;
}


#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #e50914;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  transform: scale(1.1);
  background-color: #b00610;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}
.cta-small {
	text-align: center;
	padding-top: 0rem;
	padding-right: 0rem;
	padding-left: 0rem;
	padding-bottom: 0rem;
	background: #B9472B;
	color: #ffdddd;
	font-size: 1.1rem;
	height: 25px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
}

a {
  color: #e50914;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a img:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-column img {
  padding: 5px;
  max-width: 100%;
  height: auto;
}



h5.custom-style {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}
.set-width {max-width: 300px; margin: 0 auto; text-align: center;}

hr {
  border: none;
  height: 2px;
  background-color: #0074D9; /* Replace with your preferred color code */
  margin: 10px 0px 10px 0px;
}

/* ----------------------------- */
/* Home Dark Theme Styles */
/* ----------------------------- */
.stars {
	background-image: url(images/backgrounds/background%20stars.jpg);
}
.home-dark {
  background-color: #000;
  color: #fff;
}

.home-dark a {
  color: #e50914;
  text-decoration: none;
}

.home-dark a:hover {
  text-decoration: underline;
}

.home-dark .hero {
	background-repeat: no-repeat;
	background-position: center center/cover no-repeat;
	background-image: url("../images/1200x600/IamHungry.jpg");
	width: 100%;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.home-dark .hero-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.home-dark .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.home-dark .hero-text a {
  display: inline-block;
  background: #e50914;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.home-dark .hero-text a:hover {
  background-color: #b00610;
}

.home-dark .cta-small {
  text-align: center;
  padding: 1rem;
  background: #1a1a1a;
  color: #ffdddd;
  font-size: 1.1rem;
}

.home-dark .carousel-title {
  font-size: 1.5rem;
  margin: 2rem 1rem 0.5rem;
  color: #fff;
}

.home-dark .carousel {
  display: flex;
  overflow-x: auto;
  padding: 1rem;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.home-dark .card {
  flex: 0 0 auto;
  width: 320px;
  height: auto;
  overflow: hidden;
  border-radius: 6px;
  background-color: #111;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.home-dark .card:nth-child(1) { animation-delay: 0.1s; }
.home-dark .card:nth-child(2) { animation-delay: 0.2s; }
.home-dark .card:nth-child(3) { animation-delay: 0.3s; }
.home-dark .card:nth-child(4) { animation-delay: 0.4s; }

.home-dark .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
/* ===================
   Section Dividers
=================== */
.home-dark .card .caption {
  font-size: 0.95rem;
  color: #ccc;
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem; /* Added spacing above caption */
  margin-bottom: 0.25rem; /* Added spacing above caption */	
	
}




.home-dark .divider {
  height: 2px;
  margin: 1rem auto;
  width: 80%;
  background: linear-gradient(to right, transparent, #e50914, transparent);
  box-shadow: 0 0 8px #e50914;
}
.home-dark .quote-divider {
  font-size: 1.3rem;
  color: #fff;
  background: #1a1a1a;
  padding: 2rem 1rem;
  text-align: center;
  font-style: italic;
  border-left: 4px solid #e50914;
  border-right: 4px solid #e50914;
  margin: 3rem auto;
}



.card {
  overflow: hidden;
}

.card img {
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}



/* Carousel & General Cards */
/* ----------------------------- */
.card {
  flex: 0 0 auto;
  width: 320px;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

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

.carousel-title {
  font-size: 1.5rem;
  margin: 2rem 1rem 0.5rem;
}
.group-title {
	font-size: 1.0rem;
	margin: 1rem 1rem 0.5rem;
	text-shadow: 0px 0px #E4F903;
	padding-left: 1rem;
  
}

.carousel {
  display: flex;
  overflow-x: auto;
  padding: 1rem;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.landscape {
  width: 320px;
  height: 180px;
}

.portrait {
  width: 240px;
  height: 360px;
}

/* ----------------------------- */
/* Hero Section */
/* ----------------------------- */
.hero {
  position: relative;
  background: url('your-hero-image.jpg') center center/cover no-repeat;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 10px;
}
.hero {
  height: 250px;
  background-color: #f5f5f5;
  position: relative;
  padding: 10px;
}

.hero-text {
  position: absolute;
  bottom: 5px;
  left: 20px;
  text-align: left;
}

.donate-btn {
  padding: 6px 12px;
  font-size: 0.9em;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}


.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text a {
  display: inline-block;
  background: #e50914;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-text a:hover {
  background-color: #b00610;
}

.wrap-img {
  float: left;
  width: 45%;
  max-width: 360px;
  margin: 0 1.2rem 1rem 0;
  border: 6px solid #f8f9fa;           /* light frame (white/gray tone) */
  border-radius: 14px;                 /* soft rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* soft shadow for depth */
  shape-outside: inset(0 round 14px);
}

.wrap-block-right {
  position: relative;
}
.wrap-block-right::after { content: ""; display: table; clear: both; }

/* Image floated right with soft frame */
.wrap-img-right {
  float: right;
  width: 45%;
  max-width: 360px;
  margin: 0 0 1rem 1.2rem;
  border: 6px solid #f8f9fa;             /* light frame */
  border-radius: 14px;                   /* soft corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  shape-outside: inset(0 round 14px);
}

/* Tight bullet spacing */
.wrap-block-right ul {
  margin: 0;                /* remove all outer margin */
  padding-left: 0;          /* no indent */
  list-style-position: inside; /* keep bullets aligned with text */
  line-height: 1.3;         /* tighter line spacing */
}

.wrap-block-right li {
  margin-bottom: 0.25rem;   /* minimal vertical gap */
  text-align: left;         /* ensure text aligns left */
}



/* Mobile: stack image above text */
@media (max-width: 576px) {
  .wrap-img-right {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 .75rem 0;
  }
}




/* Mobile view */
@media (max-width: 576px) {
  .wrap-img {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 .75rem 0;
  }
}


@media (max-width: 768px) {
  .hero {
	height: 400px;
	background-image: url(../images/1200x600/new%20colonias.jpg);
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }
}

/* ----------------------------- */
/* Donate Button */
/* ----------------------------- */
.navbar a.donate-button {
  background-color: var(--accent1);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.donate-button:hover,
.navbar a.donate-button:hover {
  background-color: #a73520;
  color: #E3B354;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.35);
}

/* ----------------------------- */
/* Navbar */
/* ----------------------------- */
.navbar {
  background-color: var(--primary);
  padding: 1rem;
}

.navbar a {
  color: white;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  background-color: var(--accent1);
  color: white;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
}
.navbar-nav .nav-link.active {
  background-color: #fff;
  color: var(--accent1) !important;
  font-size: 120%;
  text-decoration: underline;
  border-radius: 4px; /* optional */
}


/* Footer Styles */
/* ----------------------------- */
.site-footer {
  background-color: var(--primary);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* ----------------------------- */
/* Oscar Hero Section */
/* ----------------------------- */
.oscar-hero {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  aspect-ratio: 2 / 1;
  background-image: url("../images/iIndex/Oscar.jpg");
  background-size: cover;
  background-position: center right;
  border: 4px solid #444;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 2%;
}

.oscar-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 350px;
  width: 100%;
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

.oscar-points {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.oscar-points li {
  margin-bottom: 12px;
}

.oscar-points a {
  color: #c0392b;
  text-decoration: underline;
  font-weight: bold;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .oscar-hero {
    flex-direction: column;
    background-position: center top;
    aspect-ratio: auto;
    height: auto;
  }

  .oscar-content {
    margin-top: 20px;
    max-width: 90%;
    padding: 15px;
  }

  .oscar-points {
    font-size: 1rem;
  }
}


/* ----------------------------- */
/* Image Containers & Styling */
/* ----------------------------- */
.circular-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.image-container {
  background-color: white;
  border: 4px solid var(--accent2);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  margin: 0.5rem auto;
  max-width: 300px;
  overflow: hidden;
  padding: 4px;
  text-align: center;
  width: 100%;
}

.image-caption {
  color: var(--text);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  text-align: left;
}

.image-text-flexbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 1rem 0;
}

@media (min-width: 1200px) {
  .image-container {
    max-width: 300px;
  }

  .image-text-flexbox {
    gap: 2rem;
    padding: 1.5rem 0;
  }

  .image-text-flexbox .flex-item {
    flex: 1;
    margin: 0 1rem;
  }

  .circular-image {
    max-width: 300px;
  }
}

/* ----------------------------- */
/* Animations */
/* ----------------------------- */
@keyframes scroll {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}

@keyframes move {
  0%   { left: 0; }
  100% { left: 50px; }
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  50%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------- */
/* Marquee Scrolling Section */
/* ----------------------------- */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #2A4F7A;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll 15s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px;
}

.marquee span {
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: bold;
}


/* ----------------------------- */
/* 3D Cube Animation Styles */
/* ----------------------------- */


/* Cube Animation */
/* ----------------------------- */
/* Hero Rotator & Slideshow Captions */
/* ----------------------------- */
/* Hero Rotator & Captions */
/* ----------------------------- */
.hero-rotator {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  margin-top: 10px;
  background-color: var(--soft-accent);
  border: 4px solid var(--primary);
}

.hero-image {
  position: absolute;
	
  background: url(../images/1200x600/new colonias.jpg) center center/cover no-repeat;
	
	background: url('your-hero-image.jpg') center center/cover no-repeat;
  top: 0;
  left: 0;
  width: 50%;
  height: 225px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}


.hero-image.active {
  opacity: 1;
  z-index: 1;
}

.slideshow-caption {
  height: 60px;
  background-color: #fef3dc;
  color: #333;
  padding: 10px 16px;
  border-radius: 6px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.slideshow-caption.fade-out {
  opacity: 0;
}

/* ----------------------------- */
/* 3D Cube Animation Styles */
/* ----------------------------- */


.cube-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  perspective: 800px;
  overflow: hidden;
  margin: 0 auto;
}

.cube {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg);
  animation: spinCube 20s infinite linear;
	

}

.face {
  position: absolute;
  width: 150px;
  height: 150px;
  backface-visibility: hidden;
}

.face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Each   animation: spinCube 20s infinite linear;
  height: 150px;
  position: relative;
  transform: rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  width: 150px;
} face */
@keyframes spinCube {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}



.front  { transform: rotateY(  0deg) translateZ(75px); }
.back   { transform: rotateY(180deg) translateZ(75px); }
.right  { transform: rotateY( 90deg) translateZ(75px); }
.left   { transform: rotateY(-90deg) translateZ(75px); }
.top    { transform: rotateX( 90deg) translateZ(75px); }
.bottom { transform: rotateX(-90deg) translateZ(75px); }

/* Cube Animation */
/* ----------------------------- */
/* Hero Rotator & Slideshow Captions */
/* ----------------------------- */

/* ----------------------------- */
/* Video Grid Section */
/* ----------------------------- */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.video-item {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.video-item img {
  width: 100%;
  border-radius: 8px;
}

.video-item p {
  margin-top: 8px;
  font-weight: bold;
}

.modal .modal-body video {
  width: 100%;
}
.img-pop {
}

@media (max-width: 767.98px) {
  .news-sidebar {
    font-size: 1.1rem;       /* slightly larger text for readability */
    background-color: #fff8e6; /* light warm tone for contrast */
    margin-top: 1rem;
    border-left: none;
    border-top: 4px solid #B9472B;
  }
}

