/* ========== GLOBAL STYLES ========== */
body {
  margin: 0;
  padding: 0;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #eceff1;
  color: #1d1d1f;
}

/* ========== SECTION CARD STYLING (Apple-style) ========== */
.card-box {
  background-color: #F8F8F6; /* Light neutral tone */
  border-radius: 24px;
  padding: 2rem;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
}

.card-box:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25); /* Subtle lift on hover */
}


/* ========== HEADER & NAVIGATION ========== */
.header {
  background-color: #F8F8F6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Nav list layout */
.nav-links {
  list-style: none;         /* Removes bullets */
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  position: relative;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

/* Nav link styling */
.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* adjust this to match your header height */
}

/* ========== NAVIGATION HOVER EFFECT ========== */
.nav-links a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  display: inline-block;
}

.nav-links a:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 👈 Dark shadow on hover */
  background-color: #F0F0ED; /* optional: soft bg fill */
  color: #000; /* optional: keep text darker on hover */
}


/* Hamburger icon hidden by default (desktop) */
.menu-toggle {
  display: none;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #1d1d1f;
  margin: 4px 0;
}

/* ========== HERO SECTION ========== */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color:#eceff1;
  margin-bottom: 3rem;
}

/* ========== HERO IMAGE STYLING ========== */
.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;              /* Makes it a circle */
  object-fit: cover;               /* Keeps aspect ratio */
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ========== ABOUT ME SECTION ========== */
.about-me {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.about-me h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-me p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* ========== QUOTE BANNER SECTION ========== */
.quote-banner {
  background-color: #eceff1; /* Light slate blue/gray – adjust for color pop */
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.quote-container {
  max-width: 800px;         /* ✅ Keeps it narrow on desktop */
  width: 100%;
  padding: 2rem;
  border-radius: 24px;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.quote-container blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #2f2f2f;
  line-height: 1.8;
  margin: 0;
}

.quote-container span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #555;
}

.quote-banner blockquote {
  font-family: 'Georgia', serif; /* Optional: add custom font here */
  font-size: 1.5rem;
  font-style: italic;
  color: #2f2f2f;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.quote-banner span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  color: #555;
}


/* ========== MAIN SECTIONS ========== */
.experience, .projects, .contact {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}


section {
  margin: 3rem 0;
}

h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.project-item, .experience-item {
  margin-bottom: 1.5rem;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.usf-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

.usf-badge img {
  height: 24px;
  width: auto;
  border-radius: 4px; /* optional */
}



/* ========== SKILLS SECTION ========== */
.skills {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.skills-list li {
  background-color: #f0f0ed;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.skills-list li:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  background-color: #e8e8e5;
}

/* ========== PROJECT CARDS ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  display: block;
  background-color: #f8f8f6;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1d1d1f;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, transform 0.2s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.project-info {
  padding: 1rem;
}

.project-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.project-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* ========== CONTACT BUTTONS ========== */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-buttons a {
  text-decoration: none;
  background-color: #f0f0ed;
  color: #1d1d1f;
  padding: 0.75rem 1.5rem;
  border-radius: 999px; /* 👈 Pill shape */
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.contact-buttons a:hover {
  background-color: #e8e8e5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}



/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #e5e5e5;
}

/* ========== RESPONSIVE (MOBILE) STYLES ========== */
@media (max-width: 768px) {
  .card-box {
    margin: 2rem auto;
    max-width: 900px;
  }
  .nav-links {
    display: none;               /* Hide by default on mobile */
    flex-direction: column;
    background-color: #F8F8F6;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;               /* Show when active class is toggled */
  }

    .nav-links a {
    width: 100%;
    text-align: left;
  }

  .nav-links li {
    margin-bottom: 0.5rem;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    cursor: pointer;
  }

  html {
    scroll-padding-top: 80px;
  }

  .skills-list {
    justify-content: flex-start;
  }
}