@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --forge-black: #111111;
  --forge-gold: #C9A84C;
  --forge-ivory: #F5F4F0;
  --forge-steel: #3A3A3A;
  --font-heading: 'Georgia', serif;
  --font-body: 'Inter', sans-serif;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--forge-ivory);
  color: var(--forge-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--forge-black);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

/* Typography Classes */
.heading-xl {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold {
  color: var(--forge-gold);
}

.bg-black {
  background-color: var(--forge-black);
  color: var(--forge-ivory);
}

.bg-black h1, .bg-black h2, .bg-black h3 {
  color: var(--forge-ivory);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.btn-gold {
  background-color: var(--forge-gold);
  color: var(--forge-black);
  border-color: var(--forge-gold);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--forge-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--forge-ivory);
  border-color: var(--forge-ivory);
}

.btn-outline:hover {
  background-color: var(--forge-ivory);
  color: var(--forge-black);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--forge-ivory);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--forge-gold);
  color: var(--forge-black);
  font-weight: bold;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(245, 244, 240, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--forge-gold);
}

.hamburger {
  display: none;
  color: var(--forge-ivory);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.05) 0%, rgba(17,17,17,0) 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(245, 244, 240, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* About Snippet */
.about-snippet {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-snippet p {
  font-size: 1.25rem;
  color: var(--forge-steel);
  margin-bottom: 2rem;
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-top: 4px solid var(--forge-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed) ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2rem;
  color: var(--forge-gold);
  margin-bottom: 1.5rem;
}

/* Why Forge */
.why-forge {
  background-color: var(--forge-steel);
  color: var(--forge-ivory);
}

.why-forge h2 {
  color: var(--forge-ivory);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-item h3 {
  color: var(--forge-gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: rgba(245, 244, 240, 0.7);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--forge-gold);
}

/* Footer */
footer {
  background-color: #000;
  color: var(--forge-ivory);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--forge-gold);
  font-style: italic;
}

.footer-links h4 {
  color: var(--forge-ivory);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(245, 244, 240, 0.6);
}

.footer-links a:hover {
  color: var(--forge-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(245, 244, 240, 0.4);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .services-grid, .features-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--forge-black);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }

  .services-grid, .features-grid, .testimonials-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}
