/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #fff;
  text-decoration: none;
}

/* =========================
   Base
========================= */
body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0c;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   Header
========================= */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
}



nav a {
  margin: 0 15px;
  font-size: 14px;
  opacity: 0.85;
  transition: 0.2s;
}

nav a:hover {
  opacity: 1;
}

/* =========================
   Button
========================= */
.btn {
  background: #fff;
  color: #000;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.4) 55%, transparent 100%),
    url('../images/hero.png') right center / cover no-repeat;
}

.hero-content {
  max-width: 650px;
  margin-top: 40px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

/* =========================
   About Section
========================= */
.about-preview {
  background: #f5f5f5;
  color: #111;
  padding: 100px 0;
}

.about-preview .container {
  max-width: 900px;
}

.about-preview p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* =========================
   Posts
========================= */
.posts {
  background: #f5f5f5;
  padding: 80px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-link {
  display: block;
  color: inherit;
}

.card {
  background: #fff;
  color: #111;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: 0.25s ease;
}

.card-link:hover .card {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.card-content {
  padding: 20px;
}

.card-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* =========================
   Footer
========================= */
footer {
  background: #0b0b0c;
  padding: 80px 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

footer a {
  opacity: 0.7;
}

footer a:hover {
  opacity: 1;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 42px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
}

/* =========================
   POST PAGE
========================= */
.post {
  background: #f5f5f5;
  color: #111;
  padding: 140px 20px 80px;
}

.post-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.post h1 {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.post p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* IMAGE */
.post-image {
  margin: 40px 0;
}

.post-image img {
  width: 100%;
  border-radius: 6px;
}

/* SHARE */
.post-share {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.post-share a {
  font-size: 14px;
  color: #111;
  opacity: 0.7;
}

.post-share a:hover {
  opacity: 1;
}

/* Post footer link */
.post-footer-link {
  margin-top: 20px;
}

.post-footer-link a {
  font-size: 14px;
  color: #111;
  opacity: 0.7;
}

.post-footer-link a:hover {
  opacity: 1;
}

/* PAGE HERO */
.page-hero {
  padding: 140px 0 80px;
  background: #0b0b0c;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p {
  opacity: 0.7;
}

/* ABOUT PAGE */
.about-page {
  background: #f5f5f5;
  color: #111;
  padding: 80px 0;
}

.container.narrow {
  max-width: 800px;
}

.about-page p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* SECTION HEADINGS */
.about-page h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 22px;
}

/* CLEAN LIST */
.clean-list {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.clean-list li {
  margin-bottom: 10px;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
  font-weight: 500;
  line-height: 1.6;
}

/* TEAM PAGE */
.team-page {
  padding: 140px 0 80px;
  background: #f5f5f5;
  color: #111;
}

.team-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

/* LEFT SIDE */
.team-left h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.team-card {
  display: block;
  text-decoration: none;
  color: #111;
  transition: 0.25s ease;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.team-card h3 {
  font-size: 14px;
  margin-top: 10px;
}

.team-card p {
  font-size: 13px;
  opacity: 0.6;
}

/* HOVER EFFECT */
.team-card:hover {
  transform: translateY(-5px);
}

/* RIGHT SIDE */
.team-right h2 {
  margin-bottom: 20px;
}

.team-right h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.team-right p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.team-right ul {
  padding-left: 20px;
}

.team-right li {
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 900px) {
  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PROFILE / POST PAGE */
.post {
  background: #f5f5f5;
  color: #111;
  padding: 120px 20px;
}

.post-inner {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.post h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.post p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.post-image img {
  width: 100%;
  margin-top: 30px;
  border-radius: 6px;
}

.post-share {
  margin-top: 20px;
}

.post-share a {
  margin-right: 15px;
  color: #111;
  font-size: 14px;
}
/* =========================
   PROJECTS PAGE
========================= */

.projects-page {
  background: #f5f5f5;
  color: #111;
  padding: 80px 0;
}

.projects-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

/* LEFT TEXT */
.projects-left p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.projects-left h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.projects-left ol {
  margin: 20px 0;
  padding-left: 20px;
}

.projects-left li {
  margin-bottom: 10px;
}

/* RIGHT BUTTONS */
.projects-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-btn {
  display: block;
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  transition: 0.2s;
}

.project-btn:hover {
  background: #000;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 900px) {
  .projects-layout {
    grid-template-columns: 1fr;
  }
}


.logo img {
  height: 100px;          /* make it bigger */
  width: auto;
  display: block;
}

header {
  height: 80px;          /* lock header height */
  padding: 0 40px;       /* remove vertical padding */
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible;     /* allows logo to exceed header slightly */
}