/* Two-column layout for Skills & Interests section */
.skills-interests-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.skill-card a {
  word-break: break-all;
  display: inline-block;
  max-width: 100%;
}

#about h2 {
  color: black;
}


#skills h2 {
  color: black;
}
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');
:root {
 --primary-color: #cdb0ca;
 --heading-color: #000000;
 --text-color: #000000;
 --light-text: #000102;
 --background: #dec9c9;
 --light-background: #f9fafb;
 --card-background: #f8f9fa;
 --card-border: #e9ecef;
 --card-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 --card-shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.15);
 --accent-color: #070607;

 a:hover {
  color: #e7cfe5;
}
 a {
  color: rgb(0, 0, 0);
}
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* ========================= */
/* 1. Reset & Base Styles    */
/* ========================= */

h1, h2, h3 {
  font-family:'Merriweather';
  line-height: 1.2;
  color: #333;
  color: var(--heading-color);
}

body {
  font-family: 'Zalando Sans';
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #070000;
  color: var(--text-color);
  background-color: var(--background);
}


header {
  display: flex;
  align-items: center;

/* ========================= */
/* 2. Layout Containers      */
/* ========================= */
  gap: 2rem;
  height: 60vh;
  padding: 2rem;
  background-color: #8d808c;
}

.header_pic {
  flex: 1;
  min-height: 300px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8d808c;
}

.header_pic img {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.header_text {
  flex: 1;
  padding: 2rem;
  background-color: #cbb3c2;
}

/* Navigation */
nav {
  background-color: #cbb3c2;
  padding: 1rem 2rem;
/* ========================= */
/* 3. Navigation             */
/* ========================= */
  border-bottom: 1px solid #e9ecef;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  color: #020003;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.nav-links a:hover {
  color: #f0e9f1;
}

/* Main container */
main {
   display: grid;
  gap: 6rem;
/* ========================= */
/* 4. Main Container         */
/* ========================= */
  padding: 2rem;
  
    max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  main {
    padding: 2rem;
  }
}

/* Section headings */
section h2 {
color: var(--text-color);
  text-align: center;
  font-size: 2.5rem;
/* ========================= */
/* 5. Section Headings       */
/* ========================= */
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

section h2::after {
color: var(--text-color);
 content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d2bbdb, #b69fb2);
  border-radius: 2px;
}

.skills-list ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  font-size: 1.25rem;
  margin: 0;
  padding-left: 1.5em;
}
.skills-list li {
  margin-bottom: 0.5em;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr;
/* ========================= */
/* 6. About Section          */
/* ========================= */
  gap: 2rem;
  padding: 3rem 0;
  align-items: center;
}

.about-image {
  justify-self: center;
}

.about-image img {
  width: auto;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.about-text {
  flex: 2;
  min-width: 250px;
  text-align: left;
  font-size: 1.15rem;
  line-height: 2;
}

/* Indent About Me paragraphs */
#about .about-text p {
  text-indent: 2em;
}

/* Reduce space between About Me and My Skills sections */
#about {
  padding-bottom: 1.5rem;
}
#skills {
  padding-top: 1.5rem;
}


.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
/* ========================= */
/* 7. Skills Section         */
/* ========================= */
  gap: 1rem;
  margin-top: 2rem;
}

.skill-card {
  padding: 1.5rem;
  background: #8d808c;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.skill-card h3 {
  color: #000102;
  margin-bottom: 0.5rem;
}


.projects-container {
  display: grid;
/* ========================= */
/* 8. Projects Section       */
/* ========================= */
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  padding: 2rem;
  background: rgb(254, 254, 254);
  border: 1px solid #f2f3f3;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.885);
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.project-card h3 {
  color: #000000;
  margin-bottom: 1rem;
}

.project-card p {
  margin-bottom: 0.5rem;
}


section {
  padding: 3rem 0;
/* ========================= */
/* 9. Miscellaneous/Utility  */
/* ========================= */
}


p + p {
  margin-top: 1rem;

}