/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #d2cece;
  color: #020101;
  line-height: 1.6;
}

/* Nav setup */
header {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff9800;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin: 5px 10px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff9800;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1c1c1c;
    text-align: center;
    align-items: center;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero home page */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('vts.jpg') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

.hero a {
  color: #ff9800;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.hero a:hover {
  color: #e0e0e0;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero h1 span {
  color: #ff9800;
}

/* About page */
.about {
  background: linear-gradient(rgba(120, 55, 6, 0.7), rgba(16, 10, 3, 0.7)),
              url('about.jpg') no-repeat center/cover;
  text-align: center;
  padding: 40px 20px;
}

.about p {
  color: #fff;
  font-size: 1rem;
}

.profile-pic {
  border-radius: 50%;
  margin: 20px 0;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.about-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #df9d39;
  color: #0e0a0a;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.about-buttons .btn:hover {
  background: #e1dfdc;
}

.about-buttons .btn:active {
  background: #e0dad1;
}

/* Resume page */
.resume {
  background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(74, 76, 78, 0.7)),
              url('resume.jpg') no-repeat center/cover;
  padding: 40px 20px;
  color: #f1eded;
  text-align: center;
}

.resume ul,
.resume li {
  list-style: none;
  padding: 0;
}

.resume a {
  color: #ff9800;
  text-decoration: none;
  font-weight: bold;
}

.resume h3 {
  margin-top: 20px;
  color: #ff9800;
}

/* Projects page */
.projects {
  padding: 20px 20px;
  text-align: center;
  background: linear-gradient(rgba(204, 204, 216, 0.7), rgba(1, 3, 6, 0.7)),
              url("project.jpg") no-repeat center/cover;
}

.project {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 15px;
  transition: transform 0.3s;
  text-align: center;
  color: #fff;
}

.project h3 {
  color: #ff9800;
}

/* Contact page */
.contact {
  background: linear-gradient(rgba(154, 113, 73, 0.7), rgba(154, 114, 28, 0.165)),
              url('cont.webp') no-repeat center/cover;
  text-align: center;
  padding: 40px 20px;
}

.contact a {
  color: #ff9800;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Section default layout */
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.resume, .projects, .contact, .about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}