body {
	margin:0;
	  font-family: 'Cinzel', serif;
}

html, body {
    overflow-x: hidden;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    width: 100%;
	    background-image: url("images/wave-divider.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;

    height: 320px;
}
/* =========================
   FADE IN BASE
========================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
/* Visible state */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
/* ===============================
   HERO BACKGROUND
   =============================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	background: #020024;
	/* background: linear-gradient(127deg, rgba(2, 0, 36, 1) 0%, rgba(9, 58, 121, 1) 44%, rgba(13, 47, 102, 1) 100%); */
}
/* =============================== */
/* RIBBON — BOTTOM POSITION */
/* =============================== */
.ribbon-layer {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}
/* Ribbon Image */
.ribbon-layer img {
    width: 100%;
    margin-left: 0;
    height: auto;
    opacity:.6;
}
/* Floating animation */
.ribbon-layer {
    animation: ribbonFloat 6s ease-in-out infinite;
}
@keyframes ribbonFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* ===============================
   DARK BLUE OVERLAY
   =============================== */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            to bottom,
            rgba(5, 20, 60, 0.65),
            rgba(3, 12, 35, 0.85)
        );
    z-index: 1;
}
/* Ensure content stays above */
.hero-content {
    position: relative;
    z-index: 2;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(255,215,0,0.15),
            transparent 60%
        );
    z-index: 1;
}
/* =============================== */
/* LOGO — TOP LEFT */
/* =============================== */
.logo-top-left {
    position: absolute;
    top: 25px;
    left: 30px;
    transform: none;
    z-index: 3;
    text-align: left;
    animation: logoFade 2s ease forwards;
    opacity: 1;
}
/* Logo size */
.logo-top-left img {
    max-width: 400px;
    height: auto;
	filter:drop-shadow(0 0 30px rgba(255, 255, 255, 0.5))
        drop-shadow(0 0 100px rgba(255, 255, 255, 0.5))
}
/* ===============================
   TEXT STYLING
   =============================== */
.hero-content {
    color: #ffffff;
    /* max-width: 750px; */
    text-shadow:
        0 0 10px rgba(0,0,0,0.6);
}
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.375rem;
    line-height: 1.6;
}
/* ===============================
   STAR CONTAINER
   =============================== */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
/* ===============================
   GOLD STAR STYLE
   =============================== */
.star {
    position: absolute;
    background: linear-gradient(
        135deg,
        #ffd700,
        #ffcc00,
        #fff3a0
    );
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    box-shadow:
        0 0 4px rgba(255,215,0,0.8),
        0 0 10px rgba(255,215,0,0.5),
        0 0 18px rgba(255,215,0,0.3);
    animation-name: twinkle;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
/* Twinkle Animation */
@keyframes twinkle {
    0% {
        opacity: 0.4;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}
/* ===============================
   TEXT GROUP
   =============================== */
.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}
/* event top title */
.event-year-text {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 0.5px;
    color: #fff;
    opacity: 0;
    animation: slideUpFade 1s ease forwards, neonGlow 2s ease-in-out infinite alternate;
    animation-delay: 0s, 0s;
    text-align: center;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1.5em;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  h1 {
    margin:0;
    /* background-image: linear-gradient( */
      /* to right, */
      /* #14f339, */
      /* #007aff, */
      /* #f6ee00, */
      /* #007aff, */
      /* #14f339, */
      /* #ff6262, */
      /* #f6ee00, */
      /* #007aff, */
      /* #14f339 */
    /* );     */
	
	background-image: linear-gradient(
  to right,
  #c8102e,
  #ffffff,
  #002868,
  #ffffff,
  #c8102e,
  #ffffff,
  #002868,
  #ffffff,
  #c8102e
);
    /* padding: 1rem;
    border: 20px solid rgb(255 255 255 / 50%);
    background-clip: border-box;
    background-clip: padding-box;
    background-clip: content-box; */
    -webkit-background-clip: text;
    background-clip: text;
    --bg-size: 200%;
    color: transparent;
    background-size: var(--bg-size);
    /* animation: animate 4s steps(5) infinite; */
    animation: animate 8s linear infinite;
    /* animation: animate 4s ease infinite; */
  }
  @keyframes animate {
    /* from {
      background-position: 0;
    } */
    to {
      background-position: var(--bg-size);
    }
  }
}
.pre-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.75rem, 1.4vw, 0.95rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 18px;
    background: rgba(0,0,0,.5);
    display: inline-block;
    border-radius: 300px;
    border: 1px solid #0a1a41;
    padding: 8px 18px;
    box-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 4px #02c4ff, 0 0 27px #02c4ff;
}
/* ===============================
   TEXT SLIDE-IN BASE
   =============================== */
.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}
.hero-text-group div {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 1s ease forwards;
}
/* ===============================
   STAGGER TIMING
   =============================== */
.event-year-text {
    animation-delay: 0s;
}
.pre-title {
    animation-delay: 0.3s;
}
.main-line-1 {
    animation-delay: 0.8s;
}
.main-line-2 {
    animation-delay: 1.3s;
}
.main-line-3 {
    animation-delay: 1.8s;
}
/* ===============================
   ANIMATION KEYFRAMES
   =============================== */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===============================
   GOLD GLOW TEXT
   =============================== */
.main-line {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 2.4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #ffc587;
    text-shadow:
        0 0 4px rgba(187, 208, 255, 0.6),
        0 0 8px rgba(187, 208, 255, 0.5),
        0 0 14px rgba(187, 208, 255, 0.4);
}
@keyframes goldGlow {
    0% {
        text-shadow:
            0 0 4px rgba(255,215,0,0.5),
            0 0 8px rgba(255,215,0,0.4),
            0 0 12px rgba(255,215,0,0.3);
    }
    50% {
        text-shadow:
            0 0 6px rgba(255,215,0,0.8),
            0 0 12px rgba(255,215,0,0.6),
            0 0 20px rgba(255,215,0,0.5);
    }
    100% {
        text-shadow:
            0 0 4px rgba(255,215,0,0.5),
            0 0 8px rgba(255,215,0,0.4),
            0 0 12px rgba(255,215,0,0.3);
    }
}
.main-line-1 {
    color: #dadee3;
	border-image: linear-gradient(to right, #2d344f, #0a112b) 1;
	border-bottom:1px solid;
}
.main-line-2 {
    color: #00f1ff;
	border-image: linear-gradient(to right, #2d344f, #0a112b) 1;
	border-bottom:1px solid;
}
.main-line-3 {
    color: #cfcec1;
	text-shadow: 0 0 4px rgb(217 191 29 / 60%), 0 0 8px rgb(255 254 212 / 50%), 0 0 14px rgb(216 235 113 / 40%);
}
/* =============================== */
/* WATERMARK — TOP RIGHT */
/* =============================== */
.fleur-watermark {
    position: absolute;
    top: 30px;
    right: 30px;
    transform: none;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}
/* Image */
.fleur-watermark img {
    width: 100%;
    height: auto;
    opacity: 0.4;
}
/* ===============================
   FIREWORKS CONTAINER
   =============================== */
.fireworks-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
/* Particle */
.firework-particle {
    position: absolute;
    width: 1.4px;   /* Smaller particles */
    height: 1.4px;
    border-radius: 50%;
    background: var(--color);
    box-shadow:
        0 0 3px var(--color),
        0 0 6px var(--color);
    opacity: 1;
    animation: firework-explode 2200ms ease-out forwards;
}
/* Big burst particles */
.firework-big {
    width: 2px;
    height: 2px;
    animation: firework-explode 2600ms ease-out forwards;
}
@keyframes firework-explode {
    0% {
        transform:
            translate(0,0)
            scale(0.3);
        opacity: 1;
    }
    70% {
        transform:
            translate(var(--x), var(--y))
            scale(1);
        opacity: 1;
    }
    100% {
        transform:
            translate(
                calc(var(--x) * 1.05),
                calc(var(--y) + 30px)
            )
            scale(0.3);
        opacity: 0;
    }
}
/* Rocket Trail */
.firework-rocket {
    position: absolute;
    width: 1px;
    height: 40px;   /* long trail */
    /* Reverse gradient direction */
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
    border-radius: 2px;
    box-shadow:
        0 0 6px white,
        0 0 12px white;
    transform-origin: center bottom;
    animation: rocket-launch 1800ms ease-out forwards;
}
/* Rocket movement */
@keyframes rocket-launch {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-260px);
        opacity: 0;
    }
}
/* ==========================================
   PROGRAM SECTION
   ========================================== */
.program-section {
	position: relative;
	padding: 120px 20px 230px;
	background: #050C24;
	background: linear-gradient(180deg, #050C24, #08174C);
	overflow: hidden;
	font-family: 'Cinzel', serif;
}
/* ==========================================
   WATERMARK
   ========================================== */
.program-watermark {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 300px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}
/* ==========================================
   MAIN CONTAINER
   ========================================== */
.program-container {
    max-width: 850px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
/* ==========================================
   LEFT CURTAIN IMAGE
   ========================================== */
.left-curtain {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    max-width: 320px;
    pointer-events: none;
    z-index: 1;
    /* Depth shadow */
    filter: drop-shadow(
        10px 0 25px rgba(0,0,0,0.5)
    );
    animation: curtainFloat 8s ease-in-out infinite;
	opacity:.4;
}
/* Gentle floating */
@keyframes curtainFloat {
    0%,100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(6px);
    }
}
/* ==========================================
   FANCY SECTION HEADINGS
   ========================================== */
.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    display: inline-block;
    padding: 0 40px;
    /* Gold gradient text */
    background: linear-gradient(
        90deg,
        #fff6cc,
        #ffd700,
        #fff6cc
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: headingShimmer 6s linear infinite;
}
/* ==========================================
   SIDE DECORATIVE LINES
   ========================================== */
.section-heading::before,
.section-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ffd700,
        transparent
    );
}
/* Left line */
.section-heading::before {
    right: 100%;
    margin-right: 15px;
}
/* Right line */
.section-heading::after {
    left: 100%;
    margin-left: 15px;
}
@media (max-width: 500px) {
    .section-heading {
        font-size: 1.125rem;
        padding: 0 20px;
    }
    .section-heading::before,
    .section-heading::after {
        width: 60px;
    }
}
/* ==========================================
   SHIMMER ANIMATION
   ========================================== */
@keyframes headingShimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}
.program-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    /* Glow effect */
    text-shadow:
        0 0 5px rgba(255,255,255,0.6),
        0 0 10px rgba(255,255,255,0.4),
        0 0 20px rgba(255,215,0,0.3);
    animation: softGlow 3s ease-in-out infinite;
}
/* Glow Animation */
@keyframes softGlow {
    0% {
        text-shadow:
            0 0 5px rgba(255,255,255,0.4),
            0 0 10px rgba(255,215,0,0.2);
    }
    50% {
        text-shadow:
            0 0 8px rgba(255,255,255,0.9),
            0 0 18px rgba(255,215,0,0.6),
            0 0 30px rgba(255,215,0,0.4);
    }
    100% {
        text-shadow:
            0 0 5px rgba(255,255,255,0.4),
            0 0 10px rgba(255,215,0,0.2);
    }
}
}
/* ==========================================
   SECTION HEADINGS
   ========================================== */
.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-top: 60px;
}
/* ==========================================
   STAGE SPOTLIGHT EFFECT (LEFT TOP)
   Drop-in — No HTML needed
   ========================================== */
/* ==========================================
   PROGRAM LIST
   ========================================== */
.program-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}
.program-list li {
    font-family: 'Cinzel', serif;
    font-size: 1.0625rem;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
}
/* Gold bullet */
.program-list li::before {
    content: "●";
    color: #ffd700;
    margin-right: 10px;
}
/* ==========================================
   NAME GRID
   ========================================== */
.name-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 10px 30px;
    margin-top: 20px;
}
.name-grid p {
    font-family: 'Cinzel', serif;
    font-size: 0.9375rem;
    color: #ffffff;
    margin: 0;
	text-align:center;
	
}
/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .name-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .name-grid {
        grid-template-columns: 1fr;
    }
    .program-title {
        font-size: 1.75rem;
    }
    .section-heading {
        font-size: 1.125rem;
    }
    .program-watermark {
        width: 260px;
        opacity: 0.04;
    }
}
/* ==========================================
   LEFT DECORATIVE RIBBON
   ========================================== */
/* ==========================================
   LEFT FLOATING FRAMES
   ========================================== */
.review-section {
    padding: 100px 20px;
    background: linear-gradient(
        180deg,
        #1c2348 0%,
        #2c3b74 100%
    );
    position: relative;
}
.review-container {
    max-width: 1200px;
    margin: auto;
}
/* Title */
.review-title {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 4.375rem);
    color: #ffffff;
    margin-bottom: 60px;
}
.section-six {
    position: relative;
    padding: 120px 20px;
	background: #f7f4e1;
background: linear-gradient(90deg, rgba(247, 244, 225, 1) 0%, rgba(247, 247, 247, 1) 51%, rgba(242, 235, 191, 1) 100%);
    overflow: hidden;
	    font-family: 'Cinzel', serif;
}
.white-bg {
    position: relative;
    overflow: hidden;
}
/* Star container */
.random-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
/* Individual stars */
.star-dark {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #08226d;
    /* Real star shape */
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    opacity: 0.18;
}
/* Keep content above */
.white-bg > *:not(.random-stars) {
    position: relative;
    z-index: 1;
}
.white-bg .program-title{
	color:#08226d;
}
.white-bg .name-grid{
	color:#333;
}
.white-bg .program-container {
    max-width: 1024px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.white-bg .name-grid p {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #000;
    margin: 0;
	font-weight:normal;
	line-height:1.5em;
}
.white-bg .name-grid p .small {
    display: block;
    font-size: 0.85rem;
    opacity: 1;
		font-weight:600;
    padding-left: 5px;
	    color: #a30909;
}
.white-bg .program-title{
		text-shadow:none !important;
}
.white-bg .section-heading-dark{
    font-family: 'Cinzel', serif;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    display: inline-block;
    padding: 0 40px;
	color:#333;
}
.white-bg .fleur-watermark {
    position: absolute;
    top: 30px;
    right: 30px;
    transform: none;
    width: 120px;
    z-index: 1;
    pointer-events: none;
}
/* Image */
.white-bg .fleur-watermark img {
    width: 100%;
    height: auto;
    opacity: 1;
}
.section-heading-dark::before,
.section-heading-dark::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #000000,
        transparent
    );
}
/* Left line */
.section-heading-dark::before {
    right: 100%;
    margin-right: 15px;
}
/* Right line */
.section-heading-dark::after {
    left: 100%;
    margin-left: 15px;
}
@media (max-width: 500px) {
    .section-heading-dark {
        font-size: 1.125rem;
        padding: 0 20px;
    }
    .section-heading-dark::before,
    .section-heading-dark::after {
        width: 60px;
    }
}
/* Award Section Background */
.award-section {
  background-color: #013A6B;
  /* background-image: -webkit-linear-gradient(60deg, #013A6B 50%, #0b1b53 50%); */
    padding: 200px 20px;
    font-family: 'Cinzel', serif;
    display: flex;
    justify-content: center;
  align-items:center;
  flex-direction:column;
  gap:200px;
  	
}

.silver-beaver{
  background-image: url("images/popcorn1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}	
/* =========================
   BIGGER YELLOW CARD
========================= */
.award-card {
    position: relative;
    background: #fffbe3;
    border-radius: 10px;
    max-width: 750px;   /* Bigger */
    width: 80%;
    padding: 70px 80px;
    box-sizing: border-box;
    box-shadow:
        0 30px 60px rgba(0,0,0,.5);
		
}
/* =========================
   TITLES
========================= */
.award-title {
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.25rem;
    margin-bottom: 12px;
	    font-family: 'Cinzel', serif;
}
.recipient-name {
    text-align: center;
	font-family: 'Great Vibes';
    font-size: clamp(1.5rem, 3vw, 3rem);
	font-weight:normal;
    margin-bottom: 30px;
	margin-top: 5px;
}
/* =========================
   TEXT
========================= */
.award-content p {
    font-size: .9em;
    line-height: 1.4;
	text-align:justify;
    margin-bottom: 18px;

}
/* =========================
   PORTRAITS
========================= */
.portrait {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 6px solid #fffbe3;
 
    box-shadow:
        0 10px 30px rgba(0,0,0,.4);
}
.portrait-left {
    left: -130px;
    top: -65px;
}
.portrait-right {
	right: -130px;
    bottom: -65px;
}
.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.wd180{
	width:180px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
}

.download-btn {
    display: block;
    margin: 0 auto;
	    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    color: #fff;
    text-decoration: none;

    /* Scouting blue gradient */
    background: linear-gradient(
        145deg,
        #003f87,
        #0056b3
    );

    border: 2px solid #c69214; /* gold accent */
    border-radius: 8px;

    /* Premium depth */
    box-shadow:
        0 6px 15px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.3);

    transition: all .3s ease;
}

.download-btn:hover {
    background: linear-gradient(
        145deg,
        #0056b3,
        #007bff
    );

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(0,0,0,.45),
        0 0 12px rgba(198,146,20,.6);
}
/* =========================
   FANCY GOLD STAR
========================= */
.award-star {
    position: absolute;
    right: -150px;
    top: -105px;
    width: 240px;
    height: 230px;
	padding:20px;
    box-sizing: border-box;
clip-path: polygon(79.9% 90.08%,50.31% 75%,21.12% 90.82%,26.32% 58.02%,2.26% 35.15%,35.05% 29.96%,49.37% 0%,64.44% 29.59%,97.35% 33.95%,73.87% 57.43%);
    /* Fancy gold gradient */
    background: linear-gradient(
        145deg,
        #fff6a5,
        #fff,
        #c99200
    );
    box-shadow:
        0 0 25px rgba(255,215,0,.8),
        inset 0 0 15px rgba(0,0,0,.3),
        0 10px 25px rgba(0,0,0,.5);
}
/* INNER STAR LAYER */
.star-inner {
    position: absolute;
    inset: 12px;
    clip-path: inherit;
    background: linear-gradient(
        145deg,
        #ffe680,
        #ffd700,
        #b8860b
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
/* Animated Dashed Border */
.star-inner::before {
    content: "";
    position: absolute;
    inset: -6px;
    clip-path: inherit;
    background: repeating-conic-gradient(
        #fff 0deg 8deg,
        transparent 8deg 16deg
    );
    animation: rotateDash 6s linear infinite;
    z-index: -1;
    opacity: 0.2;
}
/* Rotation Animation */
@keyframes rotateDash {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* STAR TEXT */
.star-text {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.2;

}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .award-section .award-card {
        padding: 80px 60px;
        width: min(100%, 680px);
    }
    .portrait {
        width: 160px;
        height: 160px;
    }
    .portrait-left {
        left: -24px;
        top: -24px;
    }
    .portrait-right {
        right: -24px;
        bottom: -24px;
    }
    .award-section .portrait-right {
        left: -24px;
        right: auto;
    }
    .award-star {
        width: 160px;
        height: 160px;
        right: -32px;
        top: -48px;
    }
    .star-text {
        font-size: 12px;
    }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .award-section {
        padding-left: 120px;
        padding-right: 120px;
    }
    .portrait-left {
        left: -95px;
    }
    .portrait-right {
        right: -95px;
    }
    .award-star {
        right: -115px;
    }
}
@media (min-width: 901px) {
    .award-section .portrait-left {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
    }

    .award-section .award-card {
        padding-top: 170px;
    }

    .award-section .award-card:has(.portrait-right) {
        padding-top: 170px;
    }

    .award-section .award-card:has(.portrait-right) .portrait-left {
        left: calc(50% - 220px);
        top: -80px;
        transform: none;
    }

    .award-section .award-card:has(.portrait-right) .portrait-right {
        right: calc(50% - 220px);
        top: -80px;
        bottom: auto;
    }
}
@media (max-width: 700px) {
    .award-section {
        padding: 80px 16px;
        gap: 80px;
    }
    .award-section .award-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-items: center;
        width: 100%;
        padding: 28px 20px;
    }
    .award-section .portrait,
    .award-section .award-star {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    .award-section .portrait {
        width: min(150px, 56vw);
        height: min(150px, 56vw);
        margin: 0 auto 24px;
        border-width: 4px;
    }
    .award-section .portrait-left {
        grid-column: 1;
        grid-row: 1;
    }
    .award-section .award-card:not(:has(.award-star)) .portrait-left {
        grid-column: 1 / -1;
    }
    .award-section .award-star {
        width: min(150px, 56vw);
        height: min(150px, 56vw);
        margin: 0 auto 24px;
        padding: 14px;
        grid-column: 2;
        grid-row: 1;
    }
    .award-section .award-content {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }
    .award-section .award-img {
        width: 125px;
        right: -18px;
        bottom: 8px;
    }
    .award-section .award-img img {
        width: 110px;
    }
    .award-section .portrait-right {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        margin: 24px 0 0;
    }
    .award-content p {
        text-align: left;
    }
}
/* award white bg*/
.award-section-white {
  background-color: #fff;
		padding: 200px 20px;
    font-family: 'Cinzel', serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 200px;	
  	
}

@media (min-width: 1200px) {
    .award-section-white {
        flex-direction: column;
        align-items: center;
        gap: 150px;
        padding-left: 110px;
        padding-right: 110px;
    }

    .award-section-white .award-card-white {
        flex: 1 1 0;
        max-width: 800px;
        padding: 130px 52px 58px;
    }

    .award-section-white .portrait-left-white {
        left: 50%;
        top: -95px;
        transform: translateX(-50%);
    }
}
/* =========================
   BIGGER YELLOW CARD
========================= */
.award-card-white {
    position: relative;
	background: #083582;
	background: radial-gradient(circle, rgba(8, 53, 130, 1) 0%, rgba(9, 58, 121, 1) 50%, rgba(9, 15, 84, 1) 100%);
    border-radius: 10px;
    max-width: 750px;   /* Bigger */
    width: 100%;
    padding: 70px;
    box-sizing: border-box;
    box-shadow:
    0 30px 60px rgba(0,0,0,.5);
	border:1px solid #fff;
		
		
}
/* =========================
   TITLES
========================= */
.award-title-white {
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 12px;
	    font-family: 'Cinzel', serif;
color:#fff;
}
.recipient-name-white {
    text-align: center;
  font-family: 'Great Vibes';
    font-size: clamp(1.5rem, 3vw, 3rem);
font-weight:normal;
    margin-bottom: 30px;
	color:#ffd700;
}
/* =========================
   TEXT
========================= */
.award-content-white p {
    font-size: .9em;
    line-height: 1.4;
	text-align:justify;
    margin-bottom: 18px;

	color:#fff;
}
/* =========================
   PORTRAITS
========================= */
.portrait-white {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    border: 6px solid #fffbe3;
 
    box-shadow:
        0 10px 30px rgba(0,0,0,.4);
}
.portrait-left-white {
    left: -130px;
    top: -65px;
}
.portrait-right-white {
    right: -130px;
    bottom: -65px;
}
.portrait-white img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =========================
   FANCY GOLD STAR
========================= */
.award-star-white {
    position: absolute;
    right: -140px;
    top: -95px;
    width: 200px;
    height: 200px;
	padding:20px;
    box-sizing: border-box;
clip-path: polygon(79.9% 90.08%,50.31% 75%,21.12% 90.82%,26.32% 58.02%,2.26% 35.15%,35.05% 29.96%,49.37% 0%,64.44% 29.59%,97.35% 33.95%,73.87% 57.43%);
    /* Fancy gold gradient */
    background: linear-gradient(
        145deg,
        #fff6a5,
        #fff,
        #c99200
    );
    box-shadow:
        0 0 25px rgba(255,215,0,.8),
        inset 0 0 15px rgba(0,0,0,.3),
        0 10px 25px rgba(0,0,0,.5);
}
/* INNER STAR LAYER */
.star-inner-white {
    position: absolute;
    inset: 12px;
    clip-path: inherit;
    background: linear-gradient(
        145deg,
        #ffe680,
        #ffd700,
        #b8860b
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
/* Animated Dashed Border */
.star-inner-white::before {
    content: "";
    position: absolute;
    inset: -6px;
    clip-path: inherit;
    background: repeating-conic-gradient(
        #fff 0deg 8deg,
        transparent 8deg 16deg
    );
    animation: rotateDash 6s linear infinite;
    z-index: -1;
    opacity: 0.2;
}
/* Rotation Animation */
@keyframes rotateDash {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* STAR TEXT */
.star-text-white {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.2;

}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .award-section-white .award-card-white {
        padding: 80px 60px;
        width: min(100%, 680px);
    }
    .portrait-white {
        width: 160px;
        height: 160px;
    }
    .portrait-left-white {
        left: -24px;
        top: -24px;
    }
    .portrait-right-white {
        right: -24px;
        bottom: -24px;
    }
    .award-star-white {
        width: 160px;
        height: 160px;
        right: -32px;
        top: -48px;
    }
    .star-text-white {
        font-size: 12px;
    }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .award-section-white {
        padding-left: 120px;
        padding-right: 120px;
    }
    .portrait-left-white {
        left: -95px;
    }
    .portrait-right-white {
        right: -95px;
    }
    .award-star-white {
        right: -105px;
    }
}
@media (min-width: 901px) {
    .award-section-white .award-card-white {
        padding-top: 130px;
    }

    .award-section-white .portrait-left-white {
        left: 50%;
        top: -95px;
        transform: translateX(-50%);
    }

    .award-section-white .portrait-right-white {
        right: 50%;
        top: -95px;
        bottom: auto;
        transform: translateX(50%);
    }
}
@media (max-width: 700px) {
    .award-section-white {
        padding: 80px 16px;
        gap: 80px;
    }
    .award-section-white .award-card-white {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-items: center;
        width: 100%;
        padding: 28px 20px;
    }
    .award-section-white .portrait-white,
    .award-section-white .award-star-white {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    .award-section-white .portrait-white {
        width: min(150px, 56vw);
        height: min(150px, 56vw);
        margin: 0 auto 24px;
        border-width: 4px;
    }
    .award-section-white .portrait-left-white {
        grid-column: 1;
        grid-row: 1;
    }
    .award-section-white .award-card-white:not(:has(.award-star-white)) .portrait-left-white {
        grid-column: 1 / -1;
    }
    .award-section-white .award-star-white {
        width: min(150px, 56vw);
        height: min(150px, 56vw);
        margin: 0 auto 24px;
        padding: 14px;
        grid-column: 2;
        grid-row: 1;
    }
    .award-section-white .award-content-white {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }
    .award-section-white .portrait-right-white {
        grid-column: 1 / -1;
        grid-row: 3;
        margin: 24px auto 0;
    }
    .award-content-white p {
        text-align: left;
    }
}
/* =========================
   SECTION
========================= */
.key-message-section {
position: relative;
padding: 120px 20px;
background: #050C24;
background: linear-gradient(180deg, #050C24, #08174C);
overflow: hidden;
font-family: 'Cinzel', serif;	

		
}
/* =========================
   MAIN GRID
========================= */
.key-message-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 10px;
    max-width: 1250px;
    margin: auto;
	
}
/* =========================
   LEFT COLUMN
========================= */
.leaders-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* Individual Leader */
.leader {
    text-align: center;
}
/* Photo */
.leader-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    margin-bottom: 12px;
}
/* Name */
.leader-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
	color:#f9f9f9;
}
/* Title */
.leader-title {
    font-size: 14px;
    color: #555;
    margin:0;
	color:#fff;
}
/* Signature */
.leader-signature {
    width: 120px;
    height: auto;
}
.leader  h3{
	margin:0;
	padding:0;
}
/* =========================
   RIGHT COLUMN
========================= */
.message-column {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}
/* Paragraph spacing */
.message-column p {
font-size: .9em;
    line-height: 1.4;
    text-align: justify;
    margin-bottom: 18px;
    color: #000;
}
.message-heading {
	text-align: left;
	font-family: Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 3rem);
	font-weight:600;
	margin-bottom: 30px;
	color:#333
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .key-message-wrapper {
        grid-template-columns: 1fr;
    }
    .leaders-column {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .leader {
        width: 30%;
    }
}
@media (max-width: 600px) {
    .leader {
        width: 100%;
    }
}
/* =========================
   KEY MESSAGE LETTER STYLE
========================= */
.message-column.award-card {
    position: relative;
    background: linear-gradient(
        to bottom,
        #fffdf7,
        #f6f1e6
    );
    border-radius: 6px;
    padding: 60px 70px;
    margin: 0;
    /* Paper shadow */
    box-shadow:
        0 20px 40px rgba(0,0,0,0.25),
        0 6px 12px rgba(0,0,0,0.15);
}
/* =========================
   LETTER FOLD
========================= */
.message-column.award-card::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 70px;
    height: 70px;
    background:#090d27;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%
    );
    box-shadow:
        -3px 3px 8px rgba(0,0,0,0.2);
}
.message-column.award-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0.02) 0px,
            rgba(0,0,0,0.02) 1px,
            transparent 1px,
            transparent 4px
        );
    pointer-events: none;
}
.key-message-section {
    background:
        linear-gradient(
            to bottom,
            #0b0f2f,
            #02030a
        );
}

@media (max-width: 768px) {
    .key-message-section {
        padding: 70px 16px;
    }

    .message-column.award-card {
        width: 100%;
        padding: 36px 22px;
        border-radius: 6px;
        box-sizing: border-box;
    }

    .message-column.award-card::after {
        width: 42px;
        height: 42px;
    }

    .message-heading {
        text-align: center;
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        margin-bottom: 22px;
    }

    .message-column p {
        font-size: 0.85em;
        line-height: 1.55;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .message-column.award-card {
        padding: 32px 18px;
    }

    .message-column.award-card::after {
        width: 34px;
        height: 34px;
    }
}
.letter-image{
	    position: absolute;
    width: 150px;
    right: 5%;
    bottom: 5%;
}
/* ===============================
   SECTION-NINE — EAGLE LIST
   =============================== */

.section-nine {
    background: #f5f5f5;
    text-align: center;
    position: relative;
	background: #d4eeff;
background: linear-gradient(90deg, rgba(212, 238, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(212, 238, 255, 1) 100%);

}
/* Curtain */
.eagle-curtain img {
    width: 100%;
    height: auto;
	margin-top:-10px;
}
/* Container */
.eagle-container {
    width: min(92%, 1200px);
    margin-inline: auto;
    padding: clamp(40px, 6vw, 80px) 20px;
}
/* Logo */
.eagle-logo img {
    width: clamp(80px, 15vw, 100px);
    margin-bottom: 20px;
}
/* Script Title */
.eagle-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 4vw, 4rem);
    margin-top: 20px;
	margin-bottom:0;
	Color:#08226d;
}
/* Subtext */
.eagle-subtext {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 40px;
}
/* GRID — Very Important */
.eagle-name-grid {
    display: grid;
    /* Desktop & Laptop */
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 40px;
    text-align: left;
}
.eagle-name-grid-1 {
    grid-template-columns: repeat(1, 1fr);
}
.eagle-name-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
/* Name */
.eagle-name-grid p {
    margin: 0;
    font-size: clamp(.85rem, 1vw, .95rem);
    line-height: 1.8em;
    font-family: 'Cinzel', serif;
    color: #000;
    margin: 0;
    font-weight: 600;
	text-align:center;
}
/* Troop line */
.eagle-name-grid span {
    color: #555;
	display: block;
    font-size: 0.85rem;
    opacity: 1;
    font-weight: normal;
    margin-top: -5px;	
}
.eagle-program-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: 	#08226d;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .eagle-name-grid, .eagle-name-grid-1, .eagle-name-grid-2  {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   CELEBRATION LIGHTS
   =============================== */
.celebration-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
/* ===============================
   PATRIOTIC CELEBRATION LIGHTS
   (Red • White • Blue Mix)
   =============================== */
.light-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: glowFade linear infinite;
}
/* 🔴 RED */
.light-red {
    background: radial-gradient(
        circle,
        rgba(255, 59, 59, 0.65),
        rgba(255, 59, 59, 0.25),
        transparent 70%
    );
}
/* ⚪ WHITE */
.light-white {
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.75),
        rgba(255,255,255,0.35),
        transparent 70%
    );
}
/* 🔵 BLUE */
.light-blue {
    background: radial-gradient(
        circle,
        rgba(0,123,255,0.65),
        rgba(0,123,255,0.25),
        transparent 70%
    );
}
/* 🔷 Optional Cyan Accent (few only) */
.light-cyan {
    background: radial-gradient(
        circle,
        rgba(79,195,247,0.6),
        rgba(79,195,247,0.25),
        transparent 70%
    );
}
/* Smooth Fade Animation */
@keyframes glowFade {
    0% {
        opacity: 0;
        transform: scale(.9);
    }
    50% {
        opacity: .55;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}
/* Keep content above */
.program-container {
    position: relative;
    z-index: 2;
}
/* ===============================
   PROGRAM RANDOM STARS
   =============================== */
.program-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
/* Smaller stars than hero */
.program-star {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(
        135deg,
        #ffd700,
        #ffcc00,
        #fff3a0
    );
	clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    border-radius: 50%;
    opacity: 0;
    animation: programTwinkle infinite;
}
/* Soft blink */
@keyframes programTwinkle {
    0% { opacity: 0; }
    50% { opacity: .8; }
    100% { opacity: 0; }
}

/* ===============================
   MAIN CONTAINER (1024px WIDTH)
=============================== */
.sponsor-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}
/* ===============================
   SECTION BASE SETTINGS
=============================== */
.sponsor-full,
.sponsor-half,
.sponsor-quarter {
    position: relative;   /* Needed for title placement */
}
/* ===============================
   TIER HEADER (TOP CENTER)
=============================== */
.tier-header {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
}
/* Medal Icon */
.tier-icon {
    font-size: 34px;
    margin-bottom: 5px;
}
/* Tier Title */
.tier-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    color: #333;
}
/* Divider */
.tier-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #ddd;
    margin: 8px auto 0;
}
/* Subtle background accents */
.gold-tier {
    background: linear-gradient(
        to bottom,
        #fff9e6,
        #ffffff 120px
    );
}
.silver-tier {
    background: linear-gradient(
        to bottom,
        #f2f2f2,
        #ffffff 120px
    );
}
.bronze-tier {
    background: linear-gradient(
        to bottom,
        #fff2e6,
        #ffffff 120px
    );
}

/* Add top padding so images don't overlap titles */






/* ===============================
   PAST SILVER BEAVER SECTION
=============================== */
.svmbc-past-section {
    margin-top: 40px;
}
/* Wrapper for year groups */
.past-year-wrapper {
    margin-top: 10px;
}
/* Individual Year Block */
.past-year-group {
    margin-bottom: 30px;
}
/* Year Heading */
.past-year-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #a30909;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.past-year-heading  .name-grid p .small {
    display: inline;
}
/* ===============================
   SILVER AWARDS SECTION
=============================== */
.silver-awards-section {
    /* margin-top: 40px; */
	Background:#013A6B;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:80px 30px;
}

.silver-awards-content{
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: 'Cinzel', serif;
	color:#fff;
	max-width:850px;
}
/* Intro paragraph */
.section-intro {
    margin-bottom: 30px;
    line-height: 1.6;
	
}
/* Award blocks */
.award-block {
    margin-bottom: 40px;
}
/* Award titles */
.award-title {
	font-size: 1.625em;
	font-weight: 700;
	margin-bottom: 36px;
		
}
/* Description */
.award-description {
    margin-bottom: 15px;
		text-align:center;
}
/* Recipient heading */
.recipient-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align:center;
	color:yellow;
}
/* District blocks */
.district-group {
    margin-bottom: 15px;
}
/* ===============================
   DISTRICT GRID LAYOUT
=============================== */
.district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}
/* District block */
.district-group {
    text-align: center;
}
/* District title */
.district-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
	color:yellow;
}
/* District names */
.district-group p {
    margin: 3px 0;
}
/* Tablet */
@media (max-width: 900px) {
    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile */
@media (max-width: 600px) {
    .district-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}
/* ===============================
   POPCORN SECTION
=============================== */
.popcorn-section {
  background-image: url("images/popcorn.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  min-height: 100vh;
  padding:20px;
  background-attachment:fixed;
}
/* Desktop Layout (Right aligned) */
.popcorn-content{
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  width: 50%;
  margin-left: auto;
  margin-right: 5%;
  margin-top: 5%;
  transform-style: preserve-3d;
  padding:0 2% 2%;
}
/* 📱 Mobile — Centered */
@media (max-width: 768px){
  .popcorn-section {
    background-position: center;
  }
  .popcorn-content{
    width: 90%;
    margin: 40px auto; /* centers horizontally */
    padding: 25px;
  }
}


.popcorn-heading h2{
	font-family: "Brush Script MT", "Lucida Handwriting", cursive;
	color:#fff;
	text-align:center;
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 20px;
	font-weight:normal;
}


.popcorn-intro p{
    font-size: 1rem;
    color: #fff;
    margin: 0;
	font-weight:normal;
	line-height:1.5em;	
	text-align:center;
}
/* .district-grid { */
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* gap: 30px; */
/* } */
/* 4 Columns */
.district {
  flex: 0 0 calc(25% - 30px);
}
/* District Title */
.district h3 {
  font-size: 1rem;
  color: #deb887;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
  padding-bottom: 5px;
  font-weight:normal;
}
/* Unit List */
.district ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.district li {
  color: #fff;
  margin-bottom: 6px;
  font-size:14px;
}
/* Tablet — 2 Columns */
@media (max-width: 992px) {
  .district {
    flex: 0 0 calc(50% - 30px);
  }
}
/* Mobile — 1 Column */
@media (max-width: 576px) {
  .district {
    flex: 0 0 calc(50% - 16px);
  }
}


.top-new-units {
  text-align: left;
  margin-top: 60px;
}
/* Section Title */
.top-new-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: normal;
}
/* Grid Layout */
.top-new-grid {
  display: flex;
  justify-content: left;
  gap: 10px;
  flex-wrap: wrap;
}
/* Card Style */
.unit-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 25px;
  width: 240px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: 0.3s ease;
}
/* Hover Effect */
.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
/* Medal */
.unit-rank {
  font-size: 2rem;
  margin-bottom: 10px;
  position:absolute;
  right:0;
  top:0;
}
/* District */
.unit-card h3 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}
/* Unit Name */
.unit-name {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
/* Amount */
.unit-amount {
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFD700;

}


.scout-sales {

  margin-top: 60px;

}

/* Section Title */

.scout-title {

  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 30px;

}

/* Grid Container */

.scout-grid {

  display: flex;
  flex-direction: column;
  gap: 10px;

}

/* Each Row */

.scout-row {

  display: flex;
  align-items: center;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);

  border-radius: 6px;

  padding: 12px 18px;

  border: 1px solid rgba(255,255,255,0.25);

}

/* Rank */

.rank {

  width: 40px;
  font-weight: bold;
  color: #FFD700;

}

/* Name */

.name {

  flex: 1;
  font-weight: 600;
  color: #fff;

}

/* Unit */

.unit {

  flex: 2;
  color: #fff;

}

/* Amount */

.amount {

  width: 120px;
  text-align: right;

  font-weight: bold;
  color: #FFD700;

}

@media (max-width:768px){

  .scout-row {

    flex-direction: column;
    align-items: flex-start;

    gap: 5px;

  }

  .amount {

    text-align: left;
    font-size: 1.2rem;

  }

}

.scout-row:nth-child(1) {

  border-left: 3px solid gold;

}

.scout-row:nth-child(2) {

  border-left: 3px solid silver;

}

.scout-row:nth-child(3) {

  border-left: 3px solid #cd7f32;

}



/* =====================================
   JAMES E. WEST — LAYOUT FIX
   Centers content + fixes wide spacing
   ===================================== */
.west-fellowship-section {
    padding: 90px 20px;
}
/* Center and constrain width */
.west-fellowship-section .container {
    max-width: 1000px;
    margin: 0 auto;
}
/* Section titles */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0b4a8b;
    margin-bottom: 25px;
}
/* Intro text */
.section-intro {
    max-width: 820px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}
/* ===============================
   LEVEL BLOCK SPACING
   =============================== */
.level-block {
    max-width: 900px;
    margin: 55px auto 0;
}
/* Divider between tiers */
.level-block:not(:first-child)::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,0.15),
        transparent
    );
    margin-bottom: 28px;
}
/* ===============================
   LEVEL TITLES
   =============================== */
.level-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
/* Tier Colors */
.diamond .level-title {
    color: #00b7ff;
}
.gold .level-title {
    color: #d4af37;
}
.silver .level-title {
    color: #8c97a8;
}
.bronze .level-title {
    color: #b87333;
}
/* ===============================
   NAME LIST
   =============================== */
.name-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.name-list li {
    padding: 6px 0;
    font-size: 16px;
    /* Prevent column breaking */
    break-inside: avoid;
}
/* ===============================
   COLUMN CONTROL
   =============================== */
.columns-2 {
    column-count: 2;
    column-gap: 60px;
}
.columns-3 {
    column-count: 3;
    column-gap: 50px;
}
/* Bronze — better balance */
.bronze .columns-3 {
    column-count: 4;
}
/* ===============================
   Memoriam text
   =============================== */
.memoriam {
    margin-top: 18px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}
/* ===============================
   MOBILE SAFETY
   =============================== */
@media (max-width: 768px) {
    .columns-2,
    .columns-3 {
        column-count: 1;
    }
    .level-title {
        font-size: 22px;
    }
}
/* =====================================
   STAFF GRID — STAR BETWEEN NAMES
   ===================================== */
.staff-grid p {
    position: relative;
    padding-right: 18px;
}
/* Add star separator */
/* .staff-grid p::after {
    content: "★";
    color: #d4af37;
    font-size: 12px;
    position: relative;
    left: 6px;
    top: 0;
    transform: translateY(-50%);
} */
/* Remove star on last item */
.staff-grid p:last-child::after {
    content: "";
}

/* =====================================
   2025 ACHIEVEMENTS SECTION
   ===================================== */
.center-text {
    text-align: center;
}
/* Achievement List */
.achievement-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
}
/* Individual Achievement */
.achievement-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 17px;
	text-align:left;
}
/* ⭐ Star Bullet */
/* Strong Numbers Highlight */
.achievement-list strong {
    color: #0b4a8b;
    font-weight: 700;
}


/* sponsor */
.section-ads{
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
	padding:50px 0;
	}

.full-page{
background: #2D4391;
background: linear-gradient(180deg, rgba(45, 67, 145, 1) 0%, rgba(8, 23, 75, 1) 100%);
}

.half-page{
background: #2D4391;
background: linear-gradient(180deg, rgba(45, 67, 145, 1) 0%, rgba(8, 23, 75, 1) 100%);
}

.quarter-page{
background: #08174B;
background: linear-gradient(180deg, rgba(8, 23, 75, 1) 0%, rgba(45, 67, 145, 1) 100%);
}

/* =====================================
   FLEXIBLE AD GRID
   Handles 1 / 2 / 4 / mixed layouts
   ===================================== */
.ad-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
	    justify-content: center;   /* center wrapped rows */

    width: 100%;

    max-width: 1000px;         /* adjust if needed */
}
/* Default — 50% layout */
.ad-item {
    flex: 1 1 calc(50% - 20px);
}
/* If only ONE ad */
.ad-grid:has(.ad-item:only-child) 
.ad-item {
    flex: 1 1 100%;
}
/* Images scale cleanly */
.ad-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Prevent stretching */
.ad-item {
    max-width: 100%;
}
/* Mobile */
@media (max-width: 768px) {
    .ad-item {
        flex: 1 1 100%;
    }
}

/* =====================================
   PHOTO BOARD GALLERY
   ===================================== */
.section-gallery {
    height: auto;

    padding: 60px 20px;
    /* Use exact tile size */
    background-image: url("images/bg/corkboard.jpg");
    background-repeat: repeat;
    background-size: auto;   /* IMPORTANT */
    background-position: top left;
}

/* Container */
.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
/* Photo layout */
.photo-board {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
/* Individual photo */
.photo-item {
    width: 300px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
    position: relative;
	border-radius:6px;
	height:fit-content;
}
/* Photo image */
.photo-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Push pin */
.photo-item::before {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url("images/pin.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
}
/* Random rotations */
.photo-item:nth-child(odd) {
    transform: rotate(-3deg);
}
.photo-item:nth-child(even) {
    transform: rotate(2deg);
}
.photo-item:nth-child(3n) {
    transform: rotate(-2deg);
}
.photo-item:nth-child(5n) {
    transform: rotate(3deg);
}

.photo-item:hover {
    transform: scale(1.5) rotate(0deg);
    z-index: 10;
	cursor:pointer;
}

.section-gallery .program-title{
	color:#000;
}
/* ===============================
   EAGLE SPONSOR INFOGRAPHIC STYLE
=============================== */
.eagle-sponsor-section {
    padding: 90px 20px;
    background:
        linear-gradient(
            to bottom,
            #f4f6fb,
            #e8edf7
        );
    position: relative;
	font-family:"Cinzel";
}
/* Subtle decorative stars */
.eagle-sponsor-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/bg/stars-small.png");
    background-repeat: repeat;
    background-size: 420px;
    opacity: 0.08;
    pointer-events: none;
}
/* ===============================
   LEVEL BLOCK
=============================== */
.level-block {
    margin-top: 60px;
}
/* Title */
.level-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    position: relative;
}
/* Decorative underline */
.level-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin: 12px auto 0;
    background:
        linear-gradient(
            to right,
            #b22234,
            #0a3161
        );
}
/* ===============================
   GRID LAYOUT
=============================== */
.name-list {
    list-style: none;
    display: grid;
    gap: 26px;
    padding: 0;
}
/* 2-column layout */
.columns-2 {
    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));
}
/* ===============================
   SPONSOR BADGE TILE
=============================== */
/* ===============================
   SPONSOR TILE STYLE
=============================== */
.name-list li {
    background: white;
    padding: 40px 20px 24px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    position: relative;
    box-shadow:
    0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
	border-top: 3px solid #b22234;
}
/* Hover effect */
.name-list li:hover {
    transform: translateY(-6px);
    box-shadow:
        0 14px 30px rgba(0,0,0,0.12);
}
/* ===============================
   TOP STAR BADGE
=============================== */
/* Quadruple Stars */
.quadruple .name-list li::before {
    content: "★ ★ ★ ★";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    letter-spacing: 4px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    color: #0a3161;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.15);
}
/* Double Stars */
.double .name-list li::before {
    content: "★ ★";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    letter-spacing: 4px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    color: #b22234;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.15);
}
.quadruple .name-list li {
    border-top:
        3px solid #0a3161;
    background:
        linear-gradient(
            to bottom,
            rgba(10,49,97,0.05),
            white
        );
}


.section-3 {
    position: relative;
    padding: 50px 20px 100px;
background: #08174B;
background: linear-gradient(180deg, rgba(8, 23, 75, 1) 0%, rgba(45, 67, 145, 1) 100%);


}
/* =========================
   Dark Back Cover Section
========================= */

.back-cover-dark {

    padding: clamp(70px, 8vw, 110px) 20px;

    background:
        linear-gradient(
            135deg,
            rgba(200,16,46,0.18),
            transparent 34%,
            rgba(255,207,71,0.12) 100%
        ),
        radial-gradient(
            circle at top,
            #0c3c78 0%,
            #041c3b 50%,
            #020f24 100%
        );

    position: relative;

    overflow: hidden;
	min-height:100vh;
}


/* =========================
   Subtle Stars Overlay
========================= */

.back-cover-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(white 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.15;
    pointer-events: none;
}


.back-dark-wrapper{
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	color: #fff;
	font-family: "Cinzel", serif;
	max-width: 1200px;
	margin: 0 auto;   /* Important */
	width: 100%;      /* Important */
	
}

.back-dark-title {
    grid-column: 1 / -1;
    max-width: 820px;
    margin: 0 auto 18px;
    color: #fff;
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0;
    text-shadow:
        0 0 20px rgba(255,255,255,0.2),
        0 8px 28px rgba(0,0,0,0.35);
}

.dark-block {
    min-height: 100%;
    padding: 30px 34px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.04)
        );
    box-shadow:
        0 18px 36px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.18);
    box-sizing: border-box;
}

.dark-block p,
.dark-block ul {
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
}

.back-dark-wrapper ul li{
	list-style-type:none;
	margin-bottom:12px;
    padding-left: 18px;
    position: relative;
}

.back-dark-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffcf47;
    box-shadow: 0 0 10px rgba(255,207,71,0.75);
}

.scout-law-list {
    column-count: 2;
    column-gap: 34px;
}

.scout-law-list li {
    break-inside: avoid;
}

.dark-block h3{
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    letter-spacing: 0;
    color: #ffcf47;
    text-align: left;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,207,71,0.34);
}

@media (min-width: 900px) {
    .back-dark-wrapper .dark-block:nth-of-type(1) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 900px) and (max-width: 1100px) {
    .back-dark-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .scout-law-list {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .back-cover-dark {
        padding: 64px 16px;
        min-height: auto;
    }

    .back-cover-dark .ribbon-layer {
        bottom: -2%;
    }

    .back-cover-dark .fleur-watermark {
        width: 90px;
        top: 18px;
        right: 18px;
    }

    .back-dark-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .back-dark-title {
        margin-bottom: 10px;
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .dark-block {
        padding: 24px 20px;
    }

    .dark-block h3 {
        font-size: 1.35rem;
        text-align: center;
    }

    .dark-block p,
    .dark-block ul {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}
/* =========================
   Section Styling
========================= */
.west-award-section {
    padding: 80px 20px;
    background:
        linear-gradient(
            rgba(255,255,255,0.96),
            rgba(255,255,255,0.96)
        ),
        url("images/bg/subtle-stars.png");
    background-size: cover;
}
/* Container */
.west-award-container {
    max-width: 800px;
    margin: 0 auto;
}
/* Title */
.west-award-title {
    text-align: center;
    font-size: 36px;
    color: #0c3c78;
    margin-bottom: 30px;
    font-family: "Cinzel", serif;
}
/* Intro Text */
.west-award-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #334155;
}
/* =========================
   Level Blocks
========================= */
.west-level {
    margin-top: 10px;
    padding: 20px 30px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	text-align:center;
background: linear-gradient(135deg, #d6e7ff 0%, #ffffff 50%, #e9d5b8 100%);

}
/* Level Titles */
.west-level-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}
/* Color Themes */
.west-level.diamond {
    border-left: 4px solid #0ea5e9;
	background: aliceblue;
}
.west-level.gold {
    border-left: 4px solid #f59e0b;
	background: #fff2dc;
}
.west-level.silver {
    border-left: 4px solid #94a3b8;
	background: #fafbfb;
}
.west-level.bronze {
    border-left: 4px solid #b45309;
	background: #fff4ec;
}
/* =========================
   Name Columns (Main Feature)
========================= */
.west-name-columns {
    column-count: 3;
    column-gap: 40px;
    font-size: 15px;
    line-height: 1.8;
}
.west-name-columns p {
    margin: 0 0 8px;
    break-inside: avoid;
	font-family:"Cinzel";
}
/* Memoriam */
.west-memoriam {
    margin-top: 15px;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.diamond .west-level-title{
	color:#0ea5e9;
}

.gold .west-level-title{
	color:#f59e0b;
}

.silver .west-level-title{
	color:#94a3b8;
}

.bronze .west-level-title{
	color:#b45309;
}




/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .west-name-columns {
        column-count: 2;
    }
}
@media (max-width: 600px) {
    .west-name-columns {
        column-count: 1;
    }
}

.scout-divider {

    width: 100%;

    margin: 60px 0;

}

.scout-divider svg {

    width: 100%;

    height: 60px;

    display: block;

}

.award-img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
	position: absolute;
    bottom: 0;
    right: 0;
}

.award-img img{
    width: 170px;
	
}

.award-img1{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
}

.award-img img{
    width: 170px;
	
}




.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 50px auto;

    background: linear-gradient(
        to right,
        transparent,
        #ffd700,
        transparent
    );
}

/* Center star */
.section-divider::after {
    content: "★";
    position: absolute;

    top: -18px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 22px;
    color: #ffd700;

    text-shadow:
        0 0 10px rgba(255,215,0,.8);
}

.eagle-main-title{
	font-family:"Cinzel";
}


/* stars light background */

.scout-star-section {

    position: relative;
    overflow: hidden;

}

/* Star container */
.stars-container {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: 1;

}

/* Content above stars */
.section-content {

    position: relative;
    z-index: 2;

}

/* Small blinking stars */

.star {

    position: absolute;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    opacity: 0;

    animation: twinkle 2.5s infinite;

}

/* Red star */

.star.red {

    background: #c41230;

    box-shadow: 0 0 6px #c41230;

}

/* Blue star */

.star.blue {

    background: #002f6c;

    box-shadow: 0 0 6px #002f6c;

}

/* Twinkle */

@keyframes twinkle {

    0% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0.2;
        transform: scale(1);
    }

}

/* Shooting star */

.shooting-star {

    position: absolute;

    width: 2px;
    height: 90px;

    background: linear-gradient(
        -45deg,
        #c41230,
        #002f6c,
        transparent
    );

    opacity: 0;

    transform: rotate(45deg);

    animation: shooting 2s linear forwards;

}

/* Shooting animation */

@keyframes shooting {

    0% {

        opacity: 1;

        transform:
            translate(0, 0)
            rotate(45deg);

    }

    100% {

        opacity: 0;

        transform:
            translate(600px, 600px)
            rotate(45deg);

    }

}

.memorial-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    isolation: isolate;
font-family:"Cinzel";
    background:
        linear-gradient(
            to bottom,
            #f8f5ee,
            #efe7d8
        );
}

/* Background image layer */

.memorial-section::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        url("images/faded-flag.jpg");

    background-size: cover;
    background-position: center;

    opacity: 0.3; /* KEY */

    pointer-events: none;
    z-index: 0;
}

/* Container */

.memorial-container {
    position: relative;
    z-index: 1;

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.memorial-container-three {
    grid-template-columns: 0.85fr 1.55fr 0.7fr;
    gap: 32px;
}

/* Image */

.memorial-image img {
    width: 100%;
    height: auto;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);
}

/* Content */

.memorial-title {
    font-size: 36px;
    font-weight: 700;

    color: #0c3c26;
    margin-bottom: 20px;
}

.memorial-text {
    font-size: 17px;
    line-height: 1.7;

    color: #333;
    margin-bottom: 25px;
}

.memorial-award-image {
    width: 70%;
    justify-self: center;
}

.memorial-award-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);
}

.memorial-subtitle {
    font-size: 20px;
    font-weight: 600;

    color: #b38b2d; /* gold tone */

    margin-bottom: 15px;
}

/* Names Grid */

.memorial-names {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

.memorial-names span {
    position: relative;

    padding-left: 18px;

    font-size: 16px;
    color: #222;
}

/* Fleur bullet */

.memorial-names span::before {
    content: "⚜";

    position: absolute;
    left: 0;
	top: -5px;
    color: #b38b2d;
}

/* Mobile */

@media (max-width: 768px) {

    .memorial-container {
        grid-template-columns: 1fr;
    }

    .memorial-container-three {
        grid-template-columns: 1fr;
    }

    .memorial-names {
        grid-template-columns: 1fr;
    }

    .memorial-title {
        font-size: 28px;
    }

    .memorial-award-image {
        max-width: 100%;
    }

}

.sponsor-full-img{
	border:4px solid #fff;
	border-radius:4px;
}
