/*
Theme Name: Bangalore Leadership Circle - Version One.
Author: Sriram
Author URI: https://www.angeldrome.com
Description: First try
Version: 1.0
*/

:root {
    --body-bkgd-color: #FAF5FF;
    --body-fore-color: #1A1A1A;
    --contrast-fore-color: #8E18A1;
    --nl-fore-color: #FFF;
    --logo-fill-color: #8A2E75;
    --card-bkgd-color: #D7B6F2;
    --card-hovr-color: #D7B6F2;
    --misn-bkgd-color: #FAF5FF;
    --prog-bkgd-color: #f2f2f2;
    --evnt-bkgd-color: #FAF5FF;
    --burger-menu-bkgd: #8A2E75;
    --header-logo: url('./assets/images/light/logo_header.webp');
    --logo-img: url('./assets/images/light/logo.webp');
    --dot1-img: url('./assets/images/light/dot1_bkgd.webp');
    --dot2-img: url('./assets/images/light/dot2_bkgd.webp');
    --dot3-img: url('./assets/images/light/dot3_bkgd.webp');
    --dot4-img: url('./assets/images/light/dot4_bkgd.webp');
    --about-img: url('./assets/images/light/our_mission.webp');
    --connect-img: url('./assets/images/light/connect_bkgd.webp');
    --hcomb-img: url('./assets/images/light/honeycomb.webp');
    --linked_icon: url('./assets/images/light/linkedin.webp');
    --instagram_icon: url('./assets/images/light/instagram.webp');
    --hamburger_icon: url('./assets/images/light/hamburger.webp');
    --sun_icon: url('./assets/images/light/sun.webp');
    --moon_icon: url('./assets/images/light/moon.webp');
}

body.dark {
    --body-bkgd-color: #1A1A1A;
    --body-fore-color: #fAF9F6;
    --contrast-fore-color: #000;
    --nl-fore-color: #000;
    --logo-fill-color: #FFFF1E;
    --card-bkgd-color: #D9E758;
    --card-hovr-color: #C0CF3A;
    --misn-bkgd-color: #1A1A1A;
    --prog-bkgd-color: #1A1A1A;
    --evnt-bkgd-color: #1A1A1A;
    --burger-menu-bkgd: #FFFF1E;
    --header-logo: url('./assets/images/dark/logo_header.webp');
    --logo-img: url('./assets/images/dark/logo.webp');
    --dot1-img: url('./assets/images/dark/dot1_bkgd.webp');
    --dot2-img: url('./assets/images/dark/dot2_bkgd.webp');
    --dot3-img: url('./assets/images/dark/dot3_bkgd.webp');
    --dot4-img: url('./assets/images/dark/dot4_bkgd.webp');
    --about-img: url('./assets/images/dark/our_mission.webp');
    --connect-img: url('./assets/images/dark/connect_bkgd.webp');
    --hcomb-img: url('./assets/images/dark/honeycomb.webp');
    --linked_icon: url('./assets/images/dark/linkedin.webp');
    --instagram_icon: url('./assets/images/dark/instagram.webp');
    --hamburger_icon: url('./assets/images/dark/hamburger.webp');
    --sun_icon: url('./assets/images/dark/sun.webp');
    --moon_icon: url('./assets/images/dark/moon.webp');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--body-bkgd-color);
    color: var(--body-fore-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.restrict-width {
    max-width: 1280px;
}
.burger-menu {
    display: none;
    position: relative;
    padding: 10px 10px;
    background-color: var(--burger-menu-bkgd);
    color: #fff;
}

.burger-icon {
    background-image: var(--hamburger_icon);
    background-size: 30px auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    right: 10px;
}

.burger-items {
    display: none;
    position: absolute;
    right: 2px;
    width: 150px;
    top: 3.5rem;
    background-color: var(--burger-menu-bkgd);
    z-index: 100;
    font-size: 12px;
}

.burger-items a {
    display: list-item;
    list-style: none;
    color: var(--nl-fore-color);
    padding: .10rem;
    text-decoration: none;
    border-bottom-style: inset;
    border-bottom-color: #888;
    border-bottom-width: 2px;
}

.linkedin_icon {
    background-image: var(--linked_icon);
    background-size: 40px auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
}

.instagram_icon {
    background-image: var(--instagram_icon);
    background-size: 40px auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
}

.sun-icon {
    background-image: var(--sun_icon);
    background-size: 21px auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 21px;
    height: 21px;
    border: none;
}

.moon-icon {
    background-image: var(--moon_icon);
    background-size: 21px auto;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 21px;
    height: 21px;
    border: none;
}

/* Header Styles */
.header {
    position: relative;
    background-color: transparent;
    padding: 50px 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 50px;
}

.nav-empty-slot {
    width: 20%;
}

.logo-head {
    width: 35px;
    height: 48px;
    fill: var(--logo-fill-color);
    background-image: var(--header-logo);
    background-repeat: no-repeat;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--body-fore-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--logo-fill-color);
}

. menu-main-menu  a:hover {
    color: var(--logo-fill-color);
}

.nav-menu ul li>a:hover {
    color: var(--logo-fill-color);
}
.nav-menu ul li{
    font-family: 'Inter', sans-serif;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--body-fore-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-left: 12px;
    margin-right: 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 17px;
    border: 1px solid var(--body-fore-color);
    border-radius: 20px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgb(182 116 116 / 50%);
}

.btn-primary {
    background: var(--logo-fill-color);
    color: var(--nl-fore-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--card-hovr-color);
    color: var(--body-fore-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    background-image: var(--hcomb-img);
    background-size: 65% auto;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 538px 310px at -30.4% 25%, rgba(240, 235, 253, 0.6) 0%, transparent 100%),
        radial-gradient(ellipse 976.5px 348.5px at 30% 32.5%, rgba(253, 237, 242, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 614.5px 302.5px at 50% 75%, rgba(215, 182, 242, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 674px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    background-image: var(--logo-img);
    background-size: 200px 200px;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 60px;
    color: var(--logo-fill-color);
    letter-spacing: -2px;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: var(--logo-fill-color);
    text-align: center;
    max-width: 538px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border: 2px solid var(--logo-fill-color);
    border-radius: 32px;
    background: transparent;
    color: var(--logo-fill-color);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #8a2e75;
    color: white;
}

.arrow-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    color: var(--logo-fill-color);
}

/* Social Icons */
.social-icons {
    position: absolute;
    right: 8.333%;
    top: 423px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    fill: #8a2e75;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    fill: var(--logo-fill-color);
}



/* Mission Section */
.mission-section {
    padding: 77px 72px;
    background: var(--body-bkgd-color);
    position: relative;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 169px;
    max-width: 1280px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 28px;
    color: var(--logo-fill-color);
    margin-bottom: 32px;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: var(--body-fore-color);
    margin-left: 50px;
    text-align: justify;
}

.mission-icon {
    width: 250px;
    height: 250px;
    background-image: var(--about-img);
    background-size: 250px 250px;
    background-position: center;
    background-repeat: no-repeat;
    fill: #8a2e75;
    flex-shrink: 0;
}

/* Programs Section */
.programs-section {
    padding: 77px 72px;
    background-color: var(--prog-bkgd-color);
    position: relative;
}

.programs-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    }

.programs-grid {
    display: flex;
    flex-grow: 1;
    column-gap: 60px;
    width: 100%;
    justify-content: center;
}

.program-event-link {
    text-decoration: none;
}

.program-card {
    background-color: var(--card-bkgd-color);
    border-radius: 20px;
    padding: 30px 30px;
    width: 359px;
    height: 325px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card.image-card {
    background: rgba(9,37,76,0.4);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.program-image {
    width: 240px;
    height: 225px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 8px;
}

.program-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 17px 30px;
    color: white;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
}

.program-content {
    display: flex;
    flex-direction: column;
    gap: 77px;
    height: 100%;
}

.program-title {
    font-weight: 600;
    font-size: 24px;
    color: var(--contrast-fore-color);
    margin-bottom: 16px;
}

.program-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--body-fore-color);
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--body-fore-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.view-all-btn {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    gap: 4px;
    color: var(--body-fore-color);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}

/* Events Section */
.wrap-blc-single-event {
    height: 100%;
    margin-bottom: 4.5rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.blc-posts {
    height: 100%;
    margin-bottom: 4.5rem;
}

.blc-single-event {
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1.5rem;
}

.events-section {
    padding: 77px 72px;
    background: var(--body-bkgd-color);
    position: relative;
}

.events-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.events-grid {
    display: flex;
    flex-grow: 1;
    column-gap: 90px;
    width: 100%;
    justify-content: center;
}

.event-card {
    border-radius: 20px;
    padding: 15px 30px;
    width: 360px;
    height: 325px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.event-card.featured {
    min-width: 300px;
    background-color: var(--card-bkgd-color);;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
}

.event-card.upcoming {
    background: rgba(230,232,232,0.2);
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
}

.event-date {
    text-align: left;
}

.event-day {
    font-weight: 700;
    font-size: 40px;
    color: var(--contrast-fore-color);
}

.event-month {
    font-weight: 600;
    font-size: 20px;
    color: var(--contrast-fore-color);
    margin-left: 5px;
}

.event-details h3 {
    font-weight: 600;
    font-size: 24px;
    color: var(--contrast-fore-color);
    margin-bottom: 24px;
}

.event-details .upcoming h3 {
    font-size: 24px;
}

.event-time {
    font-weight: 700;
    font-size: 16px;
    color: var(--contrast-fore-color);
    margin-bottom: 4px;
}

.event-location {
    font-weight: 500;
    font-size: 16px;
    color: var(--contrast-fore-color);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--logo-fill-color);
    color: var(--nl-fore-color);
    position: relative;
}

.newsletter-decor {
    height: 500px;
    background-color: var(--body-bkgd-color);
    background-size: auto 500px;
    background-image: var(--connect-img);
    background-position: center;
    background-repeat: no-repeat;
}

.newsletter-content {
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.newsletter-text {
    flex: 1;
    color: var(--nl-fore-color);
}

.newsletter-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25em;
    margin-bottom: 16px;
    color: var(--nl-fore-color);
}

.newsletter-description {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25em;
    margin-bottom: 40px;
    color: var(--nl-fore-color);
}

.newsletter-form {
    display: flex;
    align-items: center;
    padding: 23px 22px;
    border: 1.5px solid var(--nl-fore-color);
    border-radius: 20px;
    background: transparent;
    width: 100%;
    max-width: 512px;
    gap: 10px;
    color: var(--nl-fore-color)
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--nl-fore-color);
    font-weight: 600;
    font-size: 18px;
    outline: none;
    flex: 1;
}

.newsletter-input::placeholder {
    color: var(--nl-fore-color);
}

.subscribe-btn {
    background: var(--body-bkgd-color);
    color: var(--body-fore-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
}

/* Footer */
.footer {
    padding: 50px 0;
    background-color: var(--body-bkgd-color);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 138px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--logo-fill-color);
    margin-bottom: 24px;
}

.footer-description {
    font-size: 18px;
    line-height: normal;
    color: var(--body-fore-color);
    max-width: 475px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-column h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--body-fore-color);
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--body-fore-color);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8a2e75;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-divider {
    height: 0.5px;
    background: rgba(0,0,0,0.5);
    width: 100%;
}

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

.footer-copyright {
    font-size: 16px;
    color: var(--body-fore-color);
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    fill: #8a2e75;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.footer-social-icon:hover {
    fill: #7a2565;
}

/* Background Decorative Elements */
.bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-graphics svg {
    position: absolute;
    opacity: 0.05;
}

/* post listing pages */
.blc-posts-row-container {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
}

.blc-posts-row-container > .blc-post-item {
    flex: 1 1 30%; /*grow | shrink | basis */
    height: 100%;
}

.blc-posts-row-container-events{
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    row-gap: 10px;
    width: 90%;
}
.blc-posts-row-container > .blc-post-item-transparent {
    flex: 1 1 30%; /*grow | shrink | basis */
    height: 100%;
}

.blc-post-row-container{
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
    column-gap: 40px;
    width: 90%;
    margin-bottom: 20px;
}

.blc-post-row-container > .blc-post-transparent {
    flex: 1 1 45%; /*grow | shrink | basis */
    height: 100%;
}

.more-b-for-heading {
    margin-bottom: 2rem;
}
.left-justify {
    justify-content: center;
    text-align: center;
}
.blc-post-transparent {
    background: transparent;
    align-items: start;
    justify-content: left;
}

.blc-post-item-transparent {
    background: transparent;
    align-items: center;
    justify-content: center;
}

.blc-post-item {
    background: #d7b6f2;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
}

.blc-post-title {
    font-size: 2.5rem;
    line-height: 3rem;
    color: var(--logo-fill-color);
}

.blc-post-title-prg {
    margin-left: 20px;
}

.blc-post-subtitle {
    font-size: 1.75rem;
    line-height: 2.25rem;
    color: var(--body-fore-color);
}

.blc-post-subsubtitle {
    font-size: 1.25rem;
    line-height: 2.25rem;
    color: var(--body-fore-color);
}

.blc-post-normaltext {
    font-size: 12px;
    line-height: 1.25rem;
    color: var(--body-fore-color);
}

.blc-post-content {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--body-fore-color);
    text-align: justify !important;
}

.enroll-btn-wrap {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    text-align: center;
}

.program-thumbnail { width: 90%; height: 90%; margin-left: auto; margin-right: auto; margin-bottom: 15px; object-fit:contain;}

.enroll-button { position: relative; transition: all 0.3s ease-in-out; box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); padding-block: 0.5rem; padding-inline: 1.25rem; background-color: var(--logo-fill-color); border-radius: 9999px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--nl-fore-color); gap: 10px; font-weight: bold; border: 3px solid #ffffff4d; outline: none; overflow: hidden; font-size: 15px; }
.enroll-icon { width: 24px; height: 24px; transition: all 0.3s ease-in-out; }
.enroll-button:hover { transform: scale(1.05); border-color: #fff9; }
.enroll-button:hover .enroll-icon { transform: translate(4px); }
.enroll-button:hover::before { animation: shine 1.5s ease-out infinite; }
.enroll-button::before { content: ""; position: absolute; width: 100px; height: 100%; background-image: linear-gradient( 120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70% ); top: 0; left: -100px; opacity: 0.6; }
@keyframes shine { 0% { left: -100px; } 60% { left: 100%; } to { left: 100%; } }

/* Responsive Design */

#back_top_button { display: inline-block; align-items: center;  background-color: #FF9800; width: 27px; height: 27px; text-align: center; border-radius: 15px; position: fixed; bottom: 30px; right: 30px; transition: background-color .3s,  opacity .5s, visibility .5s; opacity: 0; visibility: hidden; z-index: 1000; }
#back_top_button::after { font-weight: normal; font-style: normal; font-size: 2em; line-height: 50px; color: #fff; }
#back_top_button:hover { cursor: pointer; background-color: #333; }
#back_top_button:active { background-color: #555; }
#back_top_button.show { opacity: 1; visibility: visible; }

/* Media Query for mobiles */
@media (max-width: 480px) {
    .social-icons, .biggy, .nav-menu { display: none; }
    .burger-menu {display: block;}
    .decorative-dots { position: relative; width: 100px; height: 100px; z-index: 100;}
    .dot-1 { top: -50px; left: -5%; background-image: var(--dot1-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-2 { top: -50px; right: -55%; background-image: var(--dot2-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-3 { top: 100px; right: -50%; background-image: var(--dot3-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-4 { top: 100px; left: -90%; background-image: var(--dot4-img); background-repeat: no-repeat; background-size: 80% auto;}
    .hero-title { font-size: 28px; line-height: 36px; }
    .hero-section { padding: 65px 0; }
    .section-title { font-size: 42px; margin-left: 0px; text-align: center;}
    .mission-content, .programs-grid, .events-grid { flex-direction: column; row-gap: 32px; }
    .programs-section, .events-section, .mission-section, .newsletter-section { padding: 50px 20px; }
    .event-card.featured { min-width: 275px; }
    .section-description {margin-left:2px;}
    .blc-post-subsubtitle { font-size: 1.0rem; line-height: 2.25rem; color: var(--body-fore-color); }
    .logo-head { width: 70px; height: 48px; fill: var(--logo-fill-color); background-image: var(--header-logo); background-repeat: no-repeat; }
    .program-card, .event-card { width: 100%; max-width: 300px;  margin-left: auto; margin-right: auto;}
    .footer-main { flex-direction: column; gap: 32px; }
    .footer-links { gap: 50px; }
    .footer-bottom-content { flex-direction: column; gap: 16px; }
    #back_top_button { margin: 30px; right: 0px;}
    .newsletter-content { flex-direction: column; gap: 32px; text-align: center; }
    .newsletter-form { flex-wrap: wrap; border: 0px; }
    .subscribe-btn { margin-left: auto; margin-right: auto; }
    .newsletter-input { border: 1.5px solid var(--nl-fore-color); border-radius: 20px;  padding: 10px 1px 10px 6px;}
    .enroll-btn-wrap { margin-bottom: 10px; }
    .enroll-button {margin-left: auto; margin-right: auto;}
    .blc-post-row-container > .blc-post-transparent {text-align: center;}
    .wrap-blc-single-event {height: max-content;}

}

@media ((min-width: 481px) and (max-width: 768px)) {
    .social-icons, .biggy, .nav-menu { display: none; }
    .burger-menu {display: block;}
    .decorative-dots { position: relative; width: 100px; height: 100px; z-index: 100;}
    .dot-1 { top: -50px; left: -5%; background-image: var(--dot1-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-2 { top: -50px; right: -55%; background-image: var(--dot2-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-3 { top: 100px; right: -50%; background-image: var(--dot3-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-4 { top: 100px; left: -90%; background-image: var(--dot4-img); background-repeat: no-repeat; background-size: 80% auto;}
    .hero-title { font-size: 36px; line-height: 44px; }
    .hero-section { padding: 85px 0; }
    .section-title { font-size: 42px; margin-left: 0px; text-align: center;}
    .mission-content, .programs-grid, .events-grid { flex-direction: column; row-gap: 32px; }
    .programs-section, .events-section, .mission-section, .newsletter-section { padding: 50px 20px; }
    .section-description {margin-left:2px;}
    .blc-post-subsubtitle { font-size: 1.0rem; line-height: 2.25rem; color: var(--body-fore-color); }
    .logo-head { width: 70px; height: 48px; fill: var(--logo-fill-color); background-image: var(--header-logo); background-repeat: no-repeat; }
    .program-card, .event-card { width: 100%; max-width: 300px;  margin-left: auto; margin-right: auto;}
    .footer-main { flex-direction: column; gap: 32px; }
    .footer-links { gap: 50px; }
    .footer-bottom-content { flex-direction: column; gap: 16px; }
    #back_top_button { margin: 30px; right: 0px;}
    .newsletter-content { flex-direction: column; gap: 32px; text-align: center; }
    .newsletter-form { flex-wrap: wrap; border: 0px; }
    .subscribe-btn { margin-left: auto; margin-right: auto; }
    .newsletter-input { border: 1.5px solid var(--nl-fore-color); border-radius: 20px;  padding: 10px 1px 10px 6px;}
    .enroll-btn-wrap { margin-bottom: 10px; }
    .enroll-button {margin-left: auto; margin-right: auto;}
    .blc-post-row-container > .blc-post-transparent {text-align: center;}
    .wrap-blc-single-event {height: max-content;}
    .mission-content, .programs-grid, .events-grid { flex-direction: column; row-gap: 32px; }
    .newsletter-content { flex-direction: column; gap: 32px; text-align: center; }
    .footer-main { flex-direction: column; gap: 32px; }
    .footer-links { gap: 50px; }
    .programs-section, .events-section, .mission-section, .newsletter-section { padding: 50px 20px; }
}
/* Media Query for pads */
@media ((min-width: 769px) and (max-width: 1024px)) {
    .decorative-dots { position: relative; width: 100px; height: 100px; z-index: 100;}
    .dot-1 { top: -50px; left: -5%; background-image: var(--dot1-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-2 { top: -50px; right: -55%; background-image: var(--dot2-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-3 { top: 100px; right: -50%; background-image: var(--dot3-img); background-repeat: no-repeat; background-size: 80% auto;}
    .dot-4 { top: 100px; left: -90%; background-image: var(--dot4-img); background-repeat: no-repeat; background-size: 80% auto;}
    .hero-title { font-size: 28px; line-height: 36px; }
    .section-title { font-size: 32px; margin-left: 0px;}
    .section-description { margin-left: 0px;}
    .program-card, .event-card { width: 200px; max-width: 200px; height: 250px; margin-left: auto; margin-right: auto;}
    .programs-grid, .events-grid { column-gap: 6%;}
    .event-card { gap: 20px; }
    .program-image { width: 145px; height: auto; }
    .program-title { font-weight: 400; font-size: 18px; margin-top: 5px; text-align: center; margin-bottom: 10px;}
    .event-card.featured { min-width: 200px; }
    .event-day { font-weight: 400; font-size: 28px;}
    .event-month { margin-left: 0px; font-size: 18px; font-weight: 300;}
    .event-details h3 { font-weight: 400; font-size: 18px; color: var(--contrast-fore-color); margin-bottom: 1px; }
    .event-time { font-weight: 200; font-size: 12px; color: var(--contrast-fore-color); margin-bottom: 1px; }
    .event-location { font-weight: 100; font-size: 10px; }
    .footer-bottom-content { flex-direction: column; gap: 16px; }
    #back_top_button { margin: 30px; }
    .newsletter-form { flex-wrap: wrap; border: 0px; }
    .newsletter-input { border: 1.5px solid var(--nl-fore-color); border-radius: 20px; padding: 10px 1px 10px 6px;}
    .subscribe-btn { margin-left: auto; margin-right: auto; }
}
@media (width: 1024px) {
    .programs-grid, .events-grid { column-gap: 15%;}
}

/* large screens */
@media ((min-width: 1025px)) {
    .decorative-dots { position: relative; width: 100px; height: 100px; z-index: 100;}
    .dot-1 { top: -50px; left: -5%; background-image: var(--dot1-img); background-repeat: no-repeat; background-size: 100% auto;}
    .dot-2 { top: -50px; right: -55%; background-image: var(--dot2-img); background-repeat: no-repeat; background-size: 100% auto;}
    .dot-3 { top: 100px; right: -50%; background-image: var(--dot3-img); background-repeat: no-repeat; background-size: 100% auto;}
    .dot-4 { top: 100px; left: -90%; background-image: var(--dot4-img); background-repeat: no-repeat; background-size: 100% auto;}
    .programs-grid, .events-grid { column-gap: 7%;}
    .hero-title { font-size: 28px; line-height: 36px; }
    .section-title { font-size: 42px;  margin-left: 50px;}
    .program-card, .event-card { width: 100%; max-width: 300px; }
    .footer-bottom-content { flex-direction: column; gap: 16px; }
    #back_top_button { margin: 30px; }
}


@media (max-width: 1281px) {
    .footer-main, .mission-content, .newsletter-content { gap: 80px; padding-left: 8px; padding-right: 8px;}
}

@media (min-width: 1350px) {
    .programs-grid, .events-grid { column-gap: 11%;}
}
