/* Font Face Declaration */
@font-face {
    font-family: 'Titillium Web';
    src: url('TitilliumWeb-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Titillium Web', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #404040 100%);
    color: white;
    padding: 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: none;
    margin: auto;
    padding: 0;
    overflow: visible; /* Allow full logo visibility on all devices */
    min-height: 120px; /* Ensure enough space for scaled logo */
}

.logo-link {
    text-decoration: none;
    color: white;
    display: block; /* Make it a block element */
    position: relative;
    z-index: 1; /* Keep logo below navigation */
}

.logo-image {
    height: 100px;
    width: 800px;
    object-fit: contain;
    object-position: center;
    transform: scale(1.75);
}

/* Navigation Styles - Red Bar */
.main-nav {
    background-color: #BC002D;
    border-bottom: 1px solid #a00025;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10; /* Ensure navigation stays above logo */
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #BC002D;
}

.hero-stat .stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.search-bar {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar:focus {
    border-color: #BC002D;
}

.search-button {
    background-color: #BC002D;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #a00025;
}



/* Recent Activity */
.recent-activity {
    margin-bottom: 3rem;
}

.recent-activity h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.activity-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.activity-card h3 {
    color: #BC002D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.activity-content {
    color: #666;
}

/* About Section */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: bold;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Design - DISABLED to force desktop version on all devices */
/* 
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    

    
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu li a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    

}
*/