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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #4d4d4d;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.logo {
    width: 80px;
    height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo:hover {
    transform: scale(1.08) translateY(-2px);
}

/* Burger Menu */
.burger-menu {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
}

.burger-toggle {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.burger-toggle:hover {
    border-color: #FF4D00;
    transform: translateY(-2px);
}

.burger-toggle span {
    width: 20px;
    height: 2px;
    background: #4d4d4d;
    transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.burger-dropdown {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.burger-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.burger-link {
    display: block;
    padding: 12px 20px;
    color: #4d4d4d;
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.burger-link:hover {
    background: rgba(255, 77, 0, 0.1);
    color: #FF4D00;
}

.burger-link.active {
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    color: #ffffff;
}

.burger-link.admin {
    background: linear-gradient(135deg, #4d4d4d 0%, #666666 100%);
    color: #ffffff;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF4D00, #f94000);
    border-radius: 2px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FF4D00;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4d4d4d;
    line-height: 1.3;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Blog Post Card */
.blog-post {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.post-link:hover {
    text-decoration: none;
}

.blog-post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}

.blog-post-content {
    padding: 30px;
    text-align: left;
}

.blog-post-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4d4d4d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888888;
}

.blog-post-date {
    font-weight: 500;
}

.blog-post-category {
    background: rgba(255, 77, 0, 0.1);
    color: #FF4D00;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-bottom: 60px;
}

.load-more-btn {
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.load-more-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    color: #888888;
    font-size: 0.9rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #888888;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #4d4d4d;
}

.empty-state-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-section {
        gap: 12px;
    }
    
    .nav-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1.2rem;
    }
}
