/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.8;
  font-size: 1.125rem;
}

img {
  max-width: 50%;
  display: block;
}

/* Universal Header and Footer Styles */
.site-header {
  width: 100%;
  background-color: #0E61EB;
  color: #fff;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.site-header nav {
  width: 75%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.site-header nav a {
  font-size: 2.25rem; /* Tripled from typical ~0.75rem baseline */
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}


.site-header nav a:hover {
  color: #aee9ff;
  text-shadow: 0 0 8px #aee9ff;
}



/* Layout */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section {
  margin-bottom: 3rem;
}

h1, h2 {
  color: #0E61EB;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);

}

.section p {
  margin-bottom: 1.25rem;
  text-align: justify;
  text-justify: inter-word;
}

/* Profile Image */
.profile-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.profile-image img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.profile-name {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: bold;
  color: #0E61EB;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);

}

/* Credits grid */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.credit-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.credit-item:hover {
  transform: translateY(-5px);
}

.credit-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.credit-item a {
  font-weight: bold;
  color: #0E61EB;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.25rem;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);

}

.credit-item a:hover {
  text-decoration: underline;
}

/* Demo Section */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.demo-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.demo-item h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #0E61EB;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-item audio {
  width: 100%;
  outline: none;
}

/* Landing Page Enhancements */
.hero {
  background-image: url('assets/background2.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  padding: 6rem 2rem;
  min-height: 80vh;
  position: relative;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-overlay img.hero-img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-overlay div {
  max-width: 500px;
}

.hero-overlay h2 {
  font-size: 2rem;
  color: #0E61EB;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: 1.125rem;
  color: #333;
}



.cta-section, .services-section, .testimonial-preview {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.cta-section h3, .services-section h3, .testimonial-preview h3 {
  font-size: 1.75rem;
  color: #0E61EB;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.service-item {
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  min-width: 200px;
}

blockquote {
  font-style: italic;
  color: #444;
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  border-left: 4px solid #0E61EB;
  background: #fff;
  border-radius: 4px;
}

/* Testimonials Enhancements */
.testimonial-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.testimonial-section img {
  width: 300px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

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

.testimonial-card {
  flex: 0 1 600px; /* wider cards */
  height: 220px;   /* shorter height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 2rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Portfolio Page Image Styling */
.profile-image {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.profile-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* About Page Image Styling */
.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;                   /* stretch to container */
  max-width: 1600px;             /* double the original 800px */
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.about-image h2 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #0E61EB;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}


.headshot {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

footer {
  background-color: #0E61EB;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  box-sizing: border-box;
  border: none; /* removes any border */
}

