.cc-image-main {
	width: 100%;
	min-height: 80vh;
}

.bg-image-main {
	background: bottom right / cover no-repeat;
}

@media (max-width: 480px) {
	.cc-image-main {
		aspect-ratio: 4 / 5;
	}

	.bg-image-main {
		background-position: 80% 90%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.cc-image-main {
		aspect-ratio: 5 / 4;
	}

	.bg-image-main {
		background-position: 85% 80%;
	}
}

.is-invalid {
	border-color: #dc3545 !important;
}

.invalid-feedback {
	font-size: 13px;
	font-weight: 500;
}

/*.header-line{
	width: 100%;
	background: #e5e5e5;             
	border-bottom: 2px solid #d4b46a; 
}*/

.home-height-1{
	min-height: 80vh;
}

.video-section {
	position: relative;
}
.video-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: rgba(0,0,0,0.6); /* opacity */
	z-index: 2;
	pointer-events: none; /* allows clicks through */
}

/* make sure video is behind */
.video-section video {
	position: relative;
	z-index: 1;
}

.news-section {
    padding-top: 70px;
}
.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-item {
    width: calc(50% - 15px);
}

.news-item iframe {
    width: 100%;
    height: 500px;
}

/* ========================================
   About Mission & Vision Section only
   ======================================== */
.vision-mission {
    text-align: center;          /* Change to left if needed */
    padding: 10px 20px;         /* Adjust top/bottom spacing */
     /* ADD font here */
    color: black;                /* Change ALL text color here */
}


/* ========================================
   FRAME BOX SETTINGS (Corner Lines Box)
   ======================================== */
.frame-box {
    position: relative;          /* Required for corner lines */
    max-width: 650px;            /* Change box width here */
    margin: 40px auto;           /* Space between boxes */
    padding: 60px 30px;          /* Space inside box */
}


/* ========================================
   CORNER LINE STYLE
   ======================================== */

/* Adjust corner line size here */
.frame-box::before,
.frame-box::after {
    content: "";
    position: absolute;
    width: 480px;     /* Horizontal line length */
    height: 110px;    /* Vertical line length */
}

/* Top Left Corner */
.frame-box::before {
    top: 0;
    left: 0;
    border-top: 3px solid #d4af37;     /* Change line thickness or color */
    border-left: 3px solid #d4af37;    /* Change line thickness or color */
}

/* Bottom Right Corner */
.frame-box::after {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #d4af37;  /* Change line thickness or color */
    border-right: 3px solid #d4af37;   /* Change line thickness or color */
}


/* ========================================
   TITLE STYLES
   ======================================== */

/* Small "OUR" text */
.small-title {
    font-size: 18px;          /* Change size */
    letter-spacing: 4px;      /* Adjust spacing between letters */
    margin-bottom: 10px;
}

/* VISION & MISSION text */
.main-title {
    font-size: 50px;          /* Change main title size */
    font-weight: bold;        /* Change to 600 if too thick */
    margin-bottom: 20px;
}


/* ========================================
   CONTENT TEXT
   ======================================== */

/* Highlight text under Vision */
.highlight-text {
    font-size: 16px;          /* Adjust size */
    letter-spacing: 2px;
}

/* Mission paragraphs */
.frame-box p {
    font-size: 16px;          /* Adjust paragraph size */
    line-height: 1.6;         /* Adjust spacing between lines */
}


/* ========================================
   AMPERSAND (&) STYLE
   ======================================== */
.ampersand {
    font-size: 70px;          /* Change & size */
    margin: 40px 0;           /* Space above and below */
}


/* =============================
   About Us, Staff Slide
============================= */
.staff-carousel-section {
    padding: 0;
    position: relative;
    z-index: 10;
}

.staff-slide {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    z-index: 10;
}

/* Desktop photo size */
.staff-slide-photo {
    width: 20%;
    flex: 1 1 200px;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff-slide-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 5;
}

/* Text area */
.staff-slide-info {
    width: 50%;
    color: #ffffff !important;
    position: relative;
    z-index: 20;
}

.staff-position {
    font-size: 32px;
    margin-bottom: 10px;
    color:black; !important;
}

.staff-hr {
    width: 80px;
    border-top: 2px solid #d4af37;
    margin: 10px 0 20px 0;
}

.staff-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: black !important;
}

.staff-description {
    line-height: 1.7;
    font-size: 16px;
    color: black !important;
}
@media (max-width: 992px) {
    .staff-slide {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    .staff-slide-photo {
        width: 60%;   /* <-- CHANGE THIS for tablets */
        max-width: 400px;
    }

    .staff-slide-info {
        width: 100%;
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .staff-slide {
        gap: 20px;
    }

    .staff-position { font-size: 22px; }
    .staff-name { font-size: 18px; }
    .staff-description { font-size: 14px; }

    .staff-slide-photo {
        width: 70%;
    }
}
@media only screen and (max-width: 430px) and (min-width: 400px) {
    .staff-slide-photo {
        width: 50% !important;
        max-width: none !important;
        flex: unset !important;
    }
}
@media (min-width: 1200px) {
    .staff-slide {
        min-height: 500px;
    }
}

.page-text-15 {
    text-align: center;
    font-size: 50px;
}
@media (max-width: 768px) {
    .page-text-15 {
        font-size: 30px;     /* Smaller text */
        padding: 10px;
    }
}

/* ==============================
   SPONSOR SECTION
================================ */

.sponsor-section {
  padding: 20px 40px;
  background-color: #fff;
  box-sizing: border-box;
}

/* LEFT SIDE */

.sponsor-label {
  font-family: serif;
  font-style: italic;
  font-size: 35px;
  color: #000;
  margin-bottom: 10px;
}

.sponsor-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  color: #d4af37;
  text-transform: uppercase;
}

.sponsor-left {
  padding-top: 20px;
}

/* RIGHT SIDE */

.sponsor-right {
  display: flex;
  flex-direction: column;
  padding-top: 84px;
}

.sponsor-text {
  font-size: 18px;
  line-height: 1.4;
  max-width: 480px;
  color: #000;
  text-align: left;
}

/* BUTTON */

.sponsor-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 36px;
  border: 1px solid #b29a5a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  width: fit-content;
  transition: 0.3s ease;
  margin-top: 15px;
}

.sponsor-btn:hover {
  background-color: #d4af37;
  color: #fff;
}

/* ==============================
   SPONSOR LOGO GRID
================================ */

.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
}

.card-2 {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);

  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  transition: transform 0.3s ease;
}

.card-2:hover {
  transform: translateY(-6px);
}

.card-2 img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .sponsor-section {
    padding: 10px 20px;
  }

  .sponsor-title {
    font-size: 36px;
  }

  .sponsor-right {
    padding-top: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .container-2 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.partner-wrapper {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.partner-text {
    font-size: 48px;
    font-weight: 600;
    margin: 0;
}
.text-height-5 {
    line-height: 1.6 !important;
}

.text-height-6 {
    line-height: 1.9 !important;
}

.text-height-7 {
    line-height: 2.0 !important;
}

/* ============================= */
/* Gallery Card Fix              */
/* ============================= */
.gallery-list-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* card shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Footer / Caption always visible */
.gl-item-info {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1); /* subtle shadow */
    z-index: 2;
}

.gl-item-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

/* Remove shadow from cards */
.gallery-list-item,
.gl-item-image-inner {
    box-shadow: none !important;
}

/* Disable hover movement */
.gallery-list-item:hover,
.gl-item-image-inner:hover,
.gl-item-image:hover {
    transform: none !important;
}

/* Remove animation */
.gallery-list-item,
.gl-item-image-inner,
.gl-item-image {
    transition: none !important;
}

/* Gray box for name section */
/* Name box design */
.gl-item-info {
    background: #F8F8F8 !important;
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    border-radius: 0 0 8px 8px;
}

/* Title */
.gl-item-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
    letter-spacing: 0.3px;
}

/* Name */
.gl-item-category {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

/* Make card cleaner */
.gallery-list-item {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

/* Vote button */
.gl-item-category a.response-vote-nominees {
    display: inline-block;
    padding: 8px 16px;
    background-color: #d4af37; /* Green button */
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.gl-item-category a.response-vote-nominees:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
}

.gl-item-image-vt {
    background-size: 100% auto !important;   /* width fills div, height adjusts to show whole image */
    background-position: top center !important;  /* align the image to the top */
    background-repeat: no-repeat !important;
    height: auto !important;  /* let div height adjust to image aspect ratio */
}

.pg-name-title {
    font-size: 28px;
    color: #d4af37;
    font-weight: 700;
}

.border-radius-5 {
    border-radius: 5px;
}

.pg-titles {
    font-size: 18px;
    color: #999;
    font-weight: 600;
}

.pg-description-2 {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Stretch PayPal buttons to full width */
#paypal-button-container {
    width: 100%;
}

#paypal-button-container iframe {
    width: 100% !important;
    min-width: 100% !important;
}

#paypal-button-container .paypal-buttons,
#paypal-button-container .paypal-button {
    width: 100% !important;
}
#applyButton {
    width: 100%;
}

.section-spacing-5 {
    padding: 20px;
    margin-bottom: 20px;
}

.title-style-5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-box-5 {
    padding: 0px;
    border-radius: 12px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: cover;
}

.image-style-p-5 {
    max-width: 300px;
    border-radius: 12px;
}

.box-style-p-5 {
    padding: 18px;
    border-radius: 12px;
    flex: 1;
}

.img-cover-p-5 {
    width: 300px !important;          
    height: 370px    !important; 
    object-fit: cover;    !important; 
}

.mt-negative-30 {
    margin-top: -30px;
}

.padding-25-p {
    padding: 25px;
}