/* rakeshbaruah.com */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html {
  font-size: 18px;
  line-height: 1.7;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #111;
  background: #fff;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Typography */
h1 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

h2 {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: #444;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.2rem;
}

/* Header */
.site-header {
  margin-bottom: 3rem;
}

.site-header .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
}

.site-header .location {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
}

/* Navigation */
nav {
  margin-bottom: 3rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

nav a {
  color: #111;
  text-decoration: none;
  margin-right: 1.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  text-decoration: underline;
}

/* Main content */
main {
  min-height: 50vh;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Work listings */
.work-entry {
  margin-bottom: 2.5rem;
}

.work-entry h3 {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.work-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.work-meta span {
  margin-right: 1.2rem;
}

/* Links */
a {
  color: #111;
}

a.download-link {
  font-size: 0.9rem;
  text-decoration: underline;
}

.request-note {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

/* Contact */
.contact-info {
  font-size: 1rem;
}

.contact-info a {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  font-size: 0.8rem;
  color: #999;
}

/* Responsive */
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  body {
    padding: 2.5rem 1.2rem;
  }

  nav a {
    margin-right: 1.2rem;
  }
}
