/* ===== style.css ===== */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  transition: 0.3s;
}

button {
  cursor: pointer;
  font-weight: bold;
}

/* Toggle Button */
#toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #d90429;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  z-index: 999;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(to bottom right, #0a0a0a, #1a1a1a);
}

.hero-content {
  max-width: 800px;
}

.hero-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px #d90429;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #d90429;
  margin: 0.5rem 0;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0f0f0;
}

.bio {
  max-width: 600px;
  margin: 1rem auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Socials */
.socials {
  margin: 1.5rem 0;
}

.socials p {
  margin: 0.5rem 0;
  color: #d90429;
  font-weight: bold;
  font-size: 1rem;
}

.socials a {
  color: #d90429;
  font-size: 1.4rem;
  margin: 0 0.5rem;
  transition: 0.3s;
}

.socials a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Buttons to show hidden sections */
.buttons {
  margin-top: 1.5rem;
}

.reveal-btn {
  background: transparent;
  border: 2px solid #d90429;
  color: #d90429;
  padding: 0.5rem 1rem;
  margin: 0.3rem;
  border-radius: 6px;
  transition: 0.3s;
}

.reveal-btn:hover {
  background: #d90429;
  color: #fff;
}

/* Hidden Sections */
.hidden-section {
  display: none;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  border-left: 4px solid #d90429;
  border-radius: 8px;
}

.hidden-section h2 {
  color: #ff3c3c;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.hidden-section ul {
  list-style: square;
  padding-left: 1.5rem;
  color: #eee;
}

.hidden-section p {
  color: #ccc;
  font-size: 1rem;
}
/* ===== LIGHT MODE ===== */
body.light {
  background-color: #f5f5f5;
  color: #111;
}

body.light .hero {
  background: linear-gradient(to bottom right, #ffffff, #eaeaea);
}

body.light .hero h1 {
  color: #d90429;
}

body.light .bio,
body.light .tagline,
body.light .hidden-section p,
body.light .hidden-section ul,
body.light .hidden-section h2 {
  color: #333;
}

body.light .hidden-section {
  background-color: #f1f1f1;
  border-left: 4px solid #d90429;
}

body.light .reveal-btn {
  border-color: #d90429;
  color: #d90429;
}

body.light .reveal-btn:hover {
  background: #d90429;
  color: #fff;
}

body.light .socials a {
  color: #d90429;
}

.project-card {
  background-color: #252525;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  margin: 20px 0;
  transition: 0.3s;
}

.project-card h3 {
  margin-top: 0;
  color: #ff5555;
}

.project-card a {
  color: #6ca0dc;
  text-decoration: none;
  margin-right: 10px;
}

body.light .project-card {
  background-color: #fff;
  box-shadow: 0 0 10px #ccc;
}

body.light .project-card h3 {
  color: #d90429;
}

