/* ---------------------------
   GLOBAL STYLES
--------------------------- */
body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

a {
    color: #004f9e; /* UF-style blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ---------------------------
   NAVIGATION
--------------------------- */
#menu-wrapper {
    background-color: #004f9e; /* UF blue */
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

#menu ul li {
    margin: 0 15px;
}

#menu ul li a {
    display: block;
    padding: 15px 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

#menu ul li.current_page_item a {
    background-color: #f9a825; /* UF gold accent */
    color: #fff;
    border-radius: 5px;
}

/* ---------------------------
   HERO SECTION
--------------------------- */
#logo {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #e8f0fe; /* light accent background */
}

.profile-photo {
    width: 100px;      /* smaller width */
    height: 100px;     /* smaller height */
    border-radius: 50%;
    border: 4px solid #004f9e;
    object-fit: cover;
    margin-bottom: 20px;
}

#logo h1 {
    font-family: 'Montserrat', sans-serif;
    color: #004f9e;
    font-size: 2rem;
    margin-bottom: 10px;
}

#logo p {
    font-size: 1rem;
    color: #555;
}

/* ---------------------------
   PAGE CONTENT
--------------------------- */
#intro .entry {
    text-align: center;
    margin: 40px 0;
}

#intro .entry p {
    max-width: 800px;
    margin: 10px auto;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* ---------------------------
   PROJECT GRID
--------------------------- */
/* ---------------------------
   PROJECT GRID BOXES
--------------------------- */
/* PROJECT GRID BOXES */
/* PROJECT GRID BOXES */
#three-column {
    display: flex;
    flex-wrap: wrap;           /* allows boxes to wrap to next line */
    justify-content: center;   /* centers boxes horizontally */
    gap: 20px;                 /* space between boxes */
    margin: 40px 0;
    padding: 0;
}

.box-style {
    background-color: #fff;
    border: 2px solid #004f9e; /* UF blue */
    border-radius: 10px;
    padding: 20px;
    width: 300px;               /* fixed width for each box */
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.box-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.box-style h2 {
    font-family: 'Montserrat', sans-serif;
    color: #004f9e;
    margin-bottom: 10px;
}

.box-style p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

.box-style .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f9a825; /* UF gold */
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.box-style .button:hover {
    background-color: #e65100;
}

/* RESPONSIVE: stack boxes on smaller screens */
@media (max-width: 1000px) {
    .box-style {
        width: 45%; /* 2 boxes per row */
    }
}

@media (max-width: 650px) {
    .box-style {
        width: 90%; /* 1 box per row */
    }
}

/* ---------------------------
   FOOTER
--------------------------- */
#footer {
    text-align: center;
    padding: 20px 0;
    background-color: #004f9e;
    color: #fff;
}

#footer a {
    color: #f9a825;
}
