/* Nick Mabe - Version 1 Site Styles */
/* Color authority: NickMabeWebsiteHero.png */

:root {
  /* Primary colors from hero image */
  --navy-deep: #0a1628;
  --navy-medium: #152238;
  --blue-dark: #1e2f47;
  --gold-warm: #d4a574;
  --gold-accent: #c89f6b;
  --white-primary: #ffffff;
  --grey-pale: #b8c5d6;
  --grey-text: #8a9bb0;
  --cyan-digital: #5eb3cc;
  
  /* Layout */
  --max-width: 1200px;
  --content-padding: 2rem;
  --nav-height: 70px;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--navy-deep);
  color: var(--white-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-family: var(--font-display);
}

h2 {
  font-size: 2rem;
  color: var(--gold-warm);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--grey-pale);
}

a {
  color: var(--cyan-digital);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-warm);
}

/* Navigation */
.site-header {
  background-color: var(--navy-medium);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-primary);
}

.site-logo:hover {
  color: var(--gold-warm);
}

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

.main-nav a {
  color: var(--grey-pale);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-warm);
  border-bottom-color: var(--gold-accent);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.7) 0%, 
    rgba(30, 47, 71, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--gold-warm);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--grey-pale);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  font-size: 1.75rem;
  color: var(--white-primary);
  font-weight: 600;
  margin-bottom: 2rem;
  font-family: var(--font-display);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold-warm);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background-color: var(--gold-accent);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white-primary);
  border-color: var(--white-primary);
}

.btn-secondary:hover {
  background-color: var(--blue-dark);
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}

/* Main Content */
main {
  margin-top: var(--nav-height);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--content-padding);
}

.section {
  margin-bottom: 4rem;
}

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

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

.section-subtitle {
  font-size: 1.25rem;
  color: var(--grey-text);
  max-width: 700px;
  margin: 0 auto;
}

/* Content Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: var(--blue-dark);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(184, 197, 214, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--gold-accent);
}

.card h3 {
  color: var(--gold-warm);
  margin-bottom: 1rem;
}

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

.card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--grey-pale);
}

.card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan-digital);
}

/* Service Icons */
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: var(--gold-warm);
}

/* Project Placeholders */
.project-card {
  background-color: var(--navy-medium);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--gold-accent);
}

.project-placeholder {
  background-color: var(--blue-dark);
  height: 200px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  border: 2px dashed var(--grey-text);
  color: var(--grey-text);
  font-style: italic;
}

.project-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--blue-dark);
  color: var(--cyan-digital);
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-warm), var(--cyan-digital));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gold-warm);
  border: 3px solid var(--navy-deep);
}

.timeline-item h3 {
  color: var(--gold-warm);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-warm);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--blue-dark);
  border: 1px solid var(--grey-text);
  border-radius: 4px;
  color: var(--white-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-warm);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background-color: var(--blue-dark);
  border-radius: 8px;
}

.contact-method svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: var(--gold-warm);
}

.contact-method h3 {
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--cyan-digital);
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background-color: var(--navy-medium);
  padding: 3rem var(--content-padding);
  margin-top: 4rem;
  border-top: 1px solid var(--blue-dark);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: var(--grey-text);
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --content-padding: 1rem;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--navy-medium);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav a {
    padding: 1rem var(--content-padding);
    border-bottom: 1px solid var(--blue-dark);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .timeline-item {
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-cta {
    font-size: 1.1rem;
  }
}
