@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* General Body Styles */
body {
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #1e90ff; /* Royal Blue */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-family: 'Montserrat', sans-serif;
}

/* Links */
a {
  color: #FFD700; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Blockquotes */
blockquote {
  border-left: 5px solid #1e90ff; /* Royal Blue */
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #ccc;
  background-color: #2a2a2a;
  border-radius: 5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #FFD700; /* Royal Blue */
  color: #fff;
}

/* Navigation Bar */
.navbar {
  background-color: #222;
  padding: 1rem;
  border-bottom: 2px solid #FFD700; /* Gold */
}

.navbar a {
  color: #f0f0f0;
  margin: 0 15px;
  font-weight: bold;
}

.navbar a:hover {
  color: #FFD700; /* Gold */
  text-decoration: none;
}

/* Blog post summary styles */
.post-summary {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}

.post-summary h2 a {
  color: #FFD700; /* Royal Blue */
}

.post-summary .banner-.image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
}

.post-summary .read-more {
  color: #FFD700; /* Gold */
  font-weight: bold;
}

/* Add a gap on single pages */
.content {
  margin-top: 2rem;
}

#logo {
  max-height: 50px; /* Adjust as needed */
  width: auto;
  background-color: transparent;
}

.site-info .name {
  display: flex;
  align-items: center; /* Vertically center the logo and the title/breadcrumb container */
}

.breadcrumb {
  margin-left: 1rem; /* Add a gap between the logo and the breadcrumb */
  font-size: 1.2rem;
  color: var(--color-text-light);
}

/* Home page styles */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #2a2a2a;
  border-radius: 5px;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.home-section {
  margin-bottom: 4rem;
}

.home-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 1rem;
}

.about-me-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-me-text {
  flex: 2;
}

.about-me-image {
  flex: 1;
}

.about-me-image img {
  max-width: 100%;
  border-radius: 50%;
}

.featured-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.featured-item {
  background-color: #2a2a2a;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.featured-item a {
  display: block;
  padding: 1.5rem;
  color: #f0f0f0;
  text-decoration: none;
}

.featured-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.featured-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
}

.cta {
  text-align: center;
  margin-top: 4rem;
}


