/* @font-face {
  font-family: 'Melintina';
  src: url('https://raw.githubusercontent.com/Lavilight/my-fonts/main/mellintina-calligraphy.ttf') format('truetype');
} */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: 'Croogla';
  src: url('./Croogla4F-Bold.ttf') format('truetype');
}

.external-link {
    color: #F95600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.external-link:hover {
    color: #0B4650;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f7f2;
    margin: 0px;
    padding: 0px;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6, .main-title {
    font-family: serif;
}

.orange-text {
    color: #FA5500;
}

#profile-picture {
    float: right;
    margin-top: 0px;    
    margin-right: 40px;
    margin-left: 24px;
    margin-bottom: 0px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 50px;
    padding: 0px 16px;
    /* border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px; */

    box-shadow: 0 4px 20px rgba(11, 70, 80, 0.25);

    list-style-type: none;

    display: flex; 
    justify-content: space-between;
    align-items: center; 
    background-color:#0B4650;
}

.nav-links {
  display: flex;
  list-style: none;

  margin: 0px;
  padding: 0px;
  height: 100%;
}

.nav-links li {
    height: 100%;
}

.nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    color: #f8f7f2;
    text-align: center;
    font-size: 16px;
    padding: 0px 16px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.nav-links a:hover {
    color: #f8f7f2;
    background-color: #F95600;
}

.footer {
    width: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, transparent 0%, #EDD0D0 40%);
    color: black;
    position: relative;
    text-align: center;
}

.footer-img {
    margin-top: 16px;
    width: 100%;
    height: auto;
    display: block;
}

.copyright {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    
    color: white;
    margin: 0;
    font-size: 14px;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); 
    z-index: 2;
}

.main-title {
    /* display: block; */
    /* align-items: center; */
    /* justify-content: space-between; */
    color: #f8f7f2;
    font-size: 25px;
    font-weight: bold;
}
/* 
.profile-picture {
    align-items: right;
} */

.home-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    flex: 1;
}

.icons{
    display: flex;
    justify-content: center;
    padding: 0.8rem 0px;
    border-radius: 0px 0px 12px 12px;
}
.icons li{
    list-style-type: none;
    background: #F95600;
    color: white;
    width: 40px;
    height: 40px;
    margin: 0px 0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer; 
    transition: all 0.2s ease-in-out;
}

.icons li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.icons li:hover{
    background: #edffec;
    color: #000;
}

.text {
    margin: 15px;
    flex: 1;
}

.centered-text {
    margin: 15px;
    flex: 1;
    text-align: center;
}

#name {
    color: #FA5500;
    display: inline;
}

h1 {
    font-size: 50px;
    margin-bottom: -10px;
    /* margin: 0px; */
}

h2 {
    margin-bottom: -10px;
}

.portfolio-grid {    
    column-count: 3;
    column-gap: 16px;
    padding: 16px;
    margin: 0 auto;
    max-width: 1200px;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 16px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.grid-item img:hover {
    transform: scale(1.02);

}




