/* Smaller Header for About Page */
.small-header {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.orange-stripe {
    background-color: var(--orange);
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.small-header h1 {
    font-family: var(--primary-font);
    font-size: 2.5em;
    margin: 0;
    padding-top: 10px;
}

.small-header .home-button {
    font-family: var(--secondary-font);
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 15px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: var(--orange);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.small-header .home-button:hover {
    background-color: var(--darker-orange);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Spacing between header and section */
.about-section {
    padding: 60px 20px; /* Increased padding for spacing */
    max-width: 1000px;
    margin: 40px auto 0 auto; /* Adds space between header and section */
    color: var(--dark-gray);
    background-color: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: var(--primary-font);
    font-size: 2em;
    color: var(--orange);
    margin-bottom: 20px;
}

.about-content p {
    font-family: var(--secondary-font);
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: justify;
}

/* Footer Styling */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: linear-gradient(135deg, #444, #222);
}

footer a {
    color: var(--light-gray); /* Light gray links for better contrast */
    text-decoration: none;
}

footer a:hover {
    color: var(--orange); /* Orange on hover */
    text-decoration: underline;
}
