/* Section styling */
.navbar {
  background: #1e2540;
}
.resume-section {
  background: #1e2540;
  color: white;
  text-align: left;
}

.resume-container {
  max-width: 1500px;
  margin-left: 270px;
}

/* Title */
.resume-title {
  padding-top: 100px;
  border-bottom: 2px solid white;
  display: inline-block; /* so the underline fits the text */
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 52px;
  margin-left: 300px;
  letter-spacing: 2px;
  height: 170px;
}

/* Text */
.resume-text {
  font-size: 17px;
  line-height: 1.6;
  margin-left: 300px;
  margin-right: 200px;
  margin-bottom: 25px;
  margin-top: 30px;
}

/* Buttons */
.resume-buttons {
  margin-bottom: 90px;
  margin-left: 290px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 8px;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  color: #96d9ee;
  border: 2px solid #96d9ee;
}

/* PDF viewer */
.resume-pdf iframe {
  width: 100%;           /* make iframe responsive */
  max-width: 1000px;     /* cap so it doesn’t grow too wide */
  height: 800px;         /* reasonable height on desktop */
  border: none;
  margin: 0 auto;
  display: block;
}

/* Default styles (desktop-first) – keep your code here */

/* Mobile styles */
@media (max-width: 768px) {
  .resume-container {
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    max-width: 100%;
  }

  .resume-title {
    margin-left: 15px;
    margin-top: 30px;
    font-size: 1.6em;
    text-align: center; /* center for phone */
    height: auto;
    padding-top: 80px;
  }

  .resume-text {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 15px;
    text-align: left;
  }

  .resume-buttons {
    margin-left: 0;
    text-align: left;
  }

  .btn {
    width: 40%; /* make buttons stretch full width */
    box-sizing: border-box;
  }

  .resume-pdf iframe {
    width: 100%;
    height: 700px;
   /* smaller height for phone */
    
  }

  .btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 8px;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
}
