/* Modern, Premium Styles for Chan-Kah Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #757F64;
    --primary-hover: #5d6650;
    --bg-color: #fdfdfc;
    --text-color: #2d3436;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(117, 127, 100, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Background elements for depth */
body::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(117, 127, 100, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

body::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(117, 127, 100, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 280px;
    height: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 25px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(117, 127, 100, 0.2);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 127, 100, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.footer {
    position: absolute;
    bottom: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.footer a:hover {
    opacity: 1;
    border-bottom: 1px solid var(--primary-color);
}

/* Icon style if using icons later */
.btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
    }
    
    .logo {
        max-width: 220px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
}
