/* ===== GLOBAL WEBSITE + REVEALJS STYLING ===== */

/* Website Background */
body {
  background-color: #F4F8FC;
  color: #333333;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ===== NAVBAR ===== */

.navbar {
  background-color: #143B63 !important;
}

.navbar a,
.navbar-brand,
.navbar-nav .nav-link {
  color: white !important;
}

.navbar a:hover,
.navbar-nav .nav-link:hover {
  color: #BFD7FF !important;
}

/* ===== HEADINGS ===== */

h1, h2, h3 {
  color: #143B63;
  font-weight: 700;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
}

.about-image img {
  width: 420px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
}

.about-text {
  max-width: 700px;
}

.about-text h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */

.custom-button,
.linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid #5c6570;
  border-radius: 14px;
  text-decoration: none;
  color: #5c6570;
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.3s;
  background-color: white;
}

.custom-button:hover,
.linkedin-button:hover {
  background-color: #143B63;
  color: white;
}

.button-container,
.linkedin-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===== CALLOUTS ===== */

.callout-note {
  border-left: 6px solid #4F83FF;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ===== RESUME ===== */

.resume-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.resume-contact {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 3px solid #143B63;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #143B63;
}

.resume-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.resume-row h3 {
  margin: 0;
}

.resume-date {
  font-weight: bold;
}

.job-title {
  font-style: italic;
  margin-bottom: 10px;
}

.resume-list {
  margin-left: 30px;
  line-height: 1.6;
}

/* ===== LINKS ===== */

a {
  color: #4F83FF;
}

a:hover {
  color: #143B63;
}

/* ===== REVEALJS PRESENTATION ===== */

.reveal {
  background-color: #DCE6F2 !important;
  color: #333333;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Slide Layout */
.reveal .slides {
  text-align: left;
}

.reveal section {
  padding: 40px 70px;
  box-sizing: border-box;
}

/* Presentation Headings */
.reveal h1,
.reveal h2,
.reveal h3 {
  color: #143B63;
  font-weight: 700;
}

/* Presentation Text */
.reveal p,
.reveal li {
  font-size: 0.9em;
  line-height: 1.3;
}

/* Presentation Boxes */
.tool-box {
  background-color: white;
  border-left: 6px solid #4F83FF;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.big-insight {
  background-color: white;
  border-left: 8px solid #4F83FF;
  padding: 30px;
  border-radius: 16px;
  color: #143B63;
  text-align: center;
}