.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: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

/* 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: linear-gradient(to top, #ffffff, #fafafa);
    padding: 18px 20px;
    text-align: center;
}

/* 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: 13px;
  color: #666;
  letter-spacing: 0.3px;
  font-style: italic;
}

/* 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: 86% 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;
}

.event-card{
    display:flex;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.12);
    margin-bottom:20px;
}

.event-date{
    width:120px;
    background:#c9a227;
    color:#fff;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:15px;
}

.event-date .month{
    font-size:14px;
    font-weight:600;
}

.event-date .day{
    font-size:42px;
    font-weight:700;
    line-height:1;
}

.event-date .year{
    font-size:14px;
}

.event-image{
    width:500px;
}

.event-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.event-content{
    flex:1;
    padding:20px;
}

.event-content h3{
    font-size:26px;
    margin-bottom:15px;
}

.event-content p{
    margin-bottom:8px;
    color:#555;
}

.event-btn{
    display:inline-block;
    margin-top:15px;
    background:#c9a227;
    color:#fff;
    padding:6px 13px;
    text-decoration:none;
    border-radius:4px;
}

.event-btn:hover{
    color:#fff;
}

@media(max-width:768px){
    .event-card{
        flex-direction:column;
    }

    .event-date,
    .event-image{
        width:100%;
    }

    .event-image{
        height:450px;
    }
}

        .event-details-box{
            background:#fff;
            border:1px solid #e5e5e5;
            padding:40px;
        }


        .ticket-box{
            border:1px solid #e5e5e5;
            padding:20px;
        }

        .ticket-table thead{
            background:#c9a24d;
            color:#fff;
        }

        .ticket-table th,
        .ticket-table td{
            padding:12px;
            font-size:14px;
        }

        .btn-gold{
            background:#c9a24d;
            color:#fff;
            padding:12px;
            font-weight:600;
            border-radius:0;
        }

        .btn-gold:hover{
            color:#fff;
        }

        .feature-box{
            border-left:1px solid #eee;
            padding:20px;
            height:100%;
        }

        .event-list{
            list-style:none;
            padding:0;
            margin:0;
        }

        .event-list li{
            position:relative;
            padding-left:20px;
            margin-bottom:12px;
        }

        .event-list li:before{
            content:"○";
            color:#c9a24d;
            position:absolute;
            left:0;
        }

        .gallery-img{
            width:100%;
            height:180px;
            object-fit:cover;
        }

        .map-box{
            border:1px solid #e5e5e5;
            padding:5px;
        }

        .hr-short{
            width:80px;
            border:2px solid #c9a24d;
            margin:15px auto 0;
            opacity:1;
        }

        .event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}.event-info-sidebar{
    background:#111;
    color:#fff;
    padding:0;
}

.event-info-item{
    display:flex;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.event-info-item:last-child{
    border-bottom:none;
}

.event-info-icon{
    width:45px;
    color:#c9a24d;
    font-size:20px;
    text-align:center;
}

.event-info-content{
    margin-left:12px;
}

.event-info-label{
    font-size:11px;
    text-transform:uppercase;
    color:#bbb;
    margin-bottom:3px;
    letter-spacing:1px;
}

.event-info-value{
    color:#fff;
    font-size:14px;
    font-weight:500;
}


.event-meta-bar{
    background:#111;
    color:#fff;
    display:flex;
    width:100%;
}

.event-meta-item{
    flex:1;
    text-align:center;
    padding:18px 10px;
    border-right:1px solid rgba(255,255,255,.15);
}

.event-meta-item:last-child{
    border-right:none;
}

.event-meta-icon{
    color:#c9a24d;
    font-size:18px;
    margin-bottom:8px;
}

.event-meta-label{
    font-size:10px;
    text-transform:uppercase;
    color:#bdbdbd;
    margin-bottom:4px;
}

.event-meta-value{
    font-size:13px;
    color:#fff;
}

@media(max-width:768px){
    .event-meta-bar{
        flex-wrap:wrap;
    }

    .event-meta-item{
        flex:0 0 50%;
        border-bottom:1px solid rgba(255,255,255,.15);
    }
}

/* SECTION BACKGROUND TICKET */
.pageant-section {
    background: linear-gradient(to bottom, #fff, #f7f7fb);
    padding-bottom: 50px; /* space after footer feel */
}

/* TITLE */
.title-glow {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

.subtitle {
    color: #777;
    margin-top: 5px;
}

/* EVENT META */
.event-meta {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.meta-box h6 {
    font-weight: 700;
}

.meta-box p {
    margin: 0;
    color: #666;
}

/* TICKET CARD */
.ticket-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
       padding: 50px 30px 30px; /* extra top space */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-8px);
}

/* VIP highlight */
.ticket-card.vip {
    border: 2px solid gold;
}

.ticket-card.elite {
    border: 2px solid #c0392b;
    opacity: 0.85;
}

/* PRICE */
.price {
    font-size: 28px;
    font-weight: 800;
    color: #e74c3c;
}

/* DESCRIPTION */
.desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-buy {
    display: inline-block;
    padding: 12px 20px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-buy:hover {
    background: #e74c3c;
}

/* VIP BUTTON */
.vip-btn {
    background: gold;
    color: #000;
    font-weight: 600;
}

/* DISABLED */
.disabled {
    pointer-events: none;
    background: #ccc;
}

/* SLOT BADGE */
.badge-slot {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #27ae60;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.badge-slot.sold-out {
    background: #c0392b;
}

/* Remove all hover effects */
.queensSwiper .gallery-list-item:hover,
.queensSwiper .gl-item-image-wrap:hover,
.queensSwiper .gl-item-image-inner:hover,
.queensSwiper .gl-item-image:hover {
    transform: none !important;
}

.queensSwiper .gl-item-image-zoom {
    display: none !important;
}

/* Disable transition animations */
.queensSwiper .gallery-list-item,
.queensSwiper .gl-item-image,
.queensSwiper .gl-item-image-wrap,
.queensSwiper .gl-item-image-inner {
    transition: none !important;
}

/* Smaller image height */
.queensSwiper .gl-item-image {
    height: 470px;
    min-height: 380px;
    background-size: cover;
    background-position: center center;
}

/* Tablet */
@media (max-width: 991px) {
    .queensSwiper .gl-item-image {
        height: 470px;
        min-height: 320px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .queensSwiper .gl-item-image {
        height: 480px;
        min-height: 280px;
    }
}

.queensSwiper .swiper-pagination {
    position: relative !important;
    margin-bottom: 20px;
}

.queensSwiper .gallery-list-item {
    height: auto !important;
    overflow: visible !important;
}

.queensSwiper .gl-item-info {
    height: auto !important;
    overflow: visible !important;
    padding: 20px !important;
}

.queensSwiper .gl-item-caption {
    height: auto !important;
    overflow: visible !important;
}

.queensSwiper .gl-item-title {
    margin-bottom: 8px;
    line-height: 1.3;
}

.queensSwiper .gl-item-category {
    display: block;
    line-height: 1.4;
}

.ticket-summary {
  padding: 5px 0px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ticket-badge {
    display: inline-block;
    padding: 1px 10px;
    background: #d4af37;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.ticket-price {
    font-size: 22px;
    font-weight: 800;
    color: #d4af37;
    margin: 5px 0;
    line-height: 1;
}

.ticket-description {
    opacity: .7;
    font-size: 13px;
}

.upcoming-events {
    margin-bottom: 40px;
}

.partner_sail {
    margin-bottom: 33px;
}

/* VOTING SECTION & LEADERBOARD */
.delegate-section{
    background:#f7f7f7;
}

/* HEADER */
.section-badge{
    background:#d4af37;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    font-size:38px;
    font-weight:700;
    margin-top:15px;
    color:#111;
    text-transform:uppercase;
}

.section-subtitle{
    color:#777;
    max-width:650px;
    margin:auto;
}

/* GRID */
.delegate-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

/* CARD */
.delegate-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    position:relative;
    transition:.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.delegate-card:hover{
    transform:translateY(-8px);
}

.delegate-rank{
    position:absolute;
    top:15px;
    left:15px;
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    z-index:2;
}

.gold{
    background:#d4af37;
}

.silver{
    background:#9e9e9e;
}

.bronze{
    background:#b87333;
}

.dark{
    background:#111;
}

/* IMAGE */
.delegate-image{
    background:#f3f3f3;
    text-align:center;
    padding-top:20px;
}

.delegate-image img{
    width:100%;
    height: 280px;
    object-fit:cover;
}

/* CONTENT */
.delegate-content{
    padding:20px;
    text-align:center;
}

.delegate-content h4{
    margin-bottom:5px;
    font-weight:700;
}

.delegate-content span{
    display:block;
    color:#777;
    margin-bottom:15px;
}

.delegate-votes{
    color:#d4af37;
    font-weight:700;
    margin-bottom:15px;
}

/* BUTTON */
.vote-btn{
    width:100%;
    border:none;
    background:#d4af37;
    color:#fff;
    padding:12px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.vote-btn:hover{
    background:#111;
}

/* VIEW BUTTON */
.view-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:2px solid #d4af37;
    color:#d4af37;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.view-btn:hover{
    background:#d4af37;
    color:#fff;
}

/* LEADERBOARD */
.leaderboard-box{
    background:#fff;
    border-radius:14px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    margin-top: 70px;
    margin-bottom: 50px;
}

.leaderboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.leaderboard-header h3{
    font-weight:700;
    text-transform:uppercase;
}

.leaderboard-live{
    font-size:14px;
    color:#777;
    display:flex;
    align-items:center;
    gap:8px;
}

.live-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#28c76f;
}

/* TABLE */
.leaderboard-table{
    width:100%;
    border-collapse:collapse;
}

.leaderboard-table thead{
    background:#111;
    color:#fff;
}

.leaderboard-table th,
.leaderboard-table td{
    padding:16px;
}

.leaderboard-table tbody tr{
    border-bottom:1px solid #eee;
}

.vote-count{
    color:#d4af37;
    font-weight:700;
}

.rank{
    width:30px;
    height:30px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
}

/* MOBILE */
@media(max-width:768px){

    .section-title{
        font-size:28px;
    }

    .leaderboard-header{
        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }
}

.bg-semi-grey {
    background-color: #F8F8F8 !important;
}


/* GRID FOR MRS PAGE*/
.queen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* CARD */
.queen-card {
  background: #fff;
  /*border-radius: 16px;*/
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover effect */
.queen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.queen-img {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
}

/* TEXT AREA */
.queen-info {
  padding: 15px;
  text-align: center;
}

.queen-info {
  padding-top: 30px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  text-align: center;
  background: linear-gradient(to top, #ffffff, #fafafa);
}

/* NAME (more elegant / premium look) */
.queen-info h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-transform: uppercase;
}

/* subtle decorative line under name */
.queen-info h2::after {
  content: "";
  display: block;
  width: 40px;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* CATEGORY / TITLE */
.queen-info span {
  display: block;
  margin-top: -5px;
  font-size: 13px;
  color: #666;
  letter-spacing: 0.3px;
  font-style: italic;
}

/* optional hover polish */
.queen-card:hover .queen-info {
  background: linear-gradient(to top, #fff, #f3f3f3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .queen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .queen-grid {
    grid-template-columns: 1fr;
  }

  .queen-img {
    height: 520px;
  }
}

.mrs_bottom {
  margin-bottom: 70px;
}