@charset "utf-8";
/* CSS Document */
/* Base Reset & Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "acumin-pro-wide", sans-serif;
	font-weight: 400;
	font-style: normal;
  background-color: #F1ece1; 
  color: #0B0B0B;             
  line-height: 1.6;
}

a {
  color: #dd5144; 
  text-decoration: none;
}

a:hover {
  color: #E7877E;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
nav {
  background: #505668;
  box-shadow: 0 2px 8px rgba(0, 0 ,0.035);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: 50px;
  object-fit: cover;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
	font-family: basic-sans, sans-serif;
	font-weight: 700;
	font-style: normal;
}

nav li a {
  font-weight: bold;
  color: #BBBED7;
	transition: color 0.2s ease-in-out;
}

nav li a:hover {
  color: #f0f0f0;
}


/* Resume */
.res-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.res-container iframe,
.res-container embed {
  width: 100%;
  max-width: 900px;
  height: 90vh;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}

@media (max-width: 768px) {
  .res-container iframe,
  .res-container embed {
    height: 80vh;
  }
}


/* About */
.about-container {
  display: flex;
	flex-direction:row;
	margin-left:150px;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.about-photo img {
  width: 250px;
  border-radius: 5px;
  
}

.about-text {
  max-width: 600px;
	flex:1;
}

.about-text h2 {
	font-family: basic-sans, sans-serif;
	font-weight: 700;
	font-style: normal;
  color: #000;
  margin-bottom: 15px;
}

.about-text p {
	font-family: "acumin-pro-wide", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.project-card {
  background: #3a353f;
  color: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.card-content p {
  color: #f0f0f0;
	font-size:12px;
	font-family: basic-sans, sans-serif;
	font-weight: 100;
	font-style: normal;
	letter-spacing:0.05em;
	margin-bottom:6px;
}

/* Contact */
.contact h2 {
  color: #505668;
}

.contact ul li {
  margin-bottom: 10px;
	font-family: "acumin-pro-wide", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.contact ul {
  list-style: none;
  margin-top: 20px;
	font-family: basic-sans, sans-serif;
	font-weight: 500;
	font-style: normal;
}

/* Footer */
footer {
  text-align: center;
  background: #3a353f;
  color: #BBBED7;
  padding: 20px;
  margin-top: 40px;
	position:fixed;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  header h1 {
    font-size: 2em;
  }

  .project-card img {
    height: 160px;
  }
}
