@import url("_fonts.css");

/* Reset and Bases */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Archivo Narrow', sans-serif;
    box-sizing: border-box;
    height: 100%; /* Critical for vertically centered layouts */
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Common Utilities */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* --- Shared Components --- */

/* Buttons */
.btn-primary, .saveBtn {
    background-color: #000139;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "Archivo Narrow", sans-serif;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover, .saveBtn:hover {
    background-color: #084660;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #a9dcfa;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #fed858;
}


/* Inputs */
.input-rounded {
    background-color: #fff0da; /* Classic Podzen beige */
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1em;
    font-family: "Archivo Narrow", sans-serif;
    outline: none;
    width: 100%;
}

.input-rounded:focus {
    box-shadow: 0 0 0 3px rgba(0, 1, 56, 0.1);
}

/* Containers */
.podzen-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
