/* Typography Styles */

/* Headers - Tangerine Font Family */
h1, h2, h3, h4, h5, h6 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--main-color-font) !important;
}

h1 {
    font-size: 6.625rem; /* 74px (was 64px) */;
    line-height: 1;
}

h2 {
    font-size: 4.125rem; /* 66px (was 56px) */
}

h3 {
    font-size: 2.625rem; /* 58px (was 48px) */
}

h4 {
    font-size: 3.125rem; /* 50px (was 40px) */
}

h5 {
    font-size: 2.625rem; /* 42px (was 32px) */
}

h6 {
    font-size: 2.375rem; /* 38px (was 28px) */
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    color: var(--main-color);
    font-family: "Funnel Display", sans-serif;
}

/* Body Text, Paragraphs, Inputs, Spans - Raleway Font Family */
body, p, input, textarea, select, span, a, li, td, th {
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    color: var(--main-color-font);
}

body {
    font-size: 1rem; /* 16px */
    font-weight: 400;
    color: var(--main-color-font);
}

p {
    font-size: 1.2rem; /* 16px */
    font-weight: 500;
    margin-bottom: 1rem;
}

span {
    font-size: inherit;
    font-weight: inherit;
}

/* Input Elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
textarea,
select {
    font-size: 1rem; /* 16px */
    font-weight: 400;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Button Elements */
button,
input[type="submit"],
input[type="button"] {
    font-family: "Nunito", sans-serif;
    font-size: 1rem; /* 16px */
    font-weight: 500;
}

/* Links */
a {
    font-weight: 500;
    text-decoration: none;
    color: #007cba;
}

a:hover {
    text-decoration: underline;
}

/* Small Text */
small {
    font-size: 0.875rem; /* 14px */
    font-weight: 400;
}

/* Large Text */
.large-text {
    font-size: 1.125rem; /* 18px */
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 3.625rem; /* 58px (was 48px) */
    }
    
    h2 {
        font-size: 3.125rem; /* 50px (was 40px) */
    }
    
    h3 {
        font-size: 2.625rem; /* 42px (was 32px) */
    }
    
    h4 {
        font-size: 2.375rem; /* 38px (was 28px) */
    }
    
    h5 {
        font-size: 2.125rem; /* 34px (was 24px) */
    }
    
    h6 {
        font-size: 1.875rem; /* 30px (was 20px) */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3.125rem; /* 50px (was 40px) */
    }
    
    h2 {
        font-size: 2.625rem; /* 42px (was 32px) */
    }
    
    h3 {
        font-size: 2.375rem; /* 38px (was 28px) */
    }
    
    h4 {
        font-size: 2.125rem; /* 34px (was 24px) */
    }
    
    h5 {
        font-size: 1.875rem; /* 30px (was 20px) */
    }
    
    h6 {
        font-size: 1.75rem; /* 28px (was 18px) */
    }
}