/* Main Styles for CS Gaming Hub */

/* Base styles and resets */
:root {
  --primary-color: #4e78ff;
  --secondary-color: #ff6b4e;
  --dark-color: #151c2b;
  --medium-dark-color: #1f2636;
  --light-color: #f5f7ff;
  --gray-color: #9aa1b9;
  --success-color: #42b983;
  --warning-color: #e6a23c;
  --danger-color: #f56c6c;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Poppins', var(--font-main);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: var(--light-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Header & Navigation */
header {
  background-color: var(--dark-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  margin-bottom: 0;
}

nav ul li {
  list-style: none;
  margin-left: 30px;
}

nav ul li a {
  color: var(--light-color);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-color), var(--medium-dark-color));
  color: var(--light-color);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color), var(--medium-dark-color));
  color: var(--light-color);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.page-header h1 {
  color: var(--light-color);
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Featured Section */
.featured {
  padding: 80px 0;
}

.featured h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.featured-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.featured-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-item h3 {
  padding: 20px 20px 10px;
  font-size: 1.4rem;
}

.featured-item p {
  padding: 0 20px;
  color: #666;
}

.featured-item .btn-small {
  margin: 10px 20px 20px;
}

/* Latest Posts Section */
.latest-posts {
  padding: 80px 0;
  background-color: #f0f3ff;
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
  line-height: 1.4;
}

.post-meta {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.read-more {
  margin-top: auto;
  font-weight: 600;
  display: inline-block;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .blog-card {
    flex-direction: row;
  }
}

.blog-image {
  flex: 0 0 40%;
}

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

.blog-details {
  padding: 30px;
  flex: 1;
}

.blog-details h2 {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--gray-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta .date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.blog-meta .author::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.blog-meta .category::before {
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
}

/* Blog Post */
.blog-post-header {
  padding: 100px 0;
  text-align: center;
}

.blog-post-header h1 {
  max-width: 900px;
  margin: 0 auto 20px;
}

.blog-post-header .post-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
}

.blog-post-content {
  padding: 60px 0;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .post-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.post-main {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-text {
  padding: 30px;
}

.post-intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.post-image-inline {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--gray-color);
  text-align: center;
  padding: 10px;
  background-color: #f9f9f9;
  margin-bottom: 0;
}

.post-callout {
  background-color: #f0f5ff;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-callout p {
  margin-bottom: 0;
  font-weight: 500;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 30px;
  border-top: 1px solid #eee;
}

.post-tags span {
  font-weight: 600;
  color: var(--dark-color);
}

.post-tags a {
  background-color: #f0f3ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  border-top: 1px solid #eee;
}

.post-share span {
  font-weight: 600;
  color: var(--dark-color);
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f3ff;
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
}

.post-share a svg {
  fill: var(--dark-color);
  transition: var(--transition);
}

.post-share a:hover svg {
  fill: white;
}

.author-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-top: 1px solid #eee;
  background-color: #f9faff;
}

.author-avatar {
  flex: 0 0 80px;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--gray-color);
}

.author-info h4 {
  margin-top: 5px;
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #eef1ff;
}

.author-social a svg {
  fill: var(--primary-color);
  width: 16px;
  height: 16px;
}

/* Sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f3ff;
  font-size: 1.3rem;
}

.related-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.related-post-item:last-child {
  margin-bottom: 0;
}

.related-post-item img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.related-post-content h4 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.4;
}

.related-post-content .post-date {
  font-size: 0.8rem;
  color: var(--gray-color);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  background-color: #f0f3ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.tags-cloud a:hover {
  background-color: var(--primary-color);
  color: white;
}

.newsletter p {
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* About Page */
.about-intro {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.our-values {
  padding: 80px 0;
  background-color: #f0f3ff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: #f0f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  fill: var(--primary-color);
}

.value-item h3 {
  margin-top: 0;
}

.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 10px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 0 20px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f3ff;
}

.member-social a svg {
  fill: var(--primary-color);
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: #f0f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.info-icon svg {
  fill: var(--primary-color);
  width: 24px;
  height: 24px;
}

.info-content h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-content p {
  margin-bottom: 0;
  color: #666;
}

.company-reg {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.company-reg p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--gray-color);
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.map-section {
  padding: 0 0 80px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 400px;
}

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--danger-color);
}

.thank-you-content {
  text-align: center;
}

.thank-you-content svg {
  fill: var(--success-color);
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.thank-you-content h2 {
  margin-bottom: 15px;
}

.thank-you-content p {
  margin-bottom: 25px;
}

.close-btn {
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: var(--light-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  color: var(--gray-color);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--secondary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--gray-color);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons svg {
  fill: var(--light-color);
  width: 20px;
  height: 20px;
}

.footer-bottom p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent.active {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  padding: 20px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.btn-cookie {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-cookie.accept {
  background-color: var(--success-color);
  color: white;
}

.btn-cookie.customize {
  background-color: var(--gray-color);
  color: white;
}

.btn-cookie.decline {
  background-color: transparent;
  color: var(--gray-color);
  border: 1px solid var(--gray-color);
}

.btn-cookie:hover {
  opacity: 0.9;
}

.cookie-more {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Skin Showcase (for blog post 3) */
.skin-showcase {
  margin-bottom: 40px;
  background-color: #f9faff;
  border-radius: var(--border-radius);
  padding: 20px;
}

.skin-showcase h3 {
  margin-top: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.skin-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .skin-details {
    grid-template-columns: 200px 1fr;
  }
}

.skin-image {
  max-width: 200px;
}

.skin-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.skin-description p {
  margin-bottom: 10px;
}

.skin-description p:last-child {
  margin-bottom: 0;
}

.skin-description p strong {
  color: var(--dark-color);
}

/* Daily Inspiration Block */
.daily-inspiration {
  padding: 60px 0;
  background-color: #f0f5ff;
}

.daily-inspiration h2 {
  text-align: center;
  margin-bottom: 40px;
}

.inspiration-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .inspiration-content {
    grid-template-columns: 3fr 2fr;
  }
}

.inspiration-text {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.inspiration-text p:first-child {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark-color);
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
}

.inspiration-text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

.inspiration-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parallax Section */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Blog Post Header Specific */
.blog-post-header .reading-time {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .featured, 
  .latest-posts,
  .about-intro,
  .our-values,
  .team-section,
  .contact-content {
    padding: 60px 0;
  }
  
  .featured-grid,
  .posts-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .post-meta,
  .blog-post-header .post-meta {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .logo {
    justify-content: center;
  }
}
