/* Updated Color Palette - Light Gray, White Content, Dark Blue */ :root { --background: #f5f5f5; /* Light gray background */ --content-bg: #ffffff; /* White content */ --primary: #1e3a8a; /* Dark Blue */ --primary-light: #3b5998; /* Softer dark blue */ --accent: #2563eb; /* Bright accent blue */ --text: #333333; /* Dark gray text */ --text-light: #666666; /* Lighter gray for secondary content */ } /* Dark Mode Overrides */ body.dark-mode { --background: #0d1117; /* Dark background */ --content-bg: #161b22; /* Darker content box */ --primary: #2563eb; /* Accent blue pops more in dark mode */ --primary-light: #3b82f6; /* Lighter blue for hover/secondary */ --accent: #1d4ed8; /* Deeper blue accent */ --text: #e0e0e0; /* Light text */ --text-light: #bbbbbb; /* Muted gray text */ } /* Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; background-color: var(--background); color: var(--text); line-height: 1.6; padding-top: 80px; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Navigation */ .navbar { background-color: var(--content-bg); color: var(--text); position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; backdrop-filter: blur(10px); } .navbar .container { display: flex; justify-content: space-between; align-items: center; } .navbar-brand { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; } .navbar-nav { display: flex; list-style: none; } .navbar-nav a { color: var(--text); text-decoration: none; padding: 8px 16px; font-weight: 500; transition: all 0.3s ease; border-radius: 4px; margin: 0 5px; } .navbar-nav a:hover { color: var(--background); background-color: var(--primary); } /* Home Section */ #home { display: flex; align-items: center; justify-content: center; gap: 60px; padding: 60px 40px; background: var(--content-bg); border-radius: 12px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1); margin: 40px auto; max-width: 1200px; border: 1px solid rgba(37, 99, 235, 0.2); /* subtle dark blue border */ } .home-image { flex: 1; display: flex; justify-content: center; } .home-image img { width: 100%; max-width: 350px; height: auto; border-radius: 50%; object-fit: cover; aspect-ratio: 1/1; border: 3px solid var(--accent); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .home-image img:hover { transform: scale(1.03); } .home-text { flex: 1.2; } .section-title { font-size: 2.8rem; margin-bottom: 1.5rem; font-weight: 700; color: var(--text); position: relative; display: inline-block; } .section-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60px; height: 4px; background: var(--accent); border-radius: 2px; } .typing-animation { display: inline-block; overflow: hidden; border-right: 3px solid var(--accent); white-space: nowrap; animation: typing 1.5s steps(10) forwards, blink-caret 0.8s step-end infinite 1.5s; } @keyframes typing { from { width: 0; } to { width: 8.5ch; } } @keyframes blink-caret { 50% { border-color: transparent; } } .home-text p { font-size: 1.1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 25px; } .website-note { font-size: 1rem; color: var(--text-light); font-style: italic; margin: 20px 0; border-left: 3px solid var(--accent); padding-left: 15px; } /* Button */ .button { display: inline-block; background: transparent; color: var(--primary); padding: 12px 30px; font-size: 1.1rem; font-weight: 500; border-radius: 4px; text-decoration: none; transition: all 0.3s ease; border: 1px solid var(--primary); position: relative; overflow: hidden; z-index: 1; } .button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(37, 99, 235, 0.15); transition: all 0.3s ease; z-index: -1; } .button:hover { color: var(--background); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4); } .button:hover::before { left: 0; background: var(--primary); } /* Footer */ footer { background-color: var(--content-bg); padding: 25px 20px; color: var(--text-light); text-align: center; font-size: 1rem; margin-top: 60px; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); backdrop-filter: blur(10px); border-top: 1px solid rgba(37, 99, 235, 0.2); } /* Responsive Design */ @media (max-width: 992px) { #home { gap: 40px; } .home-image img { max-width: 300px; } .section-title { font-size: 2.5rem; } } @media (max-width: 768px) { #home { flex-direction: column; text-align: center; padding: 40px 20px; } .section-title::after { left: 50%; transform: translateX(-50%); } .home-image, .home-text { width: 100%; } .home-image img { max-width: 280px; margin-bottom: 30px; } .section-title { font-size: 2.2rem; } .navbar .container { flex-direction: column; } .navbar-brand { margin-bottom: 10px; } body { padding-top: 120px; } } @media (max-width: 480px) { .navbar-nav { flex-direction: column; align-items: center; } .navbar-nav a { margin: 5px 0; } .section-title { font-size: 2rem; } .home-text p { font-size: 1rem; } }/* Updated Color Palette - Light Gray, White Content, Dark Blue */
:root {
  --background: #f5f5f5; /* Light gray background */
  --content-bg: #ffffff; /* White content */
  --primary: #1e3a8a; /* Dark Blue */
  --primary-light: #3b5998; /* Softer dark blue */
  --accent: #2563eb; /* Bright accent blue */
  --text: #333333; /* Dark gray text */
  --text-light: #666666; /* Lighter gray for secondary content */
}

/* Dark Mode Overrides */
body.dark-mode {
  --background: #0d1117; /* Dark background */
  --content-bg: #161b22; /* Darker content box */
  --primary: #2563eb; /* Accent blue pops more in dark mode */
  --primary-light: #3b82f6; /* Lighter blue for hover/secondary */
  --accent: #1d4ed8; /* Deeper blue accent */
  --text: #e0e0e0; /* Light text */
  --text-light: #bbbbbb; /* Muted gray text */
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--content-bg);
  color: var(--text);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
}

.navbar-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 0 5px;
}

.navbar-nav a:hover {
  color: var(--background);
  background-color: var(--primary);
}

/* Home Section */
#home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  background: var(--content-bg);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1200px;
  border: 1px solid rgba(37, 99, 235, 0.2); /* subtle dark blue border */
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.home-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 3px solid var(--accent);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.home-image img:hover {
  transform: scale(1.03);
}

.home-text {
  flex: 1.2;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.typing-animation {
  display: inline-block;
  overflow: hidden;
  border-right: 3px solid var(--accent);
  white-space: nowrap;
  animation: typing 1.5s steps(10) forwards, blink-caret 0.8s step-end infinite 1.5s;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 8.5ch;
  }
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.home-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
}

.website-note {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin: 20px 0;
  border-left: 3px solid var(--accent);
  padding-left: 15px;
}

/* Button */
.button {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.15);
  transition: all 0.3s ease;
  z-index: -1;
}

.button:hover {
  color: var(--background);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.button:hover::before {
  left: 0;
  background: var(--primary);
}

/* Footer */
footer {
  background-color: var(--content-bg);
  padding: 25px 20px;
  color: var(--text-light);
  text-align: center;
  font-size: 1rem;
  margin-top: 60px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(37, 99, 235, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  #home {
    gap: 40px;
  }

  .home-image img {
    max-width: 300px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  #home {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .home-image,
  .home-text {
    width: 100%;
  }

  .home-image img {
    max-width: 280px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar .container {
    flex-direction: column;
  }

  .navbar-brand {
    margin-bottom: 10px;
  }

  body {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav a {
    margin: 5px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .home-text p {
    font-size: 1rem;
  }
}