﻿/*Phần Register*/
/*--------------------------*/
.Register {
    width: 100%;
    max-width: 700px;
    margin: 70px auto;
    padding: 40px;
    border: 5px solid rgb(0, 0, 0);
    border-radius: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: rgb(90, 87, 87);
    background-image: url(https://assets.simon.com/tenantlogos/33375.png);
    background-size: 100px 90px;
    background-repeat: no-repeat;
    background-position: 20px 20px;
    box-sizing: border-box;
    background-color: white; /* thêm nền trắng để nổi bật */
}

h2 {
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
}

label {
    font-size: 15px;
    display: block;
    margin-top: 15px;
}

input,
select {
    width: 100%;
    height: 30px;
    border-radius: 5px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    box-sizing: border-box;
}

.required {
    color: red;
    font-weight: bolder;
}

table {
    width: 100%;
    border-spacing: 20px;
}

.Gender input {
    width: auto;
    height: auto;
    margin-right: 5px;
}

button {
    width: 100%;
    height: 50px;
    font-weight: bolder;
    font-size: 100%;
    background: rgb(0, 0, 0);
    color: whitesmoke;
    border: none;
    border-radius: 5px;
    margin-top: 30px;
    cursor: pointer;
}

    button:hover {
        background-color: grey;
    }
/*--------------------------------------*/

/*Phần Login */
:root {
    --main-black: #1a1a1a;
    --main-gold: #c19a6b;
    --background-light: #fdfdfd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-light);
    color: var(--main-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px;
}

/* Logo container */
.logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Logo image (Tiger Sugar) */
    .logo-container img {
        max-width: 200px; /* Giới hạn chiều ngang tối đa */
        height: auto; /* Giữ tỷ lệ gốc */
        object-fit: contain; /* Không cắt, giữ toàn bộ logo */
        display: block;
        margin: 0 auto;
        filter: brightness(1.05) contrast(1.1); /* Tăng độ rõ một chút */
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .logo-container img:hover {
            transform: scale(1.03); /* Nhẹ nhàng phóng to khi hover */
            filter: brightness(1.1) contrast(1.2);
        }

/* Responsive (điện thoại, tablet) */
@media screen and (max-width: 480px) {
    .logo-container img {
        max-width: 140px;
    }
}



/* Lỗi này ở đây, trùng với h2 ở trên - đã bị comment hoặc xóa ở các bản trước */
/* h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
} */

.login {
    background-color: #fff;
    border: 1px solid var(--main-black);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .login input {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #333;
        border-radius: 6px;
        background-color: #fafafa;
        color: #000;
        font-size: 15px;
    }

        .login input:focus {
            border-color: var(--main-gold);
            outline: none;
        }

    .login button {
        width: 100%;
        padding: 12px;
        background-color: var(--main-black);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        .login button:hover {
            background-color: rgb(90, 87, 87);
        }

.register-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

    .register-link a {
        color: var(--main-gold);
        text-decoration: none;
        font-weight: bold;
    }

        .register-link a:hover {
            color: #a67c52;
        }
/*--------------------------------------*/


/* Phần Bem Thông báo */
.toast {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-left: 6px solid;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    margin: 10px auto;
    animation: slideIn 0.5s ease, fadeOut 0.5s ease 3.5s forwards;
    position: relative;
    transition: all 0.3s ease;
}

.toast--success {
    border-color: #4CAF50;
}

.toast--error {
    border-color: #f44336;
}

.toast__icon {
    font-size: 24px;
    margin-right: 12px;
}

.toast__body {
    flex: 1;
}

.toast__title {
    font-weight: bold;
    margin: 0 0 4px;
}

.toast__msg {
    margin: 0;
    font-size: 14px;
}

.toast__close {
    font-size: 20px;
    cursor: pointer;
    margin-left: 12px;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}
/*--------------------------------------*/
/*Phần Trang Chủ*/
/* Reset và font mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #111;
    margin: 0;
}

/* ---------- HEADER ---------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

    .logo img {
        display: block;
        height: 100px;
    }

    .logo span {
        font-size: 20px;
        font-weight: bold;
        margin-top: 5px;
    }

/* === SỬA ĐỔI QUAN TRỌNG VỀ STYLE NAV LINKS TẠI ĐÂY === */

/* Style chung cho các link có border và hover (HOME, ABOUT, ĐĂNG XUẤT, LOGIN) */
nav .nav-button {
    margin-left: 30px; /* Khoảng cách giữa các nút */
    text-decoration: none;
    color: #111; /* Màu chữ mặc định (đen) */
    font-weight: 500;
    padding: 8px 15px; /* Khoảng đệm cho nút */
    border: 1px solid #111; /* Border màu đen ban đầu */
    border-radius: 5px; /* Bo góc nhẹ */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Hiệu ứng chuyển động mượt */
    display: inline-block; /* Đảm bảo padding hoạt động */
}

    /* Hiệu ứng hover cho các link này */
    nav .nav-button:hover {
        background-color: black; /* Nền đen khi hover */
        border-color: black; /* Border đen khi hover */
        color: white; /* Chữ trắng khi hover */
    }

/* Style riêng cho link "Quản lý tài khoản" - nền xanh lá, chữ trắng, border đen TỪ ĐẦU */
nav .admin-specific-style {
    background-color: #28a745; /* Màu xanh lá cây ban đầu */
    color: white; /* Chữ trắng ban đầu */
    border-color: #111; /* Đảm bảo border màu đen ban đầu */
}

    /* HIỆU ỨNG HOVER CHO ADMIN-SPECIFIC-STYLE */
    /* Bạn muốn nó chuyển sang nền đen, chữ trắng khi hover, giống nav-button khác */
    nav .admin-specific-style:hover {
        background-color: black; /* Nền đen khi hover */
        border-color: black; /* Border đen khi hover */
        color: white; /* Chữ trắng khi hover */
    }


/* Style cho phần "Chào, [tên người dùng]" - KHÔNG có border, KHÔNG hover */
nav .greeting-text {
    margin-left: 30px; /* Khoảng cách với các link khác */
    color: #111; /* Màu chữ mặc định (đen) */
    font-weight: 500;
    text-decoration: none; /* Bỏ gạch chân */
    cursor: default; /* Không phải con trỏ click */
    padding: 8px 0; /* Có thể điều chỉnh padding để căn chỉnh */
    display: inline-block; /* Để căn chỉnh tốt hơn */
    border: none; /* KHÔNG có border */
    background-color: transparent; /* KHÔNG có nền */
    transition: none; /* KHÔNG có hiệu ứng hover */
}


/* ---------- HERO SECTION ---------- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100vh; /* Giữ nguyên toàn màn hình */
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero-text h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-text p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.5;
    }

.order-button {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 999px; /* BO TRÒN đều */
    background-color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

    .order-button:hover {
        background-color: #000;
        color: #fff;
    }

/* ---------- IMAGE ---------- */
.hero-image {
    flex: 1;
    overflow: hidden;
}

    /* Ảnh nền rõ nét và sáng hơn */
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(1.1) contrast(1.15) saturate(1.1);
        /* ↑ Giải thích:
       brightness(1.1)  → tăng sáng 10%
       contrast(1.15)   → tăng độ tương phản 15%
       saturate(1.1)    → làm màu tươi hơn 10%
    */
        transition: filter 0.3s ease;
    }

        /* Hiệu ứng hover nhẹ nếu muốn làm nổi ảnh */
        .hero-image img:hover {
            filter: brightness(1.2) contrast(1.2) saturate(1.15);
        }


        /* Hiệu ứng hover nhẹ nếu muốn làm nổi ảnh */
        .hero-image img:hover {
            filter: brightness(1.2) contrast(1.2) saturate(1.15);
        }


/* ---------- INFO SECTION ---------- */
.info {
    display: flex;
    justify-content: space-between;
    padding: 60px 40px;
    background-color: #fff;
}

    .info > div {
        width: 48%;
    }

    .info h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .info p {
        font-size: 16px;
        line-height: 1.6;
    }

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    padding: 40px;
    background-color: #000;
    color: #fff;
    width: 100%;
}

.footer-line {
    height: 3px;
    width: 70px;
    background-color: #fff;
    margin: 0 auto 10px auto;
}
