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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

a {
    text-decoration: none;
    color: #283D45;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #283D45;
}

.contact-btn {
    background-color: #283D45;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #1e2f36;
}

/* Hero Section */
.hero {
    background-color: #283D45;
    color: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 533px;
}

.slider {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.slide h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.slide-1 {
    background-color: #283D45;
}

.slide-2 {
    background-color: #1e2f36;
}

.slide-3 {
    background-color: #172227;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #fff;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: #ff6b00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

/* Stats Section */
.stats {
    background-color: #000;
    color: #fff;
    padding: 0;
    max-height: 96px;
    display: flex;
    align-items: center;
}

.stats .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding: 15px 0;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Stats Section */
@media (max-width: 768px) {
    .stats {
        max-height: none;
    }
    
    .stats .container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 0 50%;
        padding: 10px;
    }
}

/* Featured Events Section */
.featured-events {
    padding: 60px 0;
}

.featured-events h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #283D45;
}

.event-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.event-button {
    display: inline-block;
    background-color: #283D45;
    color: #fff;
    padding: 10px 20px;
    margin: 0 10px 10px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.event-button:hover {
    background-color: #1e2f36;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.event-card-header {
    height: 74px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.event-card-header.bg-1 {
    background-color: #283D45;
}

.event-card-header.bg-2 {
    background-color: #ff6b00;
}

.event-card-header.bg-3 {
    background-color: #28a745;
}

.event-card-header.bg-4 {
    background-color: #6610f2;
}

.event-card-header.bg-5 {
    background-color: #e83e8c;
}

.event-card-header.bg-6 {
    background-color: #fd7e14;
}

.event-card-header .category-icon {
    font-size: 24px;
    margin-right: 10px;
}

.event-card-header .category-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card-content {
    padding: 20px;
}

.event-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.event-card h3 a {
    color: #283D45;
}

.event-details {
    font-size: 0.9rem;
}

.event-date, .event-location {
    margin-bottom: 5px;
}

.event-status, .event-category {
    margin: 10px 0;
    font-weight: 600;
}

.confirmed {
    color: #28a745;
}

.event-category {
    color: #283D45;
}

.more-info {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #ff6b00;
}

.more-info:hover {
    color: #283D45;
}

/* About Section */
.about {
    background-color: #f0f5ff;
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
    color: #283D45;
}

.about-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about-links a {
    margin: 0 15px 15px;
    color: #283D45;
    font-weight: 600;
    transition: color 0.3s;
}

.about-links a:hover {
    color: #ff6b00;
}

/* Footer */
footer {
    background-color: #283D45;
    color: #fff;
    padding: 50px 0;
}

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

.footer-left {
    flex: 1;
    padding-right: 30px;
}

.footer-center {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.footer-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-button {
    display: block;
    width: 100%;
    max-width: 250px;
    background-color: #fff;
    color: #283D45;
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.footer-button:hover {
    background-color: #f0f0f0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-left, .footer-center, .footer-right {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-button {
        margin: 0 auto 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats .container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}
