/* RESET & BASE */
:root { 
  --accent: #5682B1; 
  --muted: #aaa; 
  --card: #111; 
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  z-index: 1000;
  position: relative;
}

.logo img {
  height: 30px;
  width: auto;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  margin-left: auto;
  z-index: 1200;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: color .25s ease;
}

.nav-links li a:hover {
  color: var(--accent);
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 1000;
  border: 1px solid #111;
}

.dropdown-content a {
  color: white;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #111;
}

/* Desktop hover open */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 60px 10% 30px;
  text-align: left;
  background: #000;
}

.page-header .container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-header .lead {
  color: #ccc;
  margin-top: 6px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PORTFOLIO LIST ===== */
.portfolio-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 14px;
  padding-bottom: 30px;
}

.portfolio-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.04);
}

/* Thumbnail */
.portfolio-item .thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text meta */
.portfolio-item .meta h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.portfolio-item .meta .tagline {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

/* Chevron */
.portfolio-item .chev {
  margin-left: auto;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  transform: translateX(6px);
  transition: transform .18s ease;
}

.portfolio-item:hover .chev {
  transform: translateX(0);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #000;
  color: #999;
  border-top: 1px solid #1a1a1a;
  font-size: 0.9rem;
}

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {
  .navbar { padding: 15px 25px; }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 64px);
    background: #000;
    flex-direction: column;
    gap: 18px;
    padding-top: 28px;
    transition: right 0.3s ease;
    align-items: center;
    z-index: 1100;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    padding: 15px 0;
    display: block;
  }

  /* mobile dropdown stays hidden unless tapped */
  .dropdown-content {
    position: static;
    width: 100%;
    border: none;
    display: none;
  }

  .dropdown-content.show {
    display: block !important;
  }
}

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.social-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}

