@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #0F1B3C;
  background-color: #FFFFFF;
}

a {
  color: #0F1B3C;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #D4A574;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
}

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
}
header .site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  header .site-header {
    padding: 0 1rem;
  }
}

.site-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F1B3C;
}
.site-title .logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-title {
    font-size: 1.25rem;
    gap: 0.75rem;
  }
  .site-title .logo {
    width: 40px;
    height: 40px;
  }
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 768px) {
  .site-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.site-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.site-nav a:hover, .site-nav a.active {
  color: #D4A574;
  border-bottom-color: #D4A574;
}

.hero {
  background-color: transparent;
  color: #0F1B3C;
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem 1rem;
  }
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  color: #0F1B3C;
  margin-bottom: 1rem;
}
.hero .tagline {
  font-size: 1.25rem;
  color: #6B7280;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .hero .tagline {
    font-size: 1.1rem;
  }
}
.hero .subtitle {
  font-size: 1.25rem;
  color: #1F2937;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}
.hero .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero .cta-buttons .btn {
  background-color: transparent !important;
  color: #6B7280 !important;
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 0.25rem 0 !important;
  border-radius: 0 !important;
  font-weight: 400;
}
.hero .cta-buttons .btn:hover {
  background-color: transparent !important;
  transform: none !important;
  border-bottom-color: #0F1B3C !important;
  color: #0F1B3C !important;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.btn.btn-primary {
  background-color: #D4A574;
  color: #0F1B3C;
}
.btn.btn-primary:hover {
  background-color: rgb(199.9505494505, 139.7802197802, 77.0494505495);
  transform: translateY(-2px);
}
.btn.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #D4A574;
  color: #D4A574;
}
.btn.btn-outline {
  background-color: transparent;
  color: #0F1B3C;
  border-color: #0F1B3C;
}
.btn.btn-outline:hover {
  background-color: #0F1B3C;
  color: #FFFFFF;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 1rem 0;
  }
}
.section.alt {
  background-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.section-header h2 {
  margin-bottom: 0.5rem;
}
.section-header p {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  box-shadow: none;
}
.card:hover {
  box-shadow: none;
  background-color: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.15);
  transform: none;
}
.card h3 {
  color: #0F1B3C;
  margin-bottom: 1rem;
}
.card p {
  color: #6B7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.card .card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.card .card-meta .tag {
  display: inline-block;
  background-color: #F5F1E8;
  color: #0F1B3C;
  padding: 0.375rem 0.875rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.card .card-link {
  color: #D4A574;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.card .card-link:hover {
  gap: 0.75rem;
}

.project-card .project-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.project-card .project-description {
  color: #6B7280;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.project-card .project-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.project-card .project-disciplines .discipline {
  background-color: rgba(0, 217, 255, 0.1);
  color: #00D9FF;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0F1B3C;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none !important;
  }
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 280px;
  background-color: #FFFFFF;
  z-index: 999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.active {
  left: 0;
}
.mobile-drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-drawer .drawer-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6B7280;
  cursor: pointer;
}
.mobile-drawer .drawer-nav {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}
.mobile-drawer .drawer-nav li {
  margin-bottom: 1.5rem;
}
.mobile-drawer .drawer-nav li a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #0F1B3C;
  display: block;
  text-decoration: none;
}
.mobile-drawer .drawer-nav li a.active, .mobile-drawer .drawer-nav li a:hover {
  color: #D4A574;
}

footer.site-footer {
  background-color: #FAFAFA;
  color: #0F1B3C;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
footer.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
footer.site-footer .footer-flex-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  footer.site-footer .footer-flex-container {
    flex-direction: column;
    gap: 2rem;
  }
}
footer.site-footer .footer-section {
  flex: 1;
}
footer.site-footer .footer-section h4 {
  color: #0F1B3C;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
footer.site-footer .footer-section a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer.site-footer .footer-section a:hover {
  color: #D4A574;
}
footer.site-footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: #6B7280;
  font-size: 0.9rem;
}

.page-content {
  min-height: calc(100vh - 300px);
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .page-content {
    padding: 2rem 0;
  }
}
.page-content h1 {
  margin-bottom: 1.5rem;
}
.page-content p {
  margin-bottom: 1rem;
}

.profile-card {
  background-color: #FFFFFF;
  border: 1px solid #F5F1E8;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
}
.profile-card .profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 4px solid #D4A574;
}
.profile-card .profile-name {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.profile-card .profile-title {
  font-size: 1.125rem;
  color: #D4A574;
  text-align: center;
  margin-bottom: 1.5rem;
}
.profile-card .profile-bio {
  color: #6B7280;
  text-align: center;
  margin-bottom: 2rem;
}
.profile-card .profile-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.profile-card .profile-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F5F1E8;
  color: #0F1B3C;
  transition: all 0.3s ease;
}
.profile-card .profile-links a:hover {
  background-color: #D4A574;
  color: #FFFFFF;
}
.profile-card .profile-sections {
  margin-top: 2rem;
}
.profile-card .profile-sections .profile-section {
  margin-bottom: 2rem;
}
.profile-card .profile-sections .profile-section h3 {
  color: #0F1B3C;
  border-bottom: 2px solid #D4A574;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.profile-card .profile-sections .profile-section ul {
  list-style: none;
}
.profile-card .profile-sections .profile-section ul li {
  margin-bottom: 0.5rem;
  color: #6B7280;
}
.profile-card .profile-sections .profile-section ul li a {
  color: #D4A574;
}
.profile-card .profile-sections .profile-section ul li a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}

blockquote {
  border-left: 4px solid #D4A574;
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: #6B7280;
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #F5F1E8;
}
table th {
  background-color: #F5F1E8;
  font-weight: 600;
  color: #0F1B3C;
}
table tr:hover {
  background-color: rgba(212, 165, 116, 0.05);
}

code {
  background-color: #F5F1E8;
  color: #0F1B3C;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 0.9rem;
}

pre {
  background-color: #1F2937;
  color: #FFFFFF;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: #D4A574;
}

.text-cyan {
  color: #00D9FF;
}

.text-muted {
  color: #6B7280;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}
@media (min-width: 769px) {
  .show-mobile {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */