/*
=================================================================
|                                                               |
|                      STARTER PAGE STYLE                       |
|                                                               |
=================================================================
*/

/* --- Font Definitions --- */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'TelkomselBatikSans';
    src: url('/fonts/telkomsel/TelkomselBatikSans-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'TelkomselBatikSans';
    src: url('/fonts/telkomsel/TelkomselBatikSans-Bold.ttf') format('truetype');
    font-weight: bold;
}

/* --- Root Variables --- */
:root {
    --tc-red: #ff0025;
    --tc-red-dark: #680024;
    --tc-navy: #001a41;
    --tc-navy-dark: #000f27;
    --tc-orange: #fca12b;
    --tc-white: #ffffff;
    --tc-gray: #dadada;
    --tc-text: #333;
    --tc-shadow: rgba(0, 0, 0, 0.2);

    --primary-color: var(--tc-navy);
    --primary-dark: var(--tc-navy-dark);
    --secondary-color: var(--tc-text);
    --accent-color: var(--tc-orange);

    --background-light: #f5f5f5;
    --background-card: var(--tc-white);
    --text-dark: var(--tc-text);
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition-speed: 0.25s ease-in-out;

    --radius-md: 12px;
    --radius-lg: 20px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff0025, #680024, #001a41);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.starter-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.starter-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 350px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h2 {
    color: #001a41;
    margin-bottom: 10px;
}

p {
    color: #444;
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.btn-login {
    background: #ff0025;
    color: #fff;
}

.btn-secondary {
    background: #fca12b;
    color: #fff;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 768px) {
    .starter-card {
        width: 80%;
        padding: 30px 20px;
    }

    .logo {
        width: 120px;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px;
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 15px;
        min-height: 100vh;
        justify-content: flex-start;
        align-items: center;
    }

    .starter-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }

    .starter-card {
        width: 100%;
        padding: 25px 15px;
        border-radius: 16px;
    }

    .logo {
        width: 100px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .btn-group {
        gap: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px;
        border-radius: 6px;
    }
}