/* Variables */
:root {
    --light-orange-sk: #ff9d00;
    --dark-orange-sk: #FF6B00;
    --darker-orange-sk: #E65100;
    --bs-primary-rgb: 255, 157, 0;
}

/* Base styles */
html {
    height: 100%;
}

body {
    background-color: #fff5e9;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

/* Add this new rule */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}

/* Layout */
main {
    flex: 1;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    color: var(--dark-orange-sk);
    font-size: 64px;
    text-align: right;
    margin-bottom: 1rem;
}

/* Specific styling for project page h1 only */
.project-page h1 {
    color: var(--darker-orange-sk) !important;
}

/* Keep h2 styling separate */
h2 {
    color: var(--dark-orange-sk);
    font-size: 64px;
    text-align: right;
    margin-bottom: 1rem;
}

main p {
    color: var(--light-orange-sk);
    font-size: 48px;
    line-height: 1.4;
    text-align: left;
    margin: 1rem auto 2rem;
    max-width: 800px;
}

/* Navigation */
.nav-link {
    color: var(--light-orange-sk) !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 4px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: white;
    width: 100%;
    z-index: 1000;
    padding: 1rem 1rem 1.9rem 1rem;
    margin-bottom: 2rem;
}

/* Projects */
.project {
    margin-bottom: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.project h2 {
    color: var(--dark-orange-sk);
    font-size: 48px;
    text-align: right;
    margin-bottom: 1rem;
}

.project p {
    color: var(--light-orange-sk);
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: left;
}

.project a {
    color: var(--light-orange-sk);
    font-size: 32px;
    text-decoration: underline;
}

/* Mission Statement */
.mission-statement {
    font-size: 48px;
    font-weight: normal;
    color: var(--light-orange-sk);
    margin: 8rem auto 2rem;
    max-width: 800px;
    line-height: 1.4;
    text-align: center;
}

.mission-statement p {
    text-align: left;
    margin: 1rem auto;
}

/* Contact Statement */
.contact-statement {
    text-align: center;
    font-size: 2.5rem;
    padding: 4rem 2rem;
    margin-top: 5rem;
}

.contact-statement p {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-statement a {
    color: var(--darker-orange-sk) !important;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    main {
        width: 95%;
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    main {
        width: 100%;
        padding: 0 10px;
    }
}

.highlight-text {
    color: var(--dark-orange-sk);
}

.highlight-text-light {
    color: var(--light-orange-sk);
}

/* Home content styling */
.home-content {
    font-size: 48px;
    font-weight: normal;
    color: var(--light-orange-sk);
    margin: 8rem auto 2rem;
    max-width: 800px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.home-content p {
    text-align: center !important;
    margin: 1rem auto;
}

.brand-name {
    color: var(--dark-orange-sk);
}

a {
    color: #FFA07A !important;
    text-decoration: none;
}

a:hover {
    color: #FF8C61 !important;
}

/* Footer */
.footer-nav a {
    color: var(--darker-orange-sk) !important;
    font-weight: bold;
}

.footer-nav a:hover {
    color: var(--dark-orange-sk) !important;
}