/*commecement2026 styles*/


    :root {
     --bc-navy: #172e81;
     --bc-navy-mid: #0e1d53;
     --bc-gold: #ebbf14;
     --bc-gold-light: #ebbf142b;
      --bc-cream:   #e9ecef;
      --bc-white:   #ffffff;
      --bc-text:    #2f2f2f;
    --bc-gray-100: #e9ecef;
     --bc-gray-200: #ced4d9;
     --bc-gray-500: #8f999f;
     --bc-gray-700: #5f6368;
     --bc-gray-dark: #2f2f2f;
     --bc-inverted: #00000078;

      --bc-muted:   #5a6475;
      --bc-alert: #B03A2E;
      --bc-shadow:  0 2px 16px rgba(10,34,64,0.08);
      --radius:     12px;
      --radius-sm:  6px;
      --font-headers:  'Helvetica Neue LT Std', Helvetica, Arial, sans-serif;
      --font-body:  'HelveticaNeueLTStd-Roman', Helvetica, Arial, sans-serif;
        --font-display: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
      --max-w:      1120px;
      --gap:        clamp(1rem, 3vw, 2rem);
    }


/* Hero Section */
.comm-homepage-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.comm-homepage-hero .video-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm-background-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transform: none !important;
    z-index: 1;
}

/* Hide video on screens 720px and smaller */
@media (max-width: 719px) {
    .comm-background-video {
        display: none !important;
    }
}

.comm-homepage-hero .comm-vid-title {
    font-family: var(--font-headers);
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.comm-desktop-only-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@media (min-width: 720px) {
    .comm-homepage-hero .video-image-wrapper {
        height: 700px;
    }


}


/*countdown styles*/

    .countdown-container {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-align: center;
      padding: 25px 20px 20px 20px;
      background-color: var(--bc-gray-dark);
      width: 100%;
    }

    .countdown-title{
      font-family: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
      font-size: 3rem;
      color: var(--bc-gold);
      text-align: center;
      margin-bottom: 5px;
      margin-top: 5px;
    }

    #countdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Ensures responsiveness on small screens */
    }

    .time-section {
        background: white;
        padding: 15px;
        border-radius: 10px;
        min-width: 80px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .time-section span {
        display: block;
        font-size: 3rem;
        font-weight: bold;
        color: #e74c3c;
    }

    .time-section p {
        margin: 5px 0 0;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
        color: #2d3436;
    }

    /* Mobile adjustments */
    @media (max-width: 480px) {
        .time-section {
            min-width: 60px;
            padding: 15px;
        }
        .time-section span {
            font-size: 2rem;
        }
    }