/* Founder LinkedIn Icon */
.linkedin-icon {
  transition: transform 0.2s;
}
.linkedin-icon:hover {
  transform: scale(1.15);
}
/* Founder Frame Styles */
.founder-frame {
  background: #D4C4A8;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  margin-bottom: 2.5rem;
}
/* Privacy Policy Page Styles */
.privacy-section {
  background: #FDF5E6;
  padding: 3rem 0;
}
.privacy-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: #FDF5E6;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.privacy-text {
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  color: #1A1A1A;
}
/* Footer Styles */
.site-footer {
  background: #D4C4A8;
  padding: 2rem 0;
  font-family: Arial, sans-serif;
  color: #800020;
}
/* Our Founder button styles */
.founder-btn {
  display: inline-block;
  background: #800020;
  color: #E6DCC3;
  font-family: Arial, sans-serif;
  font-weight: bold;
  padding: 0.85rem 2.2rem;
  border-radius: 32px;
  border: 0.75rem solid #000;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  -webkit-text-stroke: 0.75px #000;
}
.founder-btn:hover {
  background: #A52A2A;
  color: #fff;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-left {
  flex: 1;
  text-align: left;
}
.footer-right {
  flex: 1;
  text-align: right;
}
.footer-link {
  color: #800020;
  /* text-decoration: underline; */
  font-weight: bold;
}
/* === Datakraft Theme Colors === */
:root {
  --burgundy: #800020;
  --light-tan: #FDF5E6;
  --darker-tan: #E6DCC3;
  --header-tan: #D4C4A8;
  --text-dark: #1A1A1A;
  --font-header: 'Georgia', serif;
  --font-body: 'Arial', sans-serif;
}

/* === Homepage Sections === */

.hero-section {
  position: relative;
  height: 350px;
  background: url('/images/hero.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title {
  color: #1A1A1A;
  font-size: 4rem;
  font-family: Georgia, serif;
  font-weight: bold;
  text-align: center;
  /* text-shadow: 0px -6px 2px rgba(26, 25, 25, 0.25) !important; */
  -webkit-text-stroke: 0.4px #E6DCC3; /*#f3e5be */
}



.about-section {
  padding: 3rem 1rem;
  background: #FDF5E6;
}
.services-section {
  padding: 3rem 1rem;
  background: #E6DCC3;
}
.why-section {
  padding: 3rem 1rem;
  background: #FDF5E6;
}
.contact-section {
  padding: 3rem 1rem;
  background: #800020;
}


.section-title {
  color: #800020;
  font-family: Georgia, serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-text {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 2rem;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 2rem auto 0 auto;
  padding: 0;
}
.services-list h3 {
  color: var(--burgundy);
  font-family: var(--font-header);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.services-list p {
  font-family: var(--font-body);
  color: var(--text-dark);
  margin: 0;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 2rem auto 0 auto;
}
.why-card h3 {
  color: var(--burgundy);
  font-family: var(--font-header);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-family: var(--font-body);
  color: var(--text-dark);
  margin: 0;
}

.contact-section .section-title {
  color: #FDF5E6;
}
.contact-section .section-text {
  color: #FDF5E6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0 auto;
  max-width: 400px;
  font-family: var(--font-body);
  color: #FDF5E6;
  font-size: 1rem;
  text-align: center;
}
.contact-list li { margin-bottom: 0.5rem; }


/* === Founder Page === */

/* Founder Hero Section */
.founder-hero-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 220px; /* Thinner than homepage hero */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hero.jpeg') no-repeat center center;
  background-size: cover;
  opacity: 0.9;
  z-index: 1;
}

.founder-title {
  position: relative;
  z-index: 2;
  color: #800020;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.founder-bg {
  background: #FDF5E6;
  min-height: 100vh;
  width: 100%;
}
.founder-page {
  /*background: var(--light-tan); */
  background: #FDF5E6;
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-body);
}
.founder-header {
  text-align: center;
  margin-bottom: 2rem;
}
.founder-title {
  color: var(--burgundy);
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-weight: bold;
}
.founder-bio {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}
.founder-experience h2 {
  color: var(--burgundy);
  font-family: var(--font-header);
  font-size: 1.3rem;
  margin-top: 2rem;
}
.experience-list {
  margin-bottom: 2rem;
}
.experience-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--darker-tan);
}
.experience-item:last-child {
  border-bottom: none;
}
.experience-item h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-family: var(--font-header);
  margin-bottom: 0.3rem;
}
.experience-item strong {
  color: var(--burgundy);
  font-family: var(--font-header);
}
.experience-item ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}
.experience-item li {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}


/*
============================================================
  Personal Website CSS
  - Consistent font: "Helvetica Neue", Arial, sans-serif
  - Responsive, modern, and maintainable
  - See section comments for guidance
============================================================
*/


/* ========== GLOBAL ========== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FDF5E6;
}

/* Header Styles */
.site-header {
  background: #E6DCC3 !important;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.site-title {
  color: #800020;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}
.site-nav a {
  color: #800020 !important;
  font-family: Georgia, serif;
  font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover {
  color: #800020;
  text-decoration: underline;
}

/* Homepage Section Backgrounds */
.hero-section {
  position: relative;
  height: 350px;
  background: url('/images/hero.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section {
  background: #FDF5E6;
  padding: 3rem 1rem;
}
.services-section {
  background: #E6DCC3;
  padding: 3rem 1rem;
}
.why-section {
  background: #FDF5E6;
  padding: 3rem 1rem;
}
.contact-section {
  background: #800020;
  color: #fff;
  padding: 3rem 1rem;
}

/* Section Titles and Text */
.section-title {
  color: #800020;
  font-family: Georgia, serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-text {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 2rem;
}

/* Founder Page Layout */
.founder-header {
  text-align: center;
  margin-bottom: 2rem;
}
.founder-title {
  color: #800020 !important;
  font-family: Georgia, serif !important;
  font-size: 2.2rem;
  font-weight: bold;
}
.founder-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.founder-bio {
  flex: 1;
  min-width: 260px;
  font-family: Arial, sans-serif !important;
  font-size: 1.1rem;
  color: #1A1A1A;
}
.founder-image {
  flex: 0 0 260px;
  text-align: center;
}
.founder-title {
  color: #800020;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: bold;
}
.founder-bio {
  flex: 1;
  min-width: 260px;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  color: #1A1A1A;
}
.experience-item h3, .experience-item strong {
  font-family: Georgia, serif;
  color: #800020;
}
.experience-item ul, .experience-item li {
  font-family: Arial, sans-serif;
  color: #1A1A1A;
}
/* ========== HEADER ========== */

body {
  font-family: Arial, sans-serif;
}
.site-header {
  background: #E6DCC3;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #800020;
  font-family: Georgia, serif;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  text-decoration: none;
  color: #800020;
  font-weight: 500;
  font-family: Georgia, serif;
}
.site-nav a:hover {
  color: #800020;
  text-decoration: underline;
}

/* ========== HERO & ABOUT ========== */
.hero {
  position: relative;
  height: 55vh;
  min-height: 300px;
  max-height: 450px;
  background: url('/images/hero.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content { padding: 0; }
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h2 { font-size: 3rem; margin: 0; }
.hero-text p { font-size: 1.5rem; }

.about { background: #fff; }
.about-text {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}
.about-text h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* ========== SECTION LAYOUTS ========== */
section {
  padding: 2rem 1rem;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ========== BLOG & POST CARDS ========== */
/* Card grid for blog list and home recent posts */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.post-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}
.post-card .post-content {
  padding: 0.75rem;
  text-align: left;
}
.post-card .post-date, .post-date {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
}
.post-card h3 {
  font-weight: bold;
  margin: 0.5rem 0;
}
.post-card a, .post-card a:visited {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s;
}
.post-card a:hover, .post-card a:focus {
  /*color: #8e44ad;
  text-decoration: underline; */
  font-weight: normal;
}

/* ========== BLOG LIST & HOME PAGE ========== */
.blog-list, .recent-posts {
  text-align: center;
}
.blog-list h2, .blog-list p, .recent-posts h2, .recent-posts p {
  margin-left: auto;
  margin-right: auto;
}

/* ========== INDIVIDUAL BLOG POST PAGE ========== */
.blog-post.single-post {
  padding: 2rem 0;
}
.blog-post.single-post .container {
  max-width: 800px;
  margin: 0 auto;
}
.post-header {
  text-align: center;
  margin-bottom: 2rem;
}
.blog-post.single-post h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.single-post img.post-hero-image {
  width: 100%;
  max-width: 700px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 8px;
}
.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-footer {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}
.back-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.back-link:hover {
  color: #0066cc;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: black;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #333;
}

/* ========== FOOTER ========== */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #E6DCC3 !important;
  color: black !important;
  font-size: 0.9rem;
 /* border-top: 1px solid #eee; */
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-text h2 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .header-container { flex-direction: column; align-items: flex-start; }
  .site-nav ul { flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
  .single-post img.post-hero-image { height: 180px; }
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* --- Header --- */
.site-header {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}


.site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.site-nav a:hover {
  color: #555;
  text-decoration: underline;
}

/* --- Hero section --- */
.hero {
  position: relative;
  height: 55vh;
  min-height: 300px;
  max-height: 450px;
  background: url('/images/hero.jpeg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  padding: 0;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h2 {
  font-size: 3rem;
  margin: 0;
}

.hero-text p {
  font-size: 1.5rem;
}

/* --- Sections --- */
section {
  padding: 2rem 1rem;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.about {
  background: #fff;
}

.about-text {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.about-text h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* --- Recent Posts (Home Page) --- */
.recent-posts .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.recent-posts article.post-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.recent-posts article.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.recent-posts article.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.recent-posts article.post-card .post-content {
  padding: 0.75rem;
  text-align: left;
}

.recent-posts article.post-card .post-date {
  margin: 0 0 0.5rem 0;
  color: #666;
}

.recent-posts article.post-card h3 {
  margin: 0.5rem 0;
}

/* --- Blog List Page --- */
.blog-list {
  text-align: center;
}

.blog-list h2,
.blog-list p {
  margin-left: auto;
  margin-right: auto;
}

.blog-list .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-list article.post-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.blog-list article.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.blog-list article.post-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.blog-list article.post-card .post-content {
  padding: 0.75rem;
  text-align: left;
}

.blog-list article.post-card .post-date {
  margin: 0 0 0.5rem 0;
  color: #666;
}

.blog-list article.post-card h3 {
  margin: 0.5rem 0;
}

/* --- Individual Blog Post Page --- */
.blog-post.single-post {
  padding: 2rem 0;
}

.blog-post.single-post .container {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-post.single-post h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.single-post img.post-hero-image {
  width: 100%;
  max-width: 700px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 8px;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-footer {
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.back-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  color: #0066cc;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: black;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #333;
}

/* --- Footer --- */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}



/* Hamburger Menu*/
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #800020; /* Theme color */
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-menu a {
  color: #800020;
  text-decoration: none;
  font-family: Georgia, serif;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-menu a.active {
  background: #f3e5be;
  color: #1A1A1A;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 100;
  }
  .nav-menu.nav-menu_visible {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    padding: 0;
  }
}
