/* --- CSS VARIABLES (Dựa trên theme Comtreo25) --- */
:root {
    --primary-green: #38761D;
    --secondary-orange: #FF9900;
    --dark-green: #1F4E34;
    --light-bg-yellow: #f7f3e8;
    --text-color: #333;
}

/* Base Layout */
.public-layout-wrapper {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* QUAN TRỌNG: Chỉ giữ lại flex-grow để nội dung chiếm đủ không gian. */
/* Xóa margin: 0 auto; và padding-top: 100px; để cho phép Trang chủ full-width. */
.public-content-area {
    background-color: white;
    flex-grow: 1;
/*    padding-top: 100px; /* Thêm 100px padding để bù lại Header (khoảng 80px) */*/
}
/* ---------------------------------------------------------------------- */
/* --- HEADER CHUNG (Class: .ct25-header) ----------------------------- */
/* ---------------------------------------------------------------------- */
.ct25-header {
    background-color: #b7caac;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); 
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* Ẩn nút Hamburger trên PC */
.ct25-header .menu-toggle {
    display: none; 
}
/* Trên PC, nav wrapper hiện ra (dùng flex) */
.ct25-header .mobile-nav-wrapper {
    display: flex;
    align-items: center;
    width: auto;
}
.ct25-header .ct25-nav-links {
    display: flex; /* Hiện các liên kết trên PC */
    flex-direction: row;
}

/* ======================================================= */
/* --- MEDIA QUERIES (Responsive - Dưới 900px) ----------- */
/* ======================================================= */
@media (max-width: 900px) {
    /* HEADER Responsive */
    .ct25-header {
        /* Chuyển về chế độ 2 bên: Logo bên trái, Hamburger bên phải */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    /* 1. HIỂN THỊ NÚT HAMBURGER */
    .ct25-header .menu-toggle {
        display: block; /* Hiện nút Hamburger trên Mobile */
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        color: var(--dark-green);
    }
    .ct25-header .menu-toggle svg {
        width: 30px;
        height: 30px;
    }

    /* 2. MENU SỔ XUỐNG (Drawer/Wrapper) */
    .ct25-header .mobile-nav-wrapper {
        display: none; /* Mặc định ẩn trên Mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Độ cao của Header */
        left: 0;
        background-color: white;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 999;
    }
    
    /* 3. STYLE CHO CÁC LIÊN KẾT BÊN TRONG */
    .ct25-header .ct25-nav-links {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }
    .ct25-header .ct25-nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        margin-left: 0;
        text-align: left;
    }
    .ct25-header .ct25-nav-links a:last-child {
        border-bottom: none;
    }

    /* 4. NÚT AUTH BÊN DƯỚI */
    .ct25-auth-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch; /* Kéo dài nút ra */
    }
    .ct25-auth-buttons .btn-primary,
    .ct25-auth-buttons .nav-item,
    .ct25-auth-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        margin: 5px 0 !important;
        padding: 10px 20px;
    }

    /* Thêm class để hiển thị menu bằng JS */
    .ct25-header.menu-active .mobile-nav-wrapper {
        display: flex;
    }
}
.ct25-header .ct25-logo { 
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green); 
}
.ct25-header .ct25-logo img {
    height: 40px; 
    margin-right: 10px;
}
.ct25-header .ct25-logo span {
    color: var(--dark-green);
}

/* Các liên kết trong navigation */
.ct25-nav-links a {
    text-decoration: none;
    color: #555;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.2s;
}
.ct25-nav-links a:hover {
    color: var(--secondary-orange);
}

/* Style cho nút Auth trong Header */
.ct25-auth-buttons .btn-primary {
    /* Nút chính trong Header (VD: Quyên Góp) */
    background-color: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
    display: inline-block;
    transition: background-color 0.2s;
}
.ct25-auth-buttons .btn-primary:hover {
    background-color: var(--dark-green);
}
.ct25-auth-buttons .nav-item {
    /* Nút phụ trong Header (VD: Đăng Nhập) */
    text-decoration: none;
    color: var(--primary-green);
    font-weight: bold;
    transition: color 0.2s;
}
.ct25-auth-buttons .nav-item:hover {
    color: var(--secondary-orange);
}

/* ---------------------------------------------------------------------- */
/* --- FOOTER CHUNG (Class: .ct25-footer) ----------------------------- */
/* ---------------------------------------------------------------------- */
.ct25-footer {
    background-color: var(--dark-green);
    color: white;
    padding: 40px 80px 20px;
    border-top: 5px solid var(--primary-green); 
    margin-top: auto; 
}
.ct25-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ct25-footer-section {
    width: 20%;
    min-width: 180px;
    margin-bottom: 20px;
}

.ct25-footer-section h4 {
    color: var(--secondary-orange);
    margin-bottom: 15px;
    font-size: 18px;
}
.ct25-footer-section p, .ct25-footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    line-height: 1.8;
}
.ct25-footer-section a:hover {
    color: white;
    text-decoration: underline;
}
.ct25-social-icons a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-size: 20px;
    opacity: 0.8;
}
.ct25-social-icons a:hover {
    opacity: 1;
}
.ct25-footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-top: 15px;
    color: rgba(255, 255, 255, 0.6);
}
.ct25-footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
}
.ct25-footer-bottom a:hover {
    text-decoration: underline;
}

.container {
    padding: 40px 10px;
}

/* ---------------------------------------------------------------------- */
/* --- CÁC STYLE CĂN GIỮA FORM (Login/Register/Forgot) ------------------- */
/* ---------------------------------------------------------------------- */
.auth-center-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 40px 20px;
    min-height: calc(100vh - 120px); 
    background-color: var(--light-bg-yellow, #f7f3e8); 
}

.auth-card {
    width: 100%;
    max-width: 420px; 
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.auth-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 8px;
}
.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* 1. Nút chính trong Form */
.primary-button-style {
    background-color: var(--primary-green); 
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.primary-button-style:hover {
    background-color: var(--dark-green);
}

/* 2. Nút Đăng nhập xã hội */
.social-button {
    transition: background-color 0.2s, color 0.2s;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none; /* Dùng cho thẻ <a> */
}

/* THÊM MÀU CHO NÚT FACEBOOK */
.facebook-button {
    background-color: #4267B2; 
    color: white;
    border: 1px solid #4267B2;
}
.facebook-button:hover {
    background-color: #3b5a99;
}

/* THÊM MÀU CHO NÚT GOOGLE */
.google-button {
    background-color: white;
    color: #444;
    border-color: #ddd;
}
.google-button:hover {
    background-color: #f7f7f7;
}

/* Style cho Input Field (Giả định bạn đã dùng input-field-style trong Blade) */
.input-field-style {
    border: 1px solid #ddd; 
    border-radius: 0.5rem; /* 8px */
    padding: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field-style:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 118, 29, 0.1);
}

/* ======================================================= */
/* --- MEDIA QUERIES (Responsive - Dưới 900px) ----------- */
/* ======================================================= */
@media (max-width: 900px) {
    /* HEADER Responsive */
    .ct25-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .ct25-nav-links {
        margin-top: 10px;
        flex-wrap: wrap;
    }
    .ct25-nav-links a {
        margin-left: 0;
        margin-right: 15px;
    }
    .ct25-auth-buttons {
        margin-top: 10px;
        display: flex;
        width: 100%;
    }
    .ct25-auth-buttons .btn-primary, .ct25-auth-buttons .nav-item {
        margin: 5px 5px 5px 0 !important;
    }

    /* FOOTER Responsive */
    .ct25-footer {
        padding: 30px 20px 15px;
    }
    .ct25-footer-content {
        flex-direction: column;
    }
    .ct25-footer-section {
        width: 100%;
        min-width: unset;
    }
    
    /* Responsive cho Form */
    .auth-center-container {
        align-items: flex-start;
        min-height: auto;
    }
}

.cta-bottom-section {
    padding: 10px 0 0 0 !important;
}
#floating-banner {
    /* Đặt màu nền chính, có thể dùng biến hoặc màu hex */
    background-color: #ff6347; /* Ví dụ: Màu đỏ cam */
    /* Đảm bảo chiều rộng tối đa */
    max-width: 250px;
}

/* Ẩn trên màn hình siêu nhỏ nếu cần */
@media (max-width: 640px) {
    #floating-banner {
        /* Điều chỉnh vị trí trên mobile, ví dụ: về giữa dưới */
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

