/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Taviraj&family=Work+Sans&display=swap');

/* Reset default margin and padding */
body, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

/* Base body styles */
body {
  font-family: 'Taviraj', serif, Georgia;
  font-size: 18px;
  margin: 0 80px;
}

/* Responsive margin for smaller screens */
@media (max-width: 768px) {
  body {
    margin: 0 20px;
  }
}

/* Paragraph styles */
p {
  color: #000000;
  font-weight: normal;
  font-size: 16px;
  margin: 24px 10px;
}

/* Heading font family */
h1, h2, h3, h4 {
  font-family: 'Work Sans', sans-serif;
}

/* Individual heading sizes */
h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

/* Navbar styles */
.navbar {
  background-color: #434F5B;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

/* Navbar list styling */
.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Navbar list items */
.navbar li {
  margin: 0 20px;
}

/* Nav link base styles */
a, .nav-link {
  text-decoration: none;
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
}

/* Nav link hover and focus effect */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ABD060;
}

.content-name {
font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.content-intro {
  color: #000000;
  font-weight: normal;
  font-size: 16px;
  margin: 24px 10px;
  text-align: center;
}

.logo-banner {
  text-align: center;
  margin: 2rem 0 1rem 0;
}

.logo-banner img {
  max-width: 200px; /* Adjust to your preferred size */
  height: auto;
  display: inline-block;
}


.blogproject,
.blog-resolution {
  height: 21px;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#5F58A8; /* corrected */
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-competitive-analysis,
.blog-takeaway,
.blog-persona,
.blog-site-platform,
.blog-name-selection,
.blog-ux-content,
.blog-impact {
 height: 21px;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222; /* corrected */
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

p {
 font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #3A3F4A;
  margin: 16px 10px 6px;
}


.blog-competitive-analysis_images_container {
  display: flex;
  flex-direction: column;   /* stack images vertically */
  align-items: center;      /* center images horizontally */
  gap: 20px;                /* space between images */
  margin-top: 20px;         /* space above first image */
}

.blog-competitive-analysis_images_container img {
  width: 75%;               /* 75% of the container/screen width */
  height: auto;             /* maintain aspect ratio */
  border-radius: 8px;       /* optional rounded corners */
  object-fit: cover;        /* keep images cropped nicely */
}

/* Container that stacks and centers images */
.blog-persona_images_container {
  display: flex;
  flex-direction: column;   /* stack images vertically */
  align-items: center;      /* center images horizontally */
  gap: 20px;                /* space between images */
  margin-top: 20px;         /* space above first image */
}

/* Style for the images inside the container */
.blog-persona_images_container img {
  width: 75%;               /* image takes up 75% of container/screen width */
  height: auto;             /* maintain aspect ratio */
  border-radius: 8px;       /* optional rounded corners */
  object-fit: cover;        /* keeps image cropped nicely */
  display: block;           /* ensures margin/padding behaves correctly */
}


.blog-impact_images_container {
  display: flex;
  flex-direction: column;   /* stack images vertically */
  align-items: center;      /* center images horizontally */
  gap: 20px;                /* space between images */
  margin: 20px 0;           /* space above and below image group */
}

.blog-impact_images_container img {
  width: 75%;               /* images take 75% of screen width */
  height: auto;             /* maintain aspect ratio */
  border-radius: 8px;       /* optional rounded corners */
  object-fit: cover;        /* keeps image looking good when resized */
  display: block;
}


.bloglogo-banner {
  width: 100vw;        /* full viewport width */
  height: 100vh;       /* full viewport height */
  display: flex;       /* flex container */
  justify-content: center; /* center image horizontally */
  align-items: center;     /* center image vertically */
  margin: 0;               /* remove default spacing */
  overflow: hidden;        /* hide anything that overflows */
}

.bloglogo-banner img {
  width: 100%;         /* fill width */
  height: 100%;        /* fill height */
  object-fit: cover;   /* scale and crop to fill viewport without distortion */
}


