@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Colorscheme */
:root {
 --primary-color: #1f2937;
 --secondary-color: #e5e7eb;
 --tertiary-color: #f9faf8;
}

/* CSS Reset */
html {
   box-sizing: border-box;
   scroll-behavior: smooth;
}

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

ul {
   list-style-type: none;
}

a {
   text-decoration: none;
   color: blue;
}

/* Global */
body {
   min-height: 100vh;
   font-family: Roboto, sans-serif;
}

a {
   color: #70aeff;
}

p {
   font-size: 18px;
}

footer {
   background-color: var(--primary-color);
   color: var(--tertiary-color);
   text-align: center;
   padding: 2.5rem;
}


/* Utilities */
.w-100 {
   width: 100%;
}

.w-90 {
   width: 90%;
}

.w-80 {
   width: 80%;
}

.d-flex {
   display: flex;
}

.jf-center {
   justify-content: center;
}

.al-center {
   align-items: center;
}

.als-center {
   align-self: center;
}

.flex-jf-center {
   display: flex;
   justify-content: center;
}

.text-center {
   text-align: center;
}

/* General Containers */
.section-container {
   padding-top: 4rem;
   padding-bottom: 10rem;
}

.content-container {
   flex-direction: column;
   gap: 5rem;
}

/* Header Section */
#hero {
   background-color: var(--primary-color);
   padding-top: 1rem;
   min-height: 100vh;
}

.navbar {
   margin-bottom: 16px;
}

.navbar > ul {
   justify-content: space-between;
   align-items: center;
}

.nav-logo a {
   font-size: 24px;
   color: var(--tertiary-color);
   font-weight: 900;
   width: 230px;
   transform: translateX(-32px);
}

.nav-links {
   transform: translateX(-40px);
}

.nav-links li {
   margin: 12px;
}

.nav-links a {
   padding: 10px;
}

.nav-links a,
.hero-text-container p {
   color: var(--secondary-color);
}

.hero-content-container {
   gap: 3rem;
}

.hero-text-container {
   flex: 1;
   flex-direction: column;
   gap: 10px;
}

.hero-text-container > h1 {
   font-size: 48px;
   font-weight: 900;
   color: var(--tertiary-color);
}

.cta-btn {
   background-color: #3882f6;
   color: var(--tertiary-color);
   font-size: 1rem;
   font-weight: 900;
   border: none;
   border-radius: 8px;
   padding: 10px 15px;
   margin-top: 8px;
   width: 20%;
   min-width: fit-content;
}

.cta-btn:hover {
   cursor: pointer;
}

.hero-img-container {
   flex: 2;
   max-width: 700px;
}

.hero-img-container > img {
   width: 100%;
   height: 100%;
   transform: translateY(-45px);
}

/* Stages Section */
#stages h2 {
   font-size: 36px;
   font-weight: 900;
   color: var(--primary-color);
}

.stages-container {
   justify-content: space-between;
}

.stages-article {
   max-width: 200px;
   width: 100%;
   margin: 0 1.5rem;
}

#stages p {
   color: #1f2937c4;
   margin-top: 10px;
}

/* Feedbacks Section */
#feedbacks {
   background-color: var(--secondary-color);
}

#feedbacks.section-container {
   padding-top: 10rem;
}

#feedbacks p {
   font-size: 36px;
   font-weight: 300;
   color: var(--primary-color);
}

#feedbacks p:last-child {
   text-align: right;
   margin-top: 2rem;
   font-size: 24px;
   font-weight: 700;
}

/* Join Section */
#join.section-container {
   padding-top: 6rem;
}

#join .content-container {
   background-color: #3882f6;
   padding: 3.5rem 0;
   border-radius: 10px;
}

#join .content-container > div {
   justify-content: space-between;
}

#join .cta-btn {
   margin-top: 0;
   border: 2px solid var(--tertiary-color);
}

.join-text-container {
   color: var(--tertiary-color);
}

.join-text-container p {
   margin-top: 2px;
}