/* 
    Induwara Care - Premium Style Sheet
    Standard: CSS3, Modern UI/UX
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1b4d3e;
    --accent-color: #2ecc71;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --hover-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(27, 77, 62, 0.7), rgba(27, 77, 62, 0.9)), url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.main-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo-container img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    mix-blend-mode: multiply;
}

h1 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.button-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color) 0%, #27ae60 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--hover-transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
    background: linear-gradient(135deg, #27ae60 0%, var(--primary-color) 100%);
    border-color: var(--accent-color);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
}

.footer-text {
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .main-container {
        padding: 2rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
