* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f2f2f2;
  background-color: #0d0d0d;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #1a1a1a;
  padding: 15px 0;
  border-bottom: 1px solid #292929;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f2f2f2;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #aaa;
  transition: color 0.3s;
}

.nav a:hover {
  color: #c084fc; 
}

.hero {
  background: linear-gradient(to right, #3c1361, #9d4edd);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f0e6ff;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.section-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #ccc;
}

.dark-bg {
  background: #1a1a1a;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 30px;
}

.project-card {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #2a2a2a;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(157, 78, 221, 0.4); 
}

.project-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

.project-card p {
  color: #aaa;
}

.project-card a {
  color: #c084fc;
  text-decoration: none;
  font-weight: bold;
}

.project-card a:hover {
  text-decoration: underline;
}

#contact {
  background: linear-gradient(to right, #2a0944, #9d4edd);
  padding: 80px 20px;
  border-radius: 12px 12px 0 0;
}

#contact .section-text {
  color: #f0e6ff;
  font-size: 20px;
}

.footer {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #292929;
  margin-top: 40px;
  color: #888;
}

.folder {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: #0d0d0d; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.8);
  border: 1px solid #222;   
  flex: 0 1 calc(33.333% - 1rem);
}

.folder h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #bb86fc;
  border-bottom: 2px solid #6a0dad; 
  padding-bottom: 0.5rem;
}

.folder-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.file {
  flex: 1 1 200px;
  padding: 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background: #1a1a1a; 
  border: 2px solid #6a0dad; 
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  color: #f5f5f5; 
}

.file:hover {
  background: #6a0dad; 
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 13, 173, 0.6); 
}

.about-container {
  display: flex;
  align-items: center;     
  justify-content: flex-start;
  gap: 1.5rem;             
  max-width: 1000px;          
  margin: 0 auto;            
  text-align: left;
}
  
.about-photo {
  width: 200px;       
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #6a0dad; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.7);
}

.section-text a,
.section-text a:visited {
  color: #ffffff;
  text-decoration: none;
}

.section-text a:hover,
.section-text a:focus {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr; 
  }
}


