:root {
    --primary: #C04327;
    --primary-dark: #A0361E;
    --accent: #8C7C61;
    --bg-dark: #1A1819;
    --bg-light: #EBDCC2;
    --text-main: #1A1819;
    --text-light: #8C7C61;
    --white: #F4EAD8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(rgba(0,0,0,0.06) 20%, transparent 20%),
        radial-gradient(rgba(0,0,0,0.06) 20%, transparent 20%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}

/* Global mud overlay */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle, transparent 40%, rgba(75, 54, 33, 0.08) 75%, rgba(60, 40, 20, 0.25) 100%);
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Navigation */
.navbar {
    background: var(--white);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Front Page Layout */
.front-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.front-left {
    flex: 1;
    background: linear-gradient(135deg, #1e332a 0%, #0c1410 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: white;
}

.front-left h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.front-left p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

.front-right {
    flex: 0.8;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.login-card h2 {
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.btn-login {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Feature Menu */
.menu-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 5%;
    flex-wrap: wrap;
}

.menu-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom: 5px solid var(--primary);
}

.menu-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Navigation for Foto Bareng */
.nav-back-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-back {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.btn-back:hover {
    color: var(--primary);
}

/* Footer Logout */
.footer-logout {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.btn-logout {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: #eee;
    color: var(--primary);
}

/* Animations removed */
