﻿/* =====================================
   SITE.CSS — File tổng hợp toàn bộ style
   ===================================== */


/* --- 1. Thiết lập nền tảng, font, màu --- */
@import url('base.css');
@import url('layout.css');
@import url('component.css');
/* --- 2. Các style global mở rộng (nếu cần) --- */
@import url('home.css');
@import url('document.css');
@import url('delegates.css');
@import url('information.css');
@import url('seating.css');
@import url('subparty.css');
@import url('results.css');
@import url('achievements.css');
/* Giới hạn chiều rộng nội dung chính */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Liên kết mặc định */
a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

    a:hover {
        color: var(--color-neutral3);
    }

/* Tiện ích nhanh */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Responsive base (có thể mở rộng thêm) */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}
