/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

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


/* ========================================
   HEADER SECTION
   ======================================== */

header {
  background-color: #f7f75c;
  color: #000000;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 5px solid #000000;
}

header h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
}

header p {
  font-size: 18px;
  margin-bottom: 30px;
  font-style: italic;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 5px;
  transition: all 0.3s;
}

nav a:hover {
  background-color: #000000;
  color: #f7f75c;
  transform: scale(1.05);
}


/* ========================================
   SECTIONS (About, Projects, Contact)
   ======================================== */

section {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background-color: #1a1a1a;
  border: 3px solid #f7f75c;
  border-radius: 10px;
}

section h2 {
  font-size: 36px;
  color: #f7f75c;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid #f7f75c;
  padding-bottom: 10px;
}

section h3 {
  font-size: 24px;
  color: #f7f75c;
  margin-top: 20px;
  margin-bottom: 10px;
}

section p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #cccccc;
}


/* ========================================
   ABOUT SECTION
   ======================================== */

#about {
  text-align: center;
}

#about img {
  border-radius: 50%;
  border: 5px solid #f7f75c;
  margin: 20px 0;
}

#about ul {
  list-style: none;
  margin-top: 15px;
}

#about li {
  background-color: #f7f75c;
  color: #000000;
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 20px;
  font-weight: bold;
}


/* ========================================
   PROJECTS SECTION
   ======================================== */
   
   

#projects div {
  background-color: #000000;
  border: 2px solid #f7f75c;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
 
}

#projects a {
  color: #000000;
  background-color: #f7f75c;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  transition: all 0.3s;
}

#projects a:hover {
  background-color: #000000;
  color: #f7f75c;
  border: 2px solid #f7f75c;
}


/* ========================================
   CONTACT SECTION (FORM)
   ======================================== */

form {
  margin-top: 20px;
}

label {
  font-size: 16px;
  color: #f7f75c;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  background-color: #000000;
  color: #f7f75c;
  border: 2px solid #f7f75c;
  border-radius: 5px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #f7f75c;
  box-shadow: 0 0 10px #f7f75c;
}

input::placeholder,
textarea::placeholder {
  color: #666666;
}

button {
  background-color: #f7f75c;
  color: #000000;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background-color: #000000;
  color: #f7f75c;
  border: 2px solid #f7f75c;
  transform: scale(1.05);
}


/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: #f7f75c;
  color: #000000;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 5px solid #f7f75c;
}

footer p {
  margin-bottom: 10px;
  font-size: 16px;
}

footer a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: color 0.3s;
}

footer a:hover {
  color: #4a4a4a;
  text-decoration: underline;
}