/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL DARK THEME */
body.dark-theme {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00fff2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #48f7f7;
}

/* HOME SECTION */
.home-section {
  height: 100vh;
  background: url('wood background.jpg') no-repeat center center/cover;
  background-color: #cccaca;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
}

.home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.home-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 20px;
}

.home-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.home-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.home-content span {
  color: #48f7f7;
}

.home-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}


/* ABOUT SECTION */
.about-section {
  background: url('banner-bg.jpg.jpg') no-repeat center center/cover;
  min-height: 90vh;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section h2 {
  font-size: 3rem;
  color: #832020;
  margin-bottom: 30px;
  font-style: oblique;
}
.about-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.about-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f28e8e; /* Optional border */
  box-shadow: 0 0 10px rgba(214, 137, 153, 0.3); /* Optional shadow */
}


.about-section p {

 color: #661319;
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  font-style: oblique;
}

/* PROJECT SECTION */
.projects-section {
  background: url('top-view-work-desk-with-drawing-pad-glasses-with-copy-space.jpg') no-repeat center center/cover;
  min-height: 100vh;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
a {
  text-decoration: none;
}

.projects-section h2 {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 40px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}

.project-card {
  background-color: #1f1f1f;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,255,255,0.1);
  transition: 0.3s;
  width: 300px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0,255,255,0.3);
}

.project-card h3 {
  color: #00ffff;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.project-card p {
  color: #ccc;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.tech-stack {
  font-size: 0.9rem;
  color: #00cccc;
}

/* SKILLS SECTION */
.skills-section {
  background: url('keyboard.jpg') no-repeat center center/cover;
  background-color: #fff;
  min-height: 100vh;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  justify-items: center;
}

.skills-section h2 {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 40px;
}

.skills-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.skill-card {
  background-color: #ccc5c5;
  padding: 20px;
  border-radius: 10px;
  width: 150px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgb(232, 245, 245);
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(233, 246, 246, 0.3);
}

.skill-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.skill-card p {
  color: #000808;
  font-weight: bold;
}



/* CONTACT SECTION */
.contact-section {
  background: url('glasses-lie-laptop-reflecting-light-from-screen-dark.jpg') no-repeat center center/cover;
  min-height: 100vh;
  padding: 100px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.contact-item {
  background-color: #1a1a1a;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 350px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.contact-item img {
  width: 30px;
  height: 30px;
}

.contact-item p {
  margin: 0;
  font-weight: 500;
  color: #00ffff;
  font-size: 1rem;
  word-break: break-word;
}

.contact-item a {
  text-decoration: none;
  color: #00ffff;
  font-size: 1rem;
  font-weight: 500;
}

.contact-item a:hover {
  color: #48f7f7;
}
