* {
    margin : 0;
    padding : 0;
    box-sizing: border-box;
}
body {
    font-family: 'papyrus', sans-serif;
    line-height: 1.6;
    color: #333;
}
:root {
    --bsa-red: #CE1126;
    --bsa-blue: #003F87;
    --bsa-gold: #FDB515;
    --bsa-gray: #6D6E71;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
}
.navbar.transparent {
    background: transparent;
}
.navbar.solid {
    background: var(--bsa-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    color: var(--white);
    text-decoration: none;

}
.nav-links {
    display:flex;
    list-style:none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration:double;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--bsa-gold);
}
.hero {
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content: center;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 135, 135, 0.6);
    z-index: 1;
}
.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.cta-button {
    display: inline-block;
    background: var(--bsa-red);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 29px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s ease;
 }
 .cta-button:hover {
    background: #a00e1f;
 }
.section {
    padding: 4rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--bsa-blue);
}
.about {
    background: var(--light-gray);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-image {
    width: 100%;
    height: 300px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}
.activities {
    background: var(--white);
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.activity-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--bsa-blue);
    border-bottom: 1px solid var(--bsa-gray);
}
.activity-card:hover {
    transform: translateY(-5px);
}
.activity-icon {
    width: 80px;
    height: 80px;
    background: var(--bsa-gold);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}
.events {
    background: var(--light-gray);
}
.events-list {
    display: grid;
    gap: 2rem;
}
.event-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid var(--bsa-red);
    border-top: 2px solid var(--bsa-gold);
    border-bottom: 2px solid var(--bsa-gold);
}
.event-cardv2 {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid var(--bsa-gray);
    border-top: 2px solid var(--bsa-gold);
    border-bottom: 2px solid var(--bsa-gold);
}
.event-cardv3 {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid var(--bsa-blue);
    border-top: 2px solid var(--bsa-gold);
    border-bottom: 2px solid var(--bsa-gold);
}
.event-date {
    color: var(--bsa-red);
    font-weight: bold;
    font-size: 1.1rem;
}
.event-title {
    color: var(--bsa-blue);
    font-size: 1.3rem;
    margin: 0.5rem 0;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}
.gallery-item {
    height: 200px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.contact {
    background: var(--bsa-blue);
    color:var(--white);
}
.contact h2 {
    color: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.contact-info {
    text-align: center;
}
.contact-info h3 {
    color: var(--bsa-gold);
    margin-bottom: 1rem;
}
.links {
    background: var(--white);
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.link-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 100px;
    transition: background 0.3s ease;
}
.link-item2 {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 100px;
    transition: background 0.3s ease;
}
.link-item3 {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 100px;
    transition: background 0.3s ease;
}
.link-item4 {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 100px;
    transition: background 0.3s ease;
}
.link-item:hover {
    background: var(--bsa-gold);
    color: var(--white);
}
.link-item2:hover {
    background: var(--bsa-red);
    color: var(--white);
}
.link-item3:hover {
    background: var(--bsa-gray);
    color: var(--white);
}
.link-item4:hover {
    background: var(--bsa-blue);
    color: var(--white);
}

.link-item a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
.link-item2 a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
.link-item3 a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
.link-item4 a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
.footer {
    background: var(--bsa-gray);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 3rem 1 rem;
    }
}