/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Color Variables for Day and Night Modes */
:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --title-color: #1a73e8;
  --secondary-color: #555555;
  --button-bg: #1a73e8;
  --button-hover: #155ab6;
}

[data-theme=dark] {
  --bg-color: #121212;
  --text-color: #e0e0e0;
  --title-color: #bb86fc;
  --secondary-color: #b0b0b0;
  --button-bg: #bb86fc;
  --button-hover: #985efb;
}

/* Container */
.container {
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: var(--bg-color);
  color: var(--text-color);
}

/* Main Title */
.main-title h2 {
  text-align: center;
  margin: 20px 0;
  color: var(--title-color);
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
}

.main-title h2 span.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5em;
  color: rgba(26, 115, 232, 0.1);
  z-index: -1;
}

/* Blog Content */
.blog-content {
  padding: 20px;
  background: var(--bg-color);
  color: var(--text-color);
}

.blog-content h3 {
  color: var(--title-color);
  font-size: 2em;
  margin-top: 30px;
  border-bottom: 2px solid var(--title-color);
  padding-bottom: 10px;
}

.blog-content h4 {
  color: var(--text-color);
  font-size: 1.5em;
  margin-top: 20px;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 5px;
}

.blog-content p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin-top: 10px;
}

.blog-content p:first-of-type {
  font-size: 1.2em;
  font-weight: 500;
}

/* Images */
.banner-img {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.content-img {
  width: 50%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Links */
a {
  color: var(--title-color);
  text-decoration: none;
}

a:hover {
  color: var(--button-hover);
}

/* Theme Toggle Icon */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 2em;
  color: var(--text-color);
}

.theme-toggle:hover {
  color: var(--title-color);
}

/* Button */
.read-more {
  display: inline-block;
  color: #fff;
  background: var(--button-bg);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: var(--button-hover);
}

/* Back Button */
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
}

.back-button a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-button a:hover {
  color: var(--title-color);
}

.back-button a span {
  display: none;
  margin-left: 10px;
  font-size: 1em;
}

.back-button a:hover span {
  display: inline;
}/*# sourceMappingURL=blogstyles.css.map */