/* Link Reset */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:hover {
    color: inherit;
}

a:active {
    color: inherit;
}

/* Project Grid and Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: rgba(212, 145, 93, 0.1);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    color: #ffffff;
    border: 1px solid rgba(212, 145, 93, 0.3);
    border-left: 4px solid #d4915d;
}

/* .project-card:hover { */
    /* transform: translateY(-5px); */
/* } */

.project-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4915d;
}

/* Blog Posts */
.blog-post {
    background: rgba(127, 176, 105, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #7fb069;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7fb069;
}

.blog-post .date {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    padding: 1rem 2rem;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.contact-form button:hover {
    background: #ffffff;
    color: #c75a7e;
}

/* Footer Styles */
.page-footer {
    margin-top: auto;
    padding: 3rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page-specific footer colors */
.projects-page .page-footer {
    border-top-color: rgba(212, 145, 93, 0.3);
}

.projects-page .footer-section h3 {
    color: #d4915d;
}

.experience-page .page-footer {
    border-top-color: rgba(127, 176, 105, 0.3);
}

.experience-page .footer-section h3 {
    color: #7fb069;
}

.about-page .page-footer {
    border-top-color: rgba(90, 159, 212, 0.3);
}

.about-page .footer-section h3 {
    color: #5a9fd4;
}

/* generic */
.tech-skills{
    font-family: 'Courier New', monospace;
    /* color: #64FFDA; */
}

.underlined {
  text-decoration: underline;
  text-underline-offset: 7px; /* try 1px, 2px, 3px, etc. */
  opacity: 50%;
}
.underline {
    display: inline-block;
    box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.5); /* semi-transparent white */
}