
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('amalthea/assets/fonts/GFS_Bodoni/gfs-bodoni.css');

:root {
    --manrope-font: "Manrope", arial;
    --inter-font: "Inter", arial;
    --oktah-font: "Okta Neue", arial;
    --gfs-bodoni-font: 'GFS Bodoni', arial;
}

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

body {
    height: 100%;
    font-family: var(--manrope-font);
    background: #1f1f1f;
}

.hero {
    padding: 50px 50px 0px;
    min-height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 50px;
    background-image: url(amalthea/assets/backgrounds/pink-wide.png);
}

.hero h2 {
    font-size: calc(24px + 1vw);
    text-align: center;
    font-weight: bold;
}

.hero-logo {
    max-width: 70%;
    max-height: 60vh;
}

.hero-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--gfs-bodoni-font);
    color: #364466;
    gap: 20px;
}

.flower {
    max-height: 100px;
}

.home-hero img {
    width: 100%;
    max-height: 100vh;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-about {
    color: white;
    text-align: center;
    font-size: calc(14px + 0.5vw);
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home-about img {
    max-width: 300px;
}

.tiktok-talks {
    padding: 5% 10%;
    color: white;
    text-align: center;
}

.tiktok-talks h2 {
    font-size: calc(20px + 1vw);
}

.tiktok-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.team-home img {
    width: 80%;
    max-height: 60vh;
    object-fit: contain;
}

.team-home, .events-history {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-home {
    align-items: center;
    margin-bottom: 50px;
}

.team-home h2,.events-history h2 {
    color: #eb0028;
    text-align: center;
    font-size: calc(20px + 1vw);
}

.team-home p, .events-history p {
    color: white;
    text-align: center;
    font-size: calc(14px + 0.5vw);
    padding: 0 5%;
}

.tiles__row {
    
	display: flex;
    overflow-x: scroll;
    user-select: none;
    
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer/Edge */

}

.tiles__row img {
    height: 30vh;
}

.custom-btn {
    color: white;
    text-align: center;
    font-size: calc(14px + 1vw);
    text-decoration: none;
    padding: 10px 15px;
    border: 2px white solid;
    align-self: center;
}

.custom-btn:hover {
    color: #eb0028;
    background-color: white;
    font-weight: 600;
}