/* ===== 全域 ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang TC",
                 "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(120deg, #fdeff9, #ecf5ff);
    color: #444;
}

/* ===== 登入畫面 ===== */
.login-box {
    max-width: 420px;
    margin: 80px auto;
    padding: 32px 28px;
    background: white;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.login-box h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 28px;
}

.login-box input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
}

.login-box button {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    border: none;
    border-radius: 14px;
    background: #ff8fab;
    color: white;
    cursor: pointer;
}

.login-box button:active {
    transform: scale(0.98);
}

.error {
    color: #e63946;
    margin-bottom: 12px;
}

/* ===== Header ===== */
header {
    padding: env(safe-area-inset-top) 20px 24px;
    text-align: center;
}

header h1 {
    font-size: 26px;
    margin-bottom: 8px;
}

header p {
    font-size: 14px;
    color: #666;
}

.logout {
    display: inline-block;
    margin-top: 14px;
    color: #ff7096;
    text-decoration: none;
    font-size: 14px;
}

/* ===== 相簿列表 ===== */
.album {
    max-width: 720px;
    margin: auto;
    padding: 16px;
}

.entry {
    background: white;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.entry .date {
    font-weight: 600;
    font-size: 15px;
}

.entry .place {
    margin: 6px 0 14px;
    font-size: 15px;
    color: #777;
}

.entry a {
    display: block;
    text-align: center;
    padding: 14px;
    background: #ff8fab;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
}

.entry a:active {
    background: #ff7096;
    transform: scale(0.98);
}

/* ===== 桌機優化 ===== */
@media (min-width: 768px) {
    .login-box {
        margin-top: 120px;
    }

    header h1 {
        font-size: 30px;
    }

    .entry {
        padding: 22px 26px;
    }
}
