body {
    background-color: #eff0f4;
    padding-top: 150px;

}

/* Cursor */
body, div, section, table, td, th, span, button, a {
    cursor: url('../CursorIcons/CursorIcon40x40.png'), auto; 
}
a, button, .clickable {
    cursor: url('../CursorIcons/pointer.png'), pointer;
}

    /* Text inputs */
input[type="text"], textarea {
    cursor: url('CursorIcons/text40x40.png'), text;
}

/* Nav Bar */

.navbarcustom {
    background-color: #eff0f4;
    border-bottom: 3px solid #003049;
    height: 100px;
    padding: 0 40px;
}

/* Base nav links */
.navbarcustom .nav-link {
    color: #003049;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 4px;
}

/* Underline hover effect */
.navbarcustom .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #EC8997;
    transition: width 0.25s ease;
}

.navbarcustom .nav-link:hover::after {
    width: 100%;
}

.navbarcustom .nav-link:hover {
    color: #EC8997;
    transform: translateY(-2px);
}

/* Active page link */
.navbarcustom .nav-link.active {
    color: #a1c181;
    text-decoration: overline #a1c181 2px;
}

.navbar-nav .nav-item {
    text-align: right;
}

/* Toggler */
.navbar-toggler {
    background-color: #EC8997;
    border: none;
}

.navbar-toggler:hover {
    background-color: #eff0f4;
    border: solid #003049 2px;
}

/* Resume Button */
.resume-btn {
    padding: 8px 20px;
    background-color: #EC8997;
    color: #eff0f4;
    border-radius: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.resume-btn:hover {
    background-color: #eff0f4;
    color: #EC8997;
    border: 2px solid #EC8997;
    transform: translateY(-2px);
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.6);
}
/* Text */

h1 {
color: #003049;
  font-family: "Instrument Serif", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
}

h2 {
color: #003049;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 1.15;
}

h3 {
    font-family: "Roboto", sans-serif;
  color: #003049;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}
p {
    color: #003049;
    font-family: "Roboto", sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.6;
}

img {
    background-repeat: no-repeat;
}

/* Footer */
.footer {
    padding: 30px 40px;
    margin-top: 80px;
    border-top: 2px solid #a1c181;
}

/* Left side text */
.footer-left p {
    margin: 0;
    color: #003049;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.4;
}

.socialMediaIcons {
    text-align: right;
}

.fa {
    color: #003049;
    padding: 10px;
    font-size: 32px;
    width: 45px;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.fa:hover {
    color: #a1c181;
    transform: translateY(-3px);
}

/* Mobile improvements */
@media (max-width: 767px) {
    .footer {
        padding: 30px 20px;
        text-align: center;
    }

    .footer-left {
        margin-bottom: 15px;
    }

    .socialMediaIcons {
        text-align: center;
    }
}