/* Reset and base styles */

@font-face {
font-family: 'Comfortaa';
src: url('./fonts/Comfortaa-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Comfortaa', sans-serif;
src: url('./fonts/Comfortaa-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(251, 238, 193, 0.25);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Header styles */
.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 3px solid #e63946;
    margin-bottom: 40px;
    xbackground: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
		background: linear-gradient(135deg, #6ea0bf 0%, #4e8bb1 100%);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mascot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    xborder: 3px solid #2c5530;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.site-title {
    font-size: 3em;
    xcolor: #2c5530;
		color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.tagline {
    font-size: 1.2em;
    color: #ffffff;
    font-style: italic;
    margin: 0;
}

/* Main content styles */
.main-content {
    padding: 0 20px;
}

.section-title {
    font-size: 2.2em;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

/* Blog list styles */
.blog-list {
    margin-bottom: 40px;
}

.blog-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #fafafa;
    border-left: 4px solid #e63946;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.blog-title {
    margin-bottom: 10px;
}

.blog-title a {
    xcolor: #2c5530;
		color: #325971;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    xcolor: #1a3d1e;
		color: #e63946;
    text-decoration: underline;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.blog-date {
    font-weight: bold;
    xcolor: #2c5530;
		color: #325971;

}

.blog-location {
    font-style: italic;
		color: #325971;
}

.blog-excerpt {
    color: #325971;
    line-height: 1.5;
    font-size: 1em;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #e0e0e0;
    margin-top: 40px;
    background-color: #f8f9fa;
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .site-title {
        font-size: 2.2em;
    }
    
    .header {
        padding: 30px 0;
    }
    
    .mascot {
        width: 60px;
        height: 60px;
    }
    
    .blog-item {
        padding: 20px 15px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.8em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .blog-title a {
        font-size: 1.2em;
    }
}