@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:#243342
}

@font-face {
  font-family: 'LilGrotesk';
  src: url('fonts/LilGrotesk-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'LilGrotesk-Regular';
  src: url('fonts/LilGrotesk-Regular.otf') format('opentype');
}

body {
    font-family: 'LilGrotesk', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    margin-left: 40px;
    margin-top: 40px;
    font-size: 1rem;
    font-style: italic;
    font-family: "Roboto Mono", monospace;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.profile-pic img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.header-sect{
    background: linear-gradient(90deg, #ffffff 70%, #78b2c0 60%);
    width: 100%;
}

.header-sect a:hover {
    color: #00a3cc;
    transition: color 0.3s ease;
}
/* Header */
header {
    max-width: 800px;
    margin-left: 70px;
    text-align: left;
}

header h1 {
    font-family: "Roboto Mono", monospace;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FF3D00; 
}

.contacts-list {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-left: 70px;
}

header h2 {
    font-size: 5rem;
    width: max-content;
    font-weight: bold;
    color: #243342;
}

.intro-line {
    font-family: "LilGrotesk-Regular";
    margin-top: -30px;
    font-size: 2rem;
}

header p {
    font-size: 1.25rem;
    color: #333;
    margin-top: 10px;
}

/* My Stack Section */
#my-stack {
    margin-top: 100px;
    text-align: center;
    
}

.stack-logo {
    width: 20px; /* Adjust the size as needed */
    height: auto;
    margin-right: 8px; /* Space between the logo and the text */
    vertical-align: middle; /* Aligns the logo with the text */
}

#my-stack h2 {
    text-align: left;
    margin-left: 70px;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #243342;
}

.stack-container {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    font-family: "Roboto Mono", monospace;
}

.stack-column {
    background-color: #fff;
    border: 2px solid;
    border-radius: 10px;
    padding: 20px;
    width: 22%;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stack-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.stack-column ul {
    list-style: none;
    padding: 0;
}

.stack-column ul li {
    font-size: 1.2rem;
    margin: 5px 0;
}

.projects-section {
    padding: 40px;
    margin-top: 50px;
    
  }
  
  .section-title {
    font-size: 4rem;
    text-align: right;
    font-weight: bold;
    margin-bottom: 40px;
    margin-right: 20px;
  }
  
  .project-card {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .project-info {
    flex: 1;
    padding-right: 20px;
  }
  
  .project-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1a202c; /* Darker color for the title */
  }
  
  .project-button {
    display: inline-block;
    background-color: #e2f0cb;
    color: #333;
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .project-button:hover {
    background-color: #c8e6c9;
  }
  
  .project-description {
    font-family: "LilGrotesk-Regular";
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .project-tags {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .project-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .project-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .project-icons img:hover {
    transform: scale(1.1);
  }
  
  .project-images {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: center;
  }
  
  .project-images img {
    width: 100%;
    max-width: 400px; /* Adjust based on your layout */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .project-images img:hover {
    transform: scale(1.05);
  }

  footer {
    background-color: #78b2c0;
    color: #000000;
    padding: 30px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #000000;
    font-size: 0.9em;
    transition: color 0.3s ease;
  }
  
  .footer-bottom p:hover {
    color: #ffffff;
  }
  
  .footer-bottom a:hover {
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    footer {
      padding: 20px 0;
    }
  
    .footer-bottom p {
      font-size: 0.85em;
    }
  }
  