:root {
    --exploring-orange: #d96500;
    --exploring-orange-dark: #b85500;
    --inspiring-purple: #7041bb;
    --inspiring-green: #19be5a;
    --footer-dark: #111111;
    --text-light: #ffffff;
    --text-dark: #333333;
}

::selection {
    background-color: #22223377;
    color: white;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, .nav-links a, .btn {
    font-family: 'Oswald', cursive;
    letter-spacing: 1.5px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #F1F1F1;
}

.logo {
    background: url("images/logo_icc.png");
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.hero-section {
    width: 90%;
    margin: auto;
    margin-top: 200px;
    display: flex;
    justify-content: center;

    flex-direction: column;
    align-items: center;
}

.hero-section img {
    width: -webkit-fill-available;
    height: fit-content;
}

.scrolled .fh5co-nav:before {
    background-color: #F1F1F1;
}

.scrolled .fh5co-nav img {
    display: inline;
    width: 250px !important;
}

#fh5co-header {
    background-color: #F1F1F1;
}

.fh5co-nav img {
    display: none;
}

.fh5co-nav ul li a, .scrolled .fh5co-nav a {
    color: #223 !important;
}

.fh5co-nav ul li:nth-child(1):hover a, .scrolled .fh5co-nav li:nth-child(1):hover a {
    color: var(--exploring-orange) !important;
}

.fh5co-nav ul li:nth-child(2):hover a, .scrolled .fh5co-nav li:nth-child(2):hover a {
    color: var(--inspiring-green) !important;
}

.hero {
    padding: 150px 20px 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.split-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -8vw;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .split-wrapper {
        flex-direction: row;
    }

    .hero-section {
        width: 90%;
        margin: auto;
        margin-top: 200px;
        display: flex;
        justify-content: center;

        flex-direction: row;
        align-items: flex-start;
    }
}

.col {
    flex: 1;
    padding: 15vw 10% 8vw 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.col.exploring {
    background-color: var(--exploring-orange);
}

.col.inspiring {
    background-color: var(--inspiring-green);
}

.col h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.col.inspiring h2 {
    color: #F1F1F1;
}

.col p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 400px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-exploring {
    background-color: var(--text-light);
    color: var(--exploring-orange);
}

.btn-exploring:hover {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
    box-shadow: none;
}

.btn-inspiring {
    background-color: #F1F1F1;
    color: var(--inspiring-green);
}

.btn-inspiring:hover {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
    box-shadow: none;
}

footer {
    background-color: var(--footer-dark);
    color: #aaaaaa;
    padding: 60px 5vw 30px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

/* Because it needed that extra umhf */
.umhf-title {
    text-shadow: 4px 4px 20px #223;
    font-weight: 500;
}

.umhf-title ~ p {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: normal;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li { margin-bottom: 5px; }

.badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hex-badge {
    width: 60px;
    height: 65px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
    font-weight: bold;
    color: var(--footer-dark);
    text-align: center;
    padding: 5px;
    line-height: 1.1;
}

.hex-badge.green { border: 2px solid var(--inspiring-green); background: #eee; }
.hex-badge.orange { border: 2px solid var(--exploring-orange); background: #eee; }
.hex-badge.blue { border: 2px solid #3498db; background: #eee; }

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.social-icons a {
    color: #aaaaaa;
    font-size: 1.2rem;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .col { padding: 25vw 5% 15vw 5%; }
    .nav-links { display: none; }
}