@font-face {
    font-family: 'GrizeSportsDemo';
    src: url('../fonts/GrizeSportsDemoRegular-0v9BX.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TakeRiskDemo';
    src: url('../fonts/Take-Risk.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ghore';
    src: url('../fonts/Ghore.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometra';
    src: url('../fonts/Geometra-BF69e84c46d4fb4.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blackbold';
    src: url('../fonts/Blackbold.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.5;
    background: linear-gradient(135deg, #44f3ff, #62ffa3);

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

section {
    flex: 1;
}

/* HEADER */
header {
    position: relative;
    background: black;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#heading {
    font-family: 'GrizeSportsDemo', sans-serif;
    font-size: 3rem;
    margin: 0;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {   
    width: 200px;
    height: 200px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
    align-items: center;
}

.navbar ul li a {
    font-family: 'GrizeSportsDemo', sans-serif;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #42ffd6;
}

.login-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    cursor: pointer;
}

/* REMOVE OLD BOX SYSTEM (DELETED ON PURPOSE) */

/* NEW LAYOUT FOR CARDS */
.plans {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 40px;
}

/* FOOTER */
footer {
    height: 100px;
    background-color: dimgrey;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    font-size: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* TEXT COLORS */
.skill {
    color: #62ffa4;
}

.share {
    color: white;
}