/* ---------- fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

/* ---------- master ---------- */
:root {
    --white: #f5f5f5;
    --black: #161616;
    --light-grey: #eeeeee;

    --light-primary: #d2dfd8;
    --primary: #8aa998;
    --dark-primary: #5a7566;

    --secondary: 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* border: 1px var(--black) solid; */
}

body {
    font-family: 'Poppins';
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: var(--black);
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 1rem;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    transition: 0.5s;
}

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

input {
    font-family: 'Poppins';
    font-size: 1rem;
    color: var(--black);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

textarea {
    font-family: 'Poppins';
    font-size: 1rem;
    color: var(--black);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
    height: 10rem;
    resize: none;
}

select {
    font-family: 'Poppins';
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

input[type="file"] {
    font-family: "Poppins";
    color: var(--white);
    width: 100%;
}

input[type="file"]::file-selector-button {
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 1rem;
    color: var(--primary);
    background: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    transition: 0.5s;
}

input[type="file"]::file-selector-button:hover {
    transform: translateY(-2px);
}


/* ---------- text ---------- */
h1 {
    font-size: 5rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 5.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 3rem;
}

h3 {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 2rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
}


/* ---------- tools ---------- */
.margin {
    margin: 0 12rem;
}

.padding {
    padding: 0 12rem;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.flex input {
    width: unset;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
}

.logo img {
    width: 1rem;
}

.small_text {
    font-size: 0.85rem;
}

.signature {
    font-family: 'Rouge Script', cursive;
    font-size: 1.5rem;
}

.line_break {
    background: var(--primary);
    border-radius: 0.5rem;
    width: 25%;
    height: 0.2rem;
}

.box_shadow {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.box_shadow:hover {
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

#bouncing {
    display: inline-block;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


/* ---------- chat ---------- */
.chat {
    cursor: pointer;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    background: var(--primary);
    border-radius: 0.5rem;
    padding: 1rem;
}

.chat img {
    width: 2rem;
}