 body{
            background: rgb(79, 78, 78);
            color: white;
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
        }
        header {
            background: black;
            padding: 20px 40px;
            text-align: center;
            height: 50px;
        }

        a:link,     /* unvisited link */
        a:visited,  /* visited link */
        a:hover,    /* mouse over link */
        a.heading:active {  /* clicked link */
            color: white;        /* or whatever color you want */
         text-decoration: none; /* keep no underline */
        }
        .gray-links a:link,
.gray-links a:visited,
.gray-links a:active {
    color: gray;               /* keep color same as paragraph */
    text-decoration: underline; /* underline always */
}
.gray-links a:hover {
    background-color: rgb(222, 222, 222);
}

        a:hover {
            text-decoration: underline;
        }

        ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;             /* horizontal layout */
    justify-content: center;   /* center nav items */
    gap: 20px;                 /* space between buttons */
}

li.NAV {
    display: inline-block;
}

li.NAV a {
    display: inline-block;
    padding: 10px 20px;         /* space inside button */
    font-size: 18px;            /* make text bigger */
    background-color: #ffc0cb;  /* light pink background */
    color: black;               /* text color */
    border-radius: 12px;        /* rounded corners */
    text-decoration: none;       /* remove underline */
    transition: transform 0.2s; /* smooth hover effect */
}

li.NAV a:hover {
    background-color: #ffb6c1;  /* slightly darker pink on hover */
    transform: scale(1.05);     /* subtle zoom on hover */
}

        section {
            background: white;
            color: gray;
            padding: 20px;
            display: flex;
            flex-direction: row;
        }


        .center {
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 40%;
        }

        .center-text {
    justify-content: center;   /* centers children horizontally */
    align-items: center;       /* centers children vertically (optional) */
    text-align: center;        /* centers inline text inside the child */
    flex-direction: column;    /* makes sure text stacks vertically */
}
        .portrait-logo {
    display: flex;
    justify-content: center;   /* center everything as a group */
    align-items: center;       /* vertically align them */
    position: relative;        /* so we can "stick" the logo */
}

.portrait {
    max-width: 40%;            /* adjust size as you like */
    height: auto;
}

.UTK-logo {
    max-width: 25%;            /* control how big the logo is */
    height: auto;
    position: absolute;        /* pull it to the side */
    right: 20px;               /* distance from right edge */
}
.Tbird {
    max-width: 25%;            /* control how big the logo is */
    height: auto;
    position: absolute;        /* pull it to the side */
    left: 20px;               /* distance from right edge */
}


        footer{
            background: black;
            color: white;
            padding: 10px 20px;
        }

 


        .portfolio-centered-headers {
            justify-content: center;   /* centers children horizontally */
    align-items: center;       /* centers children vertically (optional) */
    text-align: center;      
    flex-direction: column;    
        }
        .UCAHImage1 {
            width:50px;
        }

        .portfolio-projects {
    display: flex;
    justify-content: space-between; /* space evenly */
    gap: 20px;                      /* spacing between projects */
    margin: 20px 0;                 /* top/bottom spacing */
}

.project {
    background-color: #ffc0cb;      /* light pink background */
    border-radius: 12px;
    padding: 10px;
    flex: 1;                        /* equal width for all projects */
    display: flex;
    flex-direction: column;         /* stack image + caption */
    align-items: center;
    text-align: center;
}

.project img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.project p {
    color: gray;
    font-weight: bold;
}

.contact-section {
  background: white;      /* full-width white background */
  padding: 40px 20px;     /* spacing inside */
}

.contact-cards {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: flex-start; /* align tops of cards */
  gap: 30px;               /* spacing between cards */
  flex-wrap: wrap;         /* wrap on smaller screens */
  max-width: 1200px;
  margin: 0 auto;          /* keep group centered */
}

.contact-card {
  background-color: #ffc0cb;
  border-radius: 12px;
  padding: 20px;
  width: 280px;            /* fixed card width so they sit side by side */
  text-align: center;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h1 {
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-card h1 a {
  color: gray;
  text-decoration: none;
}

.contact-card h1 a:hover {
  text-decoration: underline;
}

.contact-card p {
  color: gray;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.contact-icon {
  width: 50px;       /* adjust size as needed */
  height: auto;
  margin-bottom: 10px;
}
