:root {
  /* Colors */
  --bg-dark: #0A0A0B;
  --bg-card: #141416;
  --bg-card-hover: #1c1c1f;
  --text-main: #F2F2F2;
  --text-muted: #A0A0A5;
  --accent-gold: #D4AF37;
  --accent-gold-dim: rgba(212, 175, 55, 0.2);
  --accent-gold-hover: #F3CA46;
  
  /* Layout */
  --nav-height: 80px;
  --section-padding: 100px 0;
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Transitions */
  --trans-fast: 0.3s ease;
  --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Typography Basics */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans-fast);
}

p {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

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

.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text-main);
  position: relative;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--trans-fast);
}

.header.scrolled {
  height: 70px;
  background: rgba(10, 10, 11, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-main);
  text-transform: uppercase;
}

.logo-c {
  font-size: 2.2rem;
  color: var(--accent-gold);
  line-height: 0.8;
  font-style: italic;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width var(--trans-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  border: 1px solid var(--accent-gold);
  padding: 10px 24px;
  border-radius: 4px;
  color: var(--accent-gold);
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: 
    radial-gradient(circle at center, rgba(10, 10, 11, 0.4) 0%, var(--bg-dark) 100%),
    url('https://images.unsplash.com/photo-1540039155732-d68832a88487?q=80&w=2670&auto=format&fit=crop') center/cover no-repeat;
    /* This new image is an elegant concert/event crowd with cool lighting */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 11, 0.7); /* Dark overlay */
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 5.5rem;
  margin-bottom: 2rem;
  letter-spacing: 4px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  font-weight: 500;
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  padding: 16px 40px;
  border-radius: 3px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Scroll Indication */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0.6;
  transition: var(--trans-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* About Section */
.about {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.about-text {
  max-width: 850px;
  text-align: center;
  color: var(--text-muted);
}

.about-text p {
  margin-bottom: 1.8rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.stat-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  min-width: 250px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--trans-fast);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.05);
}

.stat-card h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-card p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Experience Section */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.col-title {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 15px;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -44.5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-dim);
}

.timeline-item:hover .timeline-dot {
  background: var(--text-main);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.timeline-role {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.timeline-company {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.timeline-list {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.timeline-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.4rem;
}

.timeline-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.8rem;
  opacity: 0.7;
  font-family: monospace;
}

/* Skills Section */
.skills {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  max-width: 950px;
  margin: 0 auto 4rem auto;
}

.skill-tag {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--trans-fast);
  cursor: default;
  letter-spacing: 0.5px;
}

.skill-tag:hover {
  border-color: var(--accent-gold);
  color: var(--text-main);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.skills-footer {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 700px;
  margin: 0 auto;
}

.passport-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* Footer Section */
.footer {
  background-color: rgba(4, 4, 5, 0.8);
  backdrop-filter: blur(10px);
  padding: 6rem 0 3rem 0;
  position: relative;
  z-index: 2;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand h2 {
  font-size: 2.8rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--trans-fast);
}

a.contact-item:hover {
  color: var(--text-main);
  transform: translateX(-5px);
}

.contact-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  letter-spacing: 1px;
}

/* Animations & Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active, .reveal-right.active {
  transform: translateX(0);
}

/* Responsive */
@media screen and (max-width: 968px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .reveal-left, .reveal-right {
    transform: translateY(40px); /* fallback to vertical on mobile */
  }

  .reveal-left.active, .reveal-right.active {
    transform: translateY(0);
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  a.contact-item:hover {
    transform: translateY(-3px) translateX(0);
  }
  
  .stat-card {
    min-width: calc(50% - 1rem);
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(10, 10, 11, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem 0;
    transform: translateY(-150%);
    transition: var(--trans-slow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .stat-card {
    min-width: 100%;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .timeline {
    padding-left: 45px;
  }
  
  .timeline-dot {
    left: -35px;
  }
}
