/* VARIABLES & RESET */
:root {
  --bg-color: #000;
  --text-color: #fff;
  --section-border: #222;
  --link-color: #fff;
  --link-border: #fff;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav{
  position:fixed;
  top:0;
  width:100%;
  padding:22px 6vw;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  background: rgba(0, 0, 0, 0.264);
  backdrop-filter: blur(8px);
  z-index:20;
  border-bottom:1px solid transparent;
}

.logo { font-weight:700; }

.nav-links {
  display:flex;
  align-items:center;
}

.nav-links a {
  color: var(--link-color);
  text-decoration:none;
  margin-left: 24px;
  opacity: 0.7;
  transition: opacity .2s;
}

.nav-links a:hover { opacity:1; }

button#modeToggle {
  margin-left: 24px;
  background: transparent;
  color: var(--link-color);
  border: 1px solid var(--link-border);
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
}

/* HAMBURGER */
#hamburger {
  display:none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

#hamburger span {
  display:block;
  height: 3px;
  width: 100%;
  background: var(--link-color);
  border-radius: 2px;
}

/* SIDEBAR (RIGHT) */
#sidebar {
  position: fixed;
  top:0;
  right:-250px;
  width:250px;
  height:100%;
  background: rgba(0, 0, 0, 0.264);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  padding: 100px 20px;
  gap: 20px;
  transition: right 0.3s ease;
  z-index:30;
}

#sidebar.open {
  right:0;
}

#sidebar a {
  color: #fff;
  text-decoration:none;
  font-size:18px;
}

#sidebar button {
  margin-top: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 6px 10px;
  cursor: pointer;
  font-size:16px;
}

/* SECTIONS */
section {
  padding: 120px 6vw;
  border-bottom: 1px solid var(--section-border);
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  padding-top:160px;
}

.hero h1{
  font-size: clamp(48px, 10vw, 140px);
  font-weight:700;
  line-height:.9;
  text-transform: uppercase;
}

.hero p{
  margin-top:24px;
  max-width:480px;
  font-size:18px;
  opacity:.7;
}

/* WORK GRID */
.work-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top:60px;
}

.work-item {
  flex: 1 1 calc(33.333% - 16px);
  margin-bottom:24px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
}

.work-item img {
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  filter: grayscale(100%);
  transition: filter .3s, transform .3s;
}

.work-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* BIG TEXT */
.big-text{
  font-size: clamp(28px, 5vw, 70px);
  text-transform: uppercase;
  line-height:1;
  max-width:900px;
}

/* CONTACT */
.contact a{
  color: var(--link-color);
  font-size:22px;
  text-decoration:none;
  border-bottom:1px solid var(--link-border);
  padding-bottom:4px;
}

/* FOOTER */
footer{
  padding:40px 6vw;
  font-size:14px;
  opacity:.5;
}

/* FADE ANIMATION */
.fade{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 1s ease, transform 1s ease;
}
.fade.visible{
  opacity:1;
  transform:translateY(0);
}

/* LIGHT MODE */
body.light {
  --bg-color:#fff;
  --text-color:#000;
  --section-border:#ddd;
  --link-color:#000;
  --link-border:#000;
}
body.light .work-item img:hover{
  filter: grayscale(0%);
}

/* RESPONSIVE */
@media screen and (max-width:900px){
  .work-item { flex:1 1 calc(50% - 12px); }
  .nav-links { display:none; }
  #hamburger { display:flex; }
}

@media screen and (max-width:600px){
  .work-item { flex:1 1 100%; }
}

/* VOID.PRESS PREVIEW — LEFT ALIGNED */
.voidpress-preview {
  padding: 120px 6vw;
  text-align: left;
}

.voidpress-preview .big-text {
  margin-bottom: 20px;
}

.voidpress-desc {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 0 40px 0;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 700;
}

.voidpress-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 3px solid var(--text-color);
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-color);
  transition: 0.15s;
}

.voidpress-btn:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

