:root{
  --bg: rgb(9,10,12);
  --muted-white: rgba(255,255,255,0.95);
  --accent: #d4a15a;
  --purple: #b99aff;
  --neon: #d9ff00;
}

/* Global */
body {
  margin: 0;
  padding: 0;
  background-color: rgb(9,10,12);
  font-family: jetbrains;
  scroll-behavior: smooth;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(9, 10, 12, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-sizing: border-box;
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
}

.logo img {
  height: 55px;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
  transition: 0.25s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.nav a span {
  display: block;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s;
  color: white;
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover span {
  transform: translateY(-100%);
}

.nav a:hover::after {
  transform: translateY(0%);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background-color: rgb(9,10,12);
  display: flex;
  align-items: center;
  padding-left: 120px;
  box-sizing: border-box;
  overflow: hidden;
}

.hello {
  color: #d4a15a;
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: 500;
  cursor: default;
}

.hero-title {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  cursor: default;
}

/* Background Pattern */
.hero-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-pattern svg {
  width: 100%;
  height: 100%;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.line {
  width: 40px;
  height: 2px;
  background-color: rgba(255,255,255,0.2);
}

:root{
  --bg: rgb(9,10,12);
  --muted-white: rgba(255,255,255,0.92);
  --muted-gray: rgba(255,255,255,0.18);
  --accent: #d4a15a;
  --container-width: 1200px;
}

.about-section{
  background: var(--bg);
  color: var(--muted-white);
  padding: 60px 24px;
  box-sizing: border-box;
}

.container{
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Header (Small line + About) */
.about-header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.about-line{
  width: 50px;
  height: 2px;
  background: var(--muted-gray);
  display: block;
}

.about-header h2{
  margin: 0;
  color: var(--accent);
  letter-spacing: 6px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

/* Grid (Left photo, Right text) */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

/* Text column */
.about-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  cursor: default;
}

.about-text p{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.95;
  max-width: 720px;
  color: var(--muted-white);
  letter-spacing: 0.2px;
  font-weight: 400;
  text-align: justify;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.25s ease;
}

.about-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Photo */
.about-photo{
  margin: 0;
  background: rgba(255,255,255,0.03);
  padding: 18px;
  display: block;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
  border-radius: 2px;
}

.about-photo img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  background: #1b1b1b;
}

.hover-tooltip {
  position: fixed;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2c266;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 0.15s ease;
  z-index: 9999;
}

/* Projects Header */
.projects-section{
  background: var(--bg);
  color: var(--muted-white);
  padding: 80px 24px;
  box-sizing: border-box;
}

.container{
  max-width: var(--container-width);
  margin: 0 auto;
}

.projects-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.projects-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.projects-line{
  width: 38px;
  height: 2px;
  background: var(--muted-gray);
  display: inline-block;
}

.projects-label{
  margin: 0;
  color: var(--accent);
  letter-spacing: 6px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

.projects-title{
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--muted-white);
  max-width: 920px;
  letter-spacing: -0.5px;
  cursor: default;
}

.projects-subtitle {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 500;
  max-width: 900px;
  margin: 28px auto 60px;
  line-height: 1.4;
  color: var(--muted-white);
}

.projects-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted-white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 10px;
  transition: color .18s ease, transform .12s ease;
  white-space: nowrap;
}

.projects-all .arrow{
  font-size: 20px;
  transform: translateY(-1px);
  color: var(--muted-white);
}

/* Hover */
.projects-all:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

/* Card */
.project-card {
  background: #121212;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

/* Image */
.project-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.project-content {
  padding: 22px;
}

.project-number {
  display: inline-block;
  background: #222;
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: default;
}

.project-title {
  margin: 14px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  cursor: default;
}

/* Tags */
.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  cursor: default;
}

.project-tags span {
  background: #1a1a1a;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Link */
.project-link {
  font-size: 14px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.project-link .arrow {
  transition: 0.3s;
}

.project-link:hover .arrow {
  transform: translateX(4px);
}

/* Contact */
.contact-section{
  background: var(--bg);
  color: var(--muted-white);
  padding: 60px 80px;
  box-sizing: border-box;
}

.contact-header{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-header h3{
  margin: 0;
  color: var(--accent);
  letter-spacing: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

/* Big Email */
.contact-email{
  display: inline-block;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 160px;
  line-height: 0.82;
}

.contact-email .line1,
.contact-email .line2 {
  display: block;
}

.contact-email:hover .line2 {
  color: var(--neon);
}

/* Footer */
.footer {
  width: 100%;
  padding: 40px 80px;
  background: var(--bg);
  color: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-left {
  font-size: 14px;
  letter-spacing: 1px;
  cursor: default;
}

.footer-left .love {
  color: var(--accent);
  font-weight: 700;
}