/* --------------------
   GENERAL
--------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(
        #ffffff 0%,
        #ffffff 30%,
        #eef6fb 30%,
        #e8f2fa 100%
    );
    color: #333;
    line-height: 1.8;
}

/* --------------------
   HERO
--------------------- */

.hero {
    background:
    linear-gradient(
        rgba(255,255,255,.42),
        rgba(255,255,255,.58)
    ),
    url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 80px;
}

.logo {
    width: 700px;
    max-width: 90%;
    margin-bottom: 25px;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    color: #f4ad1d;
    margin-bottom: 15px;
}

.tagline {
    color: #5b2a86;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.intro {
    max-width: 760px;
    font-size: 1.2rem;
    margin-bottom: 35px;
}

/* --------------------
   BUTTON
--------------------- */

.button {
    display: inline-block;

    background: #5b2a86;
    color: white;

    text-decoration: none;

    padding: 15px 32px;

    border-radius: 40px;

    font-weight: bold;

    transition: .3s;
}

.button:hover {
    background: #f4ad1d;
    color: #333;
}

/* --------------------
   SECTIONS
--------------------- */

section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 25px;
}

h2 {
    text-align: center;

    font-family: "Poppins", sans-serif;

    color: #5b2a86;

    font-size: 2.2rem;

    margin-bottom: 35px;
}

section p {
    font-size: 1.1rem;
}

/* --------------------
   CARDS
--------------------- */

.cards {

    display: grid;

    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));

    gap: 30px;

    margin-top: 45px;

}

.card {

    background: white;

    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: .3s;

}

.card:hover {

    transform: translateY(-6px);

}

.card h3 {

    color: #5b2a86;

    margin-bottom: 15px;

}

/* --------------------
   CONTACT
--------------------- */

#contact {

    text-align: center;

}

#contact a {

    color: #5b2a86;

    text-decoration: none;

    font-weight: bold;

}

#contact a:hover {

    color: #f4ad1d;

}

/* --------------------
   FOOTER
--------------------- */

footer {

    background: #5b2a86;

    color: white;

    text-align: center;

    padding: 35px;

}

footer p {

    margin: 8px 0;

}

/* --------------------
   MOBILE
--------------------- */

@media (max-width:768px){

    h1{
        font-size:2.2rem;
    }

    .tagline{
        font-size:1.1rem;
    }

    .intro{
        font-size:1rem;
    }

}
.countryside {
    margin-top: 80px;
    line-height: 0;
}

.countryside img {
    display: block;
    width: 100%;
    height: auto;
}