/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&family=Roboto:wght@300;400;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    line-height: 1.6;
    color: #252525;
    background-color: #190042;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
    color: #353535;
    font-weight: 700;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: rgba(0, 0, 0, 0.8);
}

/* Site Header */
.site-header {
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #141414;
    position: relative;
    overflow: visible;
    z-index: 100;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20, 20, 20, 0.31);
    z-index: 1;
}

.site-header-wrapper {
    position: relative;
    z-index: 1000;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo and Site Title */
.site-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.custom-logo {
    width: 120px;
    height: auto;
    margin-right: 20px;
}

.site-description {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 300;
}

/* Navigation */
.main-navigation {
    position: relative;
    z-index: 9999;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.main-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.main-menu li {
    position: relative;
}

.main-menu > li > a {
    color: #ffffff;
    padding: 15px 20px;
    display: block;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-menu > li > a:hover,
.main-menu > li.current > a {
    color: rgba(255, 255, 255, 0.8);
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e9c46a;
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    color: #ffffff;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-menu a:hover {
    background-color: rgba(233, 196, 106, 0.8);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.site-content {
    display: grid;
    grid-template-columns: 250px 2fr 320px;
    gap: 30px;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 15px;
}

.content-area {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Page Content */
.page-content p {
    margin-bottom: 1.5em;
}

.separator {
    border: none;
    height: 1px;
    background-color: rgba(37, 37, 37, 0.1);
    margin: 30px 0;
}

.centered-text {
    text-align: center;
}

.highlight-box {
    background-color: #03263B;
    color: #ffffff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 3px;
}

.image-left {
    float: left;
    margin: 0 20px 20px 0;
}

.lion-badge {
    width: 58px;
    height: 58px;
}

/* Sidebar */
.widget-area {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.widget {
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #353535;
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9c46a;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.widget li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #e9c46a;
    font-size: 0.8em;
}

.widget a {
    color: #353535;
    font-size: 0.9em;
}

.widget a:hover {
    color: #e9c46a;
}

/* Coming Events Widget */
.coming-events p {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #e9c46a;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Calendar Placeholder */
.calendar-placeholder {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border: 2px dashed #ddd;
    border-radius: 5px;
}

/* News and Events Styles */
.news-item {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #e9c46a;
    border-radius: 0 5px 5px 0;
}

.news-item h3 {
    color: #03263B;
    margin-bottom: 8px;
}

.news-date {
    font-size: 0.9em;
    color: #686868;
    font-style: italic;
    margin-bottom: 15px;
}

.upcoming-events .event-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-details {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 15px 0;
    border-radius: 3px;
}

.event-details p {
    margin-bottom: 5px;
}

/* Activities Page Styles */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.activity-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.activity-item h4 {
    color: #03263B;
    margin-bottom: 15px;
}

.activity-item h4 a {
    color: inherit;
    text-decoration: none;
}

.activity-item h4 a:hover {
    color: #e9c46a;
}

.services-list {
    margin: 20px 0;
}

.services-list h4 {
    color: #03263B;
    margin-top: 25px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e9c46a;
    padding-bottom: 5px;
}

.services-list ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.services-list li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    background-color: #03263B;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

.stat-item h4 {
    color: #e9c46a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9em;
    margin: 0;
}

/* Membership Page Styles */
.membership-intro {
    background-color: #03263B;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefit-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #e9c46a;
}

.benefit-item h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.requirements-list {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.requirements-list li {
    margin-bottom: 10px;
}

.expectations h4 {
    color: #03263B;
    margin-top: 20px;
    margin-bottom: 10px;
}

.join-process {
    margin: 20px 0;
}

.step {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #e9c46a;
}

.step h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.testimonials {
    margin: 20px 0;
}

.testimonials blockquote {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #03263B;
    margin: 20px 0;
    font-style: italic;
}

.testimonials cite {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-weight: bold;
    color: #686868;
}

.cta-section {
    background-color: #e9c46a;
    color: #ffffff;
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
    text-align: center;
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
    text-align: left;
}

.contact-method {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
}

.contact-method h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #03263B;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0b3954;
}

/* Event Styles */
.event-highlight {
    background-color: #e9c46a;
    color: #03263B;
    padding: 25px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #03263B;
}

.event-highlight h3 {
    color: #03263B;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: bold;
}

.menu-items ul {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 15px 0;
}

.menu-items li {
    margin-bottom: 10px;
    padding-left: 0;
}

.dining-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.option {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.option h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.fundraising-impact {
    background-color: #03263B;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.fundraising-impact h4 {
    color: #e9c46a;
    margin-bottom: 10px;
}

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.role {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

.role h4 {
    color: #03263B;
    margin-bottom: 10px;
}

/* Executive Page Styles */
.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.executive-member {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #e9c46a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.executive-member h3 {
    color: #e9c46a;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.executive-member h4 {
    color: #03263B;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.directors-list {
    margin: 20px 0;
}

.director-item {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #03263B;
}

.director-item h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.committee {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #e9c46a;
}

.committee h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.leadership-contact {
    background-color: #03263B;
    color: #ffffff;
    padding: 25px;
    border-radius: 5px;
    margin: 20px 0;
}

.leadership-contact h4 {
    color: #e9c46a;
    margin-top: 20px;
    margin-bottom: 10px;
}

.leadership-contact h4:first-child {
    margin-top: 0;
}

/* Bursary Page Styles */
.bursary-intro {
    background-color: #03263B;
    color: #ffffff;
    padding: 25px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.detail-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #e9c46a;
}

.detail-item h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.eligibility-list {
    margin: 20px 0;
}

.eligibility-list h4 {
    color: #03263B;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e9c46a;
    padding-bottom: 5px;
}

.submission-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.criterion {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    border-top: 4px solid #e9c46a;
}

.criterion h4 {
    color: #03263B;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.support-cta {
    background-color: #e9c46a;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.support-cta h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #03263B;
    margin: 20px 0;
}

/* Coming Events Widget */
.widget.coming-events {
    margin-bottom: 0;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.widget.coming-events .widget-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #353535;
    border-bottom: 2px solid #e9c46a;
    padding-bottom: 0.5rem;
}

.widget.coming-events .event-info {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    transition: background-color 0.2s ease;
}

.widget.coming-events .event-info:hover {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.widget.coming-events .event-info h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #353535;
}

.widget.coming-events .event-info h5 a {
    color: #353535;
    text-decoration: none;
    font-weight: 600;
}

.widget.coming-events .event-info h5 a:hover {
    color: #e9c46a;
}

.widget.coming-events .event-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.widget.coming-events .event-info p:last-child {
    margin-bottom: 0;
}

.widget.coming-events > p:last-child {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    margin-bottom: 0;
}

.widget.coming-events .event-info a,
.widget.coming-events > p a {
    color: #353535;
    text-decoration: none;
}

.widget.coming-events .event-info a:hover,
.widget.coming-events > p a:hover {
    color: #e9c46a;
}

/* Pavilion Project Styles */
.project-intro {
    background-color: #03263B;
    color: #ffffff;
    padding: 25px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.detail-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #e9c46a;
}

.detail-section h4 {
    color: #03263B;
    margin-bottom: 15px;
}

.timeline {
    margin: 20px 0;
}

.timeline-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.timeline-item.completed::before {
    background-color: #28a745;
}

.timeline-item.current::before {
    background-color: #e9c46a;
}

.timeline-item.future::before {
    background-color: #ddd;
}

.timeline-item h4 {
    color: #03263B;
    margin-bottom: 10px;
}

.funding-status {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    margin: 20px 0;
}

.funding-goal {
    margin-bottom: 25px;
}

.funding-goal h4 {
    color: #03263B;
    margin-bottom: 15px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #ddd;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e9c46a, #03263B);
    transition: width 0.3s ease;
}

.funding-sources h4 {
    color: #03263B;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9c46a;
    padding-bottom: 5px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.support-option {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    border-top: 4px solid #e9c46a;
}

.support-option h4 {
    color: #03263B;
    margin-bottom: 15px;
}

.recognition-details {
    background-color: #e9c46a;
    color: #ffffff;
    padding: 25px;
    border-radius: 5px;
    margin: 20px 0;
}

.recognition-details h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.update-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #03263B;
}

.update-item h4 {
    color: #03263B;
    margin-bottom: 10px;
}

/* Contact Form Styles */
.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #e9c46a;
    margin: 20px 0;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    margin-top: 30px;
}

.contact-form h4 {
    margin-bottom: 20px;
    color: #353535;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #353535;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e9c46a;
    box-shadow: 0 0 0 2px rgba(233, 196, 106, 0.2);
}

.submit-button {
    background-color: #e9c46a;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(233, 196, 106, 0.8);
}

/* Footer */
.site-footer {
    background-color: #141414;
    color: #ffffff;
    margin-top: 50px;
    padding: 40px 0 20px;
}

.footer-widgets {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-widgets h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.site-info {
    background-color: #2d2d2d;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    color: #686868;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        display: none;
        flex-direction: column;
        flex-wrap: nowrap !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e9c46a;
        padding: 0;
        z-index: 10000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        border-radius: 0 0 8px 8px;
        max-height: 400px;
        overflow-y: auto;
        width: 100%;
    }
    
    .main-menu.active {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    .main-menu > li {
        width: 100% !important;
        display: block !important;
        flex: none !important;
    }
    
    .main-menu > li > a {
        color: #03263B;
        border-bottom: 1px solid rgba(3, 38, 59, 0.2);
        padding: 15px 20px;
        font-weight: 500;
        display: block;
        width: 100%;
        text-align: left;
        transition: background-color 0.2s ease;
    }
    
    .main-menu > li > a:hover {
        background-color: rgba(3, 38, 59, 0.1);
        color: #03263B;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(3, 38, 59, 0.9);
        margin: 0;
        padding: 0;
        width: 100%;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        display: block;
    }
    
    .sub-menu li {
        width: 100%;
        display: block;
    }
    
    .sub-menu a {
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 30px;
        display: block;
        transition: background-color 0.2s ease;
        width: 100%;
    }
    
    .sub-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .widget-area {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .custom-logo {
        width: 80px;
    }
    
    .site-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .custom-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    /* Ensure images are responsive */
    .lion-badge,
    .image-left img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 20px;
    }
    
    .image-left {
        float: none;
        margin: 0 0 20px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-header-wrapper {
        padding: 10px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .content-area {
        padding: 15px;
    }
    
    .widget-area {
        padding: 15px;
    }
    
    .site-content {
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .image-left {
        float: none;
        margin: 0 auto 20px;
        text-align: center;
    }
    
    .lion-badge {
        width: 80px;
        height: auto;
    }
}
