/*
.hero-content {
    border: 1px solid white;
}
debuggin purposes*/

/* first section*/

@font-face {
    font-family: Roboto-light;
    src: url(roboto-light.ttf);
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
}

.header {
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 90vw;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.hero {
    display: flex;
    justify-content: center;
    margin: 80px 10px; 
    gap: 42px;
    flex-wrap: wrap;
}

.first-section {
    background-color: #5e2c40;
}

a {
    text-decoration: none;
    color: #f9faf8;
}

.hero-title {
    font-size: 48px;
    font-weight: bolder;
    color: #f9faf8;
    padding-bottom: 16px;
}

.header-links a:hover {
    color: silver;
}

.hero-text,
.header-links {
    color: #e5e7eb;
    font-size: 18px;
}

.header-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-image {
    max-height: 400px;
    border-radius: 4px;
    border: 2px solid silver;
    flex-shrink: 1;
    min-width: 260px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    min-width: 300px;
    gap: 16px;
}

.sign-up {
    color: #f9faf8;
    background-color: #443C68;
    font-size: 20px;
    font-weight: 500;
    border: none;
    padding: 8px 28px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
    cursor: pointer;
}

.sign-up:hover {
    background-color: #f9faf8;
    color: #443C68;
    font-weight: bold;
}

.header-logo {
    height: 80px;
    width: auto;
}

/*second section*/

.second-section {
    background-color:  #a0496c;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #131922;
    padding: 20px ;
}

.info-header {
    font-size: 36px;
    font-weight: bold;
    padding: 40px;
}

.info-items {
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
    padding-bottom: 90px;
    justify-content: center;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}

.item img {
    width: 250px;
    height: auto;
    border-radius: 5px;
    border: 4px solid white;
}

.item h4 {
    margin-bottom: 0;
}

.item p {
    max-width: 250px;
    text-align: center;
    margin: 8px 0;
}

/* third section */

.third-section {
    background-color: #ddb2d7;
    display: flex;
    justify-content: center;
    color: #131922;
}

.quote {
    font-family: Roboto-light, sans-serif;
    font-size: 40px;
    font-style: italic;
}

.quote-container {
    display: flex;
    flex-direction: column;
    margin: 60px;
}

.author {
    font-size: 22px;
    align-self: flex-end;
    margin: 0;
    font-weight: bold;
}

/* fourth section*/

.fourth-section {
    background-color: #a0496c;
    display: flex;
    justify-content: center;
}

.call-action {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #443C68;
    margin: 90px 20px;
    padding: 40px 20px;
    width: 1200px;
    border-radius: 10px;
    color: #f9faf8;
}

.button-container {
    display: flex;
    align-items: center;
}

.call-button {
    box-shadow: none;
    
    font-weight: bold;
    font-size: 22px;
    border: 2px solid #f9faf8;
}

.call-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-title {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

.call-sentence {
    margin: 0;
    font-size: 18px;
}

/* footer */

footer {
    background-color: #5e2c40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 5px;
}

footer p {
    margin: 0;
    color: #f9faf8;
}