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

body, html {
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
  background: #1C2526; /* Deeper charcoal gray */
  color: #F0F0F0; /* Very light gray text */
  overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barFill {
  from {
    width: 0;
  }
  to {
    width: inherit;
  }
}

/* Sticky Navigation Bar */
header nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2A3437; /* Darker gray for nav */
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

nav a {
  color: #45B7A6; /* Muted teal accent */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #F28C82; /* Soft coral hover */
  transform: scale(1.05);
  box-shadow: 0 2px 0 #F28C82;
}

/* Scroll Container */
main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* Sections */
.page {
  scroll-snap-align: start;
  min-height: 100vh;
  padding: 100px 20px 40px;
  background: linear-gradient(to bottom, #1C2526, #2A3437); /* Subtle gradient */
  border-bottom: 2px solid #45B7A6; /* Teal border */
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.6s ease-out;
}

/* Image and Text Layout */
.section-content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  background: #1A2A44; /* Night owl midnight blue */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #111111; /* Black text on white */
}

/* Home Section Styling */
#home {
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px 40px;
  background: linear-gradient(to bottom, #1C2526, #2A3437);
  color: #F0F0F0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home .section-content {
  display: flex;
  justify-content: center;
}

#home .home-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

#home .text-content {
  text-align: left;
  max-width: 600px;
}

#home .text-content p {
  font-size: 1.1em;
  line-height: 1.9;
  color: #F0F0F0; /* Adjusted for night owl background */
  margin-bottom: 15px;
  font-weight: 400;
}

#home .text-content p:first-of-type {
  font-size: 1.2em;
  font-weight: 500;
}

#home .text-content strong {
  color: #45B7A6; /* Muted teal for emphasis */
  font-weight: 700;
}

#home .learn-more {
  color: #45B7A6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

#home .learn-more:hover {
  color: #F28C82; /* Soft coral hover */
  box-shadow: 0 2px 0 #F28C82;
}

#home .image-wrapper {
  justify-self: end;
}

#home .profile-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%; /* Circular image */
  border: 4px solid #45B7A6;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

/* About, Education, Languages, Projects, Contact, Interests Sections */
#about, #education, #languages, #projects, #contact, #interests {
  background: #1C2526;
  padding: 100px 20px 40px;
  color: #F0F0F0;
}

#about h2, #education h2, #languages h2, #projects h2, #contact h2, #interests h2 {
  color: #9AB8D8; /* Pale blue for headings */
  font-size: 2.6em;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

h3 {
  color: #2E7D32; /* Darker green for subheadings */
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: 600;
}

p, li {
  font-size: 1.1em;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #F0F0F0; /* Adjusted for night owl background */
  font-weight: 400;
}

ul {
  list-style: square;
  padding-left: 30px;
  margin-bottom: 25px;
}

li strong {
  color: #45B7A6; /* Muted teal for emphasis */
  font-weight: 700;
}

/* Links and Buttons */
a.btn, a.link {
  color: #45B7A6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

a.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #45B7A6;
  color: #FFFFFF;
  border-radius: 8px;
  margin-top: 15px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

a.btn:hover, a.link:hover {
  color: #F28C82; /* Soft coral hover */
}

a.btn:hover {
  background: #F28C82;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Languages Section Styling */
#languages .section-content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#languages .text-content ul {
  list-style: square;
  padding-left: 30px;
  margin-bottom: 25px;
}

#languages .text-content li {
  font-size: 1.1em;
  line-height: 1.9;
  margin-bottom: 10px;
  color: #F0F0F0; /* Adjusted for night owl background */
}

#languages .familiarity-visualization {
  margin-top: 20px;
}

#languages .bar-container {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

#languages .bar-label {
  width: 140px;
  font-size: 1em;
  color: #9AB8D8; /* Pale blue */
  font-weight: 500;
}

#languages .bar {
  width: 100%;
  max-width: 450px;
  height: 20px;
  background: #2A3437; /* Darker gray */
  border-radius: 6px;
  overflow: hidden;
}

#languages .bar-fill {
  height: 100%;
  background: #45B7A6;
  transition: width 1s ease-in-out;
  animation: barFill 1.5s ease-out;
}

#languages .bar-fill.python {
  background: #45B7A6;
}

#languages .bar-fill.javascript,
#languages .bar-fill.java {
  background: #F28C82; /* Soft coral for variety */
}

/* Projects Section Styling */
#projects .section-content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

#projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

#projects .project {
  background: #1A2A44; /* Night owl midnight blue */
  border: 2px solid #45B7A6;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#projects .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#projects .project-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

#projects .project h3 {
  font-size: 1.5em;
  margin-bottom: 8px;
}

#projects .project p {
  font-size: 1em;
  line-height: 1.6;
  color: #F0F0F0; /* Adjusted for night owl background */
  margin-bottom: 10px;
  max-width: 100%;
}

#projects .project a.btn {
  color: #FFFFFF;
  background: #45B7A6;
  padding: 8px 16px;
  font-size: 1em;
}

/* Contact Section Styling */
#contact .section-content {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #1A2A44; /* Night owl midnight blue */
  padding: 20px;
  border: 2px solid #45B7A6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #F0F0F0; /* Adjusted for night owl background */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact .section-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#contact .contact-list {
  list-style: none;
  padding: 0;
}

#contact .contact-list li {
  font-size: 1.1em;
  line-height: 1.9;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #F0F0F0; /* Adjusted for night owl background */
}

#contact .contact-list li i {
  color: #45B7A6;
  font-size: 1.2em;
  margin-right: 12px;
  width: 24px;
  text-align: center;
}

#contact .contact-list li strong {
  color: #F0F0F0; /* Adjusted for night owl background */
  font-weight: 700;
  margin-right: 6px;
}

#contact .contact-list li a {
  color: #45B7A6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#contact .contact-list li a:hover {
  color: #F28C82;
}

/* Footer */
footer {
  background: #2A3437;
  padding: 25px;
  text-align: center;
  border-top: 2px solid #45B7A6;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

footer p {
  font-size: 1em;
  color: #9AB8D8; /* Pale blue */
  font-weight: 400;
}

/* Interests Section Styling */
#interests .section-content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

#interests h2 {
  color: #9AB8D8;
  font-size: 2.6em;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

#interests .text-content ul {
  list-style: square;
  padding-left: 30px;
  margin-bottom: 25px;
}

#interests .text-content li {
  font-size: 1.1em;
  line-height: 1.9;
  color: #F0F0F0; /* Adjusted for night owl background */
  margin-bottom: 10px;
}

#interests .text-content li strong {
  color: #F0F0F0; /* Adjusted for night owl background */
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    flex-wrap: wrap;
    gap: 20px;
    padding: 12px 15px;
  }

  nav a {
    font-size: 1em;
    padding: 8px 12px;
  }

  .page {
    padding: 80px 15px 30px;
  }

  #home .home-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  #home .text-content {
    text-align: center;
    margin-bottom: 25px;
  }

  #home .image-wrapper {
    justify-self: center;
  }

  #home .profile-img {
    width: 220px;
    height: 220px;
  }

  .section-content {
    max-width: 90%;
  }

  #languages .text-content {
    text-align: center;
    max-width: 90%;
  }

  #languages .text-content ul {
    padding-left: 20px;
  }

  #languages .bar-container {
    flex-direction: column;
    align-items: center;
  }

  #languages .bar-label {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  #languages .bar {
    max-width: 100%;
  }

  #projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }

  #projects .project {
    align-items: center;
    padding: 12px;
  }

  #projects .project-img {
    max-width: 160px;
  }

  #projects .project h3 {
    font-size: 1.4em;
  }

  #projects .project p {
    font-size: 0.95em;
  }

  #projects .project a.btn {
    font-size: 0.9em;
    padding: 6px 12px;
  }

  #projects h2 {
    text-align: center;
  }

  #contact .contact-list li {
    text-align: center;
    justify-content: center;
  }

  #contact h2 {
    text-align: center;
  }

  #interests {
    padding: 80px 15px 30px;
  }

  #interests .section-content {
    max-width: 90%;
  }

  #interests h2 {
    font-size: 2.2em;
  }

  #interests .text-content li {
    font-size: 1em;
  }

  #about h2, #education h2, #languages h2, #projects h2, #contact h2, #interests h2 {
    font-size: 2.2em;
  }

  h3 {
    font-size: 1.6em;
  }

  p, li {
    font-size: 1em;
  }

  #home .text-content p {
    font-size: 1em;
  }

  #home .text-content p:first-of-type {
    font-size: 1.1em;
  }

  #home .learn-more {
    font-size: 1em;
  }

  #languages .bar-label {
    font-size: 0.95em;
  }

  #contact .contact-list i {
    font-size: 1.1em;
  }

  footer p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  header nav {
    gap: 15px;
    padding: 10px;
  }

  nav a {
    font-size: 0.95em;
    padding: 6px 10px;
  }

  .page {
    padding: 70px 10px 20px;
  }

  #home .profile-img {
    width: 180px;
    height: 180px;
  }

  #home .text-content p {
    font-size: 0.95em;
  }

  #home .text-content p:first-of-type {
    font-size: 1.05em;
  }

  #home .learn-more {
    font-size: 0.95em;
  }

  #languages .text-content li {
    font-size: 0.95em;
  }

  #languages .familiarity-visualization h3 {
    font-size: 1.4em;
  }

  #languages .bar-label {
    font-size: 0.9em;
  }

  #languages .bar {
    height: 16px;
  }

  #projects .project-img {
    max-width: 140px;
  }

  #projects .project h3 {
    font-size: 1.3em;
  }

  #projects .project p {
    font-size: 0.9em;
  }

  #projects .project a.btn {
    font-size: 0.85em;
    padding: 5px 10px;
  }

  #projects h2 {
    font-size: 1.8em;
  }

  #contact h2 {
    font-size: 1.8em;
  }

  #contact .contact-list li {
    font-size: 0.95em;
  }

  #contact .contact-list i {
    font-size: 1em;
  }

  #interests {
    padding: 70px 10px 20px;
  }

  #interests h2 {
    font-size: 1.8em;
  }

  #interests .text-content li {
    font-size: 0.95em;
  }

  #about h2, #education h2, #languages h2, #projects h2, #contact h2, #interests h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.4em;
  }

  p, li {
    font-size: 0.95em;
  }

  footer p {
    font-size: 0.85em;
  }
<<<<<<< HEAD
}
=======
}
>>>>>>> 948c4434c5bf36d034ae16cafd4359cd61932055
