/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Background */
body {
    background: #f7f3ee; /* น้ำตาลอ่อนบางๆ */
    color: #5d4037; /* น้ำตาลเข้ม */
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Title (GrandHome Place) */
.brand-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;  /* ขนาดใหญ่ขึ้น */
    font-weight: 400;
    color: #5d4037;
    margin-bottom: 20px;
}

/* Menu List */
.menu {
    list-style: none;
    padding: 0;
}

/* Menu Links - Underline Animation */
.menu a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    color: #5d4037;
    display: inline-block;
    margin: 12px 0;
    position: relative;
    transition: all 0.3s ease;
}

/* เส้นใต้แบบ Animation */
.menu a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #5d4037;
    transition: width 0.3s ease;
}

/* เส้นใต้จะค่อยๆ ปรากฏเมื่อเมาส์ชี้ */
.menu a:hover::after {
    width: 100%;
}
