#blog-post-link{
  text-decoration: none;
}

/* ========== Hero Section Styles ========== */
.hero-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

@keyframes backgroundScroll {
  0% { background-position: 0 0, 30px 30px; }
  100% { background-position: 60px 60px, 90px 90px; }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Left Side - Headshot */
.hero-left {
  flex: 0 0 auto;
}

.headshot-container {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.headshot-placeholder {
  color: rgb(45, 42, 73);
  display: flex;
  align-items: center;
  justify-content: center;
}

.headshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center - Name and Title */
.hero-center {
  flex: 1 1 auto;
  color: rgb(45, 42, 73);
  text-align: left;
  min-width: 300px;
}

.hero-greeting {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.hero-name {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 10px 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-title-container {
  height: 50px;
  margin-bottom: 30px;
}

.hero-title-rotating {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  background: rgb(45, 42, 73);
  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.social-links a {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  color: rgb(45, 42, 73);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* CTA and Social Links Section */
.cta-social-section {
  background: rgb(45, 42, 73);
  padding: 40px 20px;
}

.cta-social-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cta-buttons-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.social-links-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}

/* Right Side - CTA Buttons */
.hero-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary {
  background: white;
  color: rgb(45, 42, 73);
  border: 2px solid white;
}

.cta-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cta-secondary {
  background: white;
  color: rgb(45, 42, 73);
  border: 2px solid white;
}

.cta-secondary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cta-social {
  background: #c5c9f5;
  color: rgb(45, 42, 73);
  border: 2px solid #c5c9f5;
  min-width: 180px;
}

.cta-social:hover {
  background: white;
  color: rgb(45, 42, 73);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cta-blog {
  background: rgb(45, 42, 73);
  color: white;
  border: 2px solid rgb(45, 42, 73);
  display: inline-flex;
  min-width: auto;
  width: auto;
}

.cta-blog:hover {
  background: white;
  color: rgb(45, 42, 73);
  border-color: rgb(45, 42, 73);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Content Preview Section */
.content-preview {
  padding: 50px 20px;
}

.content-preview h3 {
  color: rgb(45, 42, 73);
  font-weight: 700;
  margin-bottom: 15px;
}

.content-preview p {
  color: rgb(45, 42, 73);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-center {
    text-align: center;
  }
  
  .hero-name {
    font-size: 2.8rem;
  }
  
  .hero-greeting {
    font-size: 1.6rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .hero-right {
    width: 100%;
    align-items: center;
  }
  
  .cta-social-container {
    flex-direction: column;
  }
  
  .cta-buttons-group {
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
  }
  
  .social-links-group {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .headshot-container {
    width: 180px;
    height: 180px;
  }
  
  .hero-name {
    font-size: 2.2rem;
  }
  
  .hero-greeting {
    font-size: 1.4rem;
  }
  
  .hero-title-rotating {
    font-size: 1.4rem;
  }
  
  .cta-button {
    min-width: 100%;
  }
}