:root {
    --orange: #e31837; /* changed to red as requested */
    --navy: #0f3b6c;
    --font-main: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: #f4f4f4;
}

.top-bar {
    background-color: var(--orange);
    color: white;
    font-weight: 700;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.top-bar marquee {
    margin-left: 20px;
}

.navbar {
    background-color: var(--navy);
    height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    z-index: 999;
}

.logo-container {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease;
}

.logo-container a:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    transform: translateY(-6px);
    grid-column: 2;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li:not(:last-child)::after {
    content: '|';
    color: rgba(255, 255, 255, 0.5);
    margin: 0 20px;
    font-weight: 300;
}

.nav-links a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--orange);
}

.arrow {
    font-size: 0.7rem;
    margin-left: 3px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    z-index: 100;
    border-top: 3px solid var(--orange);
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block !important;
}

.nav-links .dropdown-menu li::after {
    display: none; /* Remove pipe separator in dropdown */
}

.dropdown-menu a {
    color: #333 !important;
    padding: 12px 20px;
    display: block;
    text-transform: none !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: var(--orange) !important;
    padding-left: 25px;
}

.hero {
    min-height: calc(100vh - 105px);
    background: url('hero-player-new.jpg') center top / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 40, 80, 0.92) 0%,
        rgba(10, 40, 80, 0.80) 30%,
        rgba(10, 40, 80, 0.05) 50%,
        rgba(0, 0, 0, 0.00) 65%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1300px;
    padding: 60px 80px;
}

.hero-text {
    max-width: 560px;
    text-align: left;
}

.hero-tagline {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-title {
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-shadow: 2px 4px 16px rgba(0,0,0,0.5);
}

.hero-title span {
    color: var(--orange);
}

.hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 420px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--orange);
    color: white;
    padding: 14px 34px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
}

.btn-primary:hover {
    background-color: #d1551a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 13px 34px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Hero Player Image */
.hero-image-wrap {
    flex: 0 0 auto;
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-player-ring {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 5px solid var(--orange);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(242,101,34,0.25), 0 20px 60px rgba(0,0,0,0.5);
    animation: floatPlayer 4s ease-in-out infinite;
}

.hero-player-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-player-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,101,34,0.35) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes floatPlayer {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 40px 40px;
    }
    .hero-image-wrap,
    .hero-player-ring {
        width: 280px;
        height: 280px;
    }
    .hero-player-glow {
        width: 260px;
        height: 260px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 24px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-image-wrap,
    .hero-player-ring {
        width: 220px;
        height: 220px;
    }
    .hero-player-glow {
        width: 200px;
        height: 200px;
    }
}

/* Page Header */
.page-header {
    background-color: #b4c2cd;
    padding: 50px 0;
    margin-bottom: 50px;
    padding-left: 280px; /* offset for logo */
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-header h1 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 800;
}

/* Page Content */
.page-content {
    background-color: #f4f4f4;
    padding-bottom: 60px;
    padding-left: 280px; /* offset for logo */
}

.page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.content-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.section-divider {
    border: 0;
    border-top: 2px dotted var(--orange);
    margin: 50px 0;
}

.aims-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.aims-list li {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    text-align: justify;
}

.aims-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--orange);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Team Cards */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.team-card {
    background: #fdfdfd;
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    width: 250px;
    border: 1px solid #eee;
}
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}


/* Committee Lists */
.committee-section {
    margin-bottom: 20px;
}

.committee-section h2 {
    background-color: #008000;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.committee-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.committee-list.single-column {
    grid-template-columns: 1fr;
}

.committee-member {
    color: #003366;
    background-color: #f9fbfd;
    border-left: 4px solid var(--orange);
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
.committee-member span {
    display: block;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 6px;
}
/* Footer Styles */
.site-footer {
    background-color: var(--navy);
    color: white;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    background: white;
    color: var(--navy);
    padding: 5px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
}

.social-fb { background-color: #3b5998; }
.social-x { background-color: #ffffff; }
.social-x i { color: #000000 !important; }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

@media (max-width: 1200px) {
    .nav-links a {
        font-size: 0.75rem;
    }
    .nav-links li:not(:last-child)::after {
        margin: 0 10px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    aspect-ratio: 4/3;
    background-color: #eee;
    border: 1px solid #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.entry-form {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

.submit-btn {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #d1551a;
}













