:root {
    /* Colors */
    --primary-color: #D55209; /* orange used in header */
    --secondary-color: #f16529; /* orange used in body */

    /* Typography */
    --font-main: 'Karla', sans-serif;
    --font-size: 18px;
    --font-color: black;
}


@font-face {
    font-family: 'Karla';
    src: url('./Fonts/Karla-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Atkinson';
    src: url('./Fonts/AtkinsonHyperlegible-BoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size);
    color: var(--font-color);

    min-height: 100vh;
}

/* Header sizing */
.header-inner {
    height: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: var(--primary-color);
}

.header-logo img {
    max-height: 80px; /* Fits comfortably inside the 100px header */
    transition: max-height 0.3s ease;
}

.main-content {
    flex: 1; 
    overflow-x: hidden; /* Prevent horizontal scrolling */
    padding: 40px; 
}

#navbarMenu {
    background-color: inherit; 
}

.nav-link.active {
    font-weight: 600;
}

/* Footer sizing */
footer {
    height: 90px;
}

footer, footer h3 {
    font-size: 14px;
}

.footer-logo img {
    max-height: 70px;
    transition: max-height 0.3s ease;
}

/* Mobile Adjustments (Phones) */
@media (max-width: 767.98px) {
    /* Shrink the header logo on phones */
    .header-logo img {
        max-height: 50px; 
    }
    
    /* Shrink the footer logo on phones */
    .footer-logo img {
        max-height: 40px;
    }
    
    /* Adjust footer text size on mobile so it fits alongside the logo */
    footer h3 {
        font-size: 12px;
        text-align: left;
    }
}

li{
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

p {
  text-indent: 3em;
}
