/*
Theme Name: JG Portfolio
Author: Jeramy Gooden
Description: Cinematic black, red, and gold portfolio theme
Version: 3.0
*/

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #000;
  color: #e6e6e6;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Smooth fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  padding: 20px 40px;
  z-index: 999;
  border-bottom: 2px solid #D4AF37;
}

header h1 {
  color: #D4AF37;
  font-size: 24px;
  margin: 0;
  letter-spacing: 2px;
}

/* Sticky top navigation */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  padding: 18px 30px; /* reduced padding */
  display: flex;
  justify-content: flex-start; /* changed from space-between */
  align-items: center;
  gap: 40px; /* spacing between logo and menu */
  z-index: 999;
  border-bottom: 2px solid #D4AF37;
}

/* Left side (logo + name) */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Right side menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px; /* evenly spaced menu items */
}

.nav-links a {
  color: #e6e6e6;
  font-size: 16px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #D4AF37;
}

/* Cinematic hero section */
.pro-hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
}

.hero-content {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* Portrait */
.hero-photo {
  width: 480px;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(212,175,55,0.25);
}

/* Right side content */
.hero-right {
  flex: 1;
}

.hero-logo img {
  width: 90px;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}

.hero-title {
  font-size: 64px;
  color: #D4AF37;
  margin: 20px 0 10px;
  letter-spacing: 3px;
}

.hero-tagline {
  font-size: 24px;
  color: #C00000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 20px;
  color: #e6e6e6;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons .btn {
  margin-right: 20px;
}


/* Cinematic hero section */
.pro-hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
}

.hero-content {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* Portrait */
.hero-photo {
  width: 480px;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(212,175,55,0.25);
}

/* Right side content */
.hero-right {
  flex: 1;
}

.hero-logo img {
  width: 90px;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}

.hero-title {
  font-size: 64px;
  color: #D4AF37;
  margin: 20px 0 10px;
  letter-spacing: 3px;
}

.hero-tagline {
  font-size: 24px;
  color: #C00000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 20px;
  color: #e6e6e6;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons .btn {
  margin-right: 20px;
}

/* Hero section */
.hero {
  padding: 160px 20px 100px;
  text-align: center;
  background: radial-gradient(circle at top, #111 0%, #000 60%);
}

.hero img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(212,175,55,0.25);
}

/* Section titles */
.section-title {
  font-size: 48px;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 3px;
  position: relative;
}

.section-title:after {
  content: "";
  width: 80px;
  height: 4px;
  background: #C00000;
  position: absolute;
  bottom: -10px;
  left: 0;
}

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

/* Portfolio cards */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.portfolio-item {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(212,175,55,0.35);
}

.portfolio-item img {
  width: 100%;
  display: block;
}

.portfolio-item p {
  padding: 20px;
  color: #D4AF37;
  font-size: 20px;
  text-align: center;
}

/* Glass contact form */
.contact-box {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.3);
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: none;
  background: #222;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gold {
  background: #D4AF37;
  color: #000;
}

.btn-gold:hover {
  background: #f5d76e;
}

.btn-red {
  background: #C00000;
  color: #fff;
}

.btn-red:hover {
  background: #ff2a2a;
}

.resume-box {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.3);
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.resume-box p {
  font-size: 20px;
  color: #e6e6e6;
  margin-bottom: 30px;
}

.resume-btn {
  font-size: 20px;
  padding: 16px 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
  transition: all 0.3s ease;
}

.resume-btn:hover {
  box-shadow: 0 0 35px rgba(212,175,55,0.45);
  transform: translateY(-4px);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.skill-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(212,175,55,0.35);
}

.skill-card h3 {
  color: #D4AF37;
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.skill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #e6e6e6;
  font-size: 18px;
}

.skill-card ul li:last-child {
  border-bottom: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  color: #666;
  border-top: 1px solid #222;
}

footer a {
  color: #D4AF37;
  margin: 0 10px;
  font-size: 20px;
}
