/* Bundled: base + header + footer + home + about + blog + cookie + cookies + privacy + terms */
/* Individual .css files kept on disk for reference but no longer loaded at runtime. */

/* ===== base.css ===== */
/* ===================== */
/* BASE / RESET          */
/* ===================== */
@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/libre-franklin-v19-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Libre Franklin';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/fonts/libre-franklin-v19-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/libre-franklin-v19-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/libre-franklin-v19-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Mont';
  src: url('/assets/fonts/Mont.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* Reset default margins/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Improve text rendering */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===================== */
/* BODY & TEXT           */
/* ===================== */

body {
  font-family: 'Mont', Arial, Helvetica, sans-serif;
  color: #222;
  background-color: #f9f9f9;
  padding-top: 0;
  min-height: 100vh;
}
/* ===================== */
/* ACCESSIBILITY         */
/* ===================== */

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  background: #ffffff;
  color: #000;
  padding: 0.5em;
  z-index: 1000;
}

/* ===================== */
/* TYPOGRAPHY            */
/* ===================== */

h1, h2, h3, h4, h5, h6 {
  color: #111;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1.2em;
  font-size: 1rem;
  color: #333;
}

a {
  color: #007b8f;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #005f6b;
  text-decoration: underline;
  outline: none;
}

/* ===================== */
/* IMAGES & MEDIA        */
/* ===================== */

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

/* ===================== */
/* LAYOUT HELPERS        */
/* ===================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.policy-page,
.privacy-page,
.terms-page {
  font-family: Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0.1px;
  font-size: 16px;
}


.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ================================================= */
/* ACCESSIBILITY & LAYOUT FIX FOR BLOG CARDS         */
/* ================================================= */

/*
 * DEFAULT STATE: Hide all blog cards by default.
 * This is for the "Load More" functionality on the main blog listing pages.
*/
.blog-card {
    display: none;
}

/*
 * OVERRIDE FOR HOMEPAGE: Be MORE specific.
 * This rule says "IF a .blog-card is inside a .blog-preview section,
 * then IGNORE the rule above and display it as a flex item."
 * This makes the homepage previews visible immediately.
*/
.blog-preview .blog-card {
    display: flex; /* Use flex to ensure content inside aligns properly */
    flex-direction: column;
}
/*
 * This rule targets any link <a> that is inside a paragraph <p>
 * OR inside a list item <li> within the main .post-content area. 
 * It adds an underline to distinguish it from surrounding text.
*/
.post-content p a,
.post-content li a {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Optional: makes the underline a bit thinner */
}

/* Optional but recommended: A subtle hover effect for mouse users */
.post-content p a:hover,
.post-content li a:hover {
    text-decoration-thickness: 2px; /* Makes the underline slightly bolder on hover */
}


.blog-card a {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card a:focus,
.blog-card a:hover {
  outline: none;
  box-shadow: 0 0 0 3px #0056b3; /* Highly visible focus ring */
  transform: translateY(-2px); /* Optional: adds some movement */
}

.blog-card h3 {
  margin: 0.5em 0;
  font-size: 1.2em;
  color: #111;
}

/* ===== header.css ===== */
/* ========================= */
/* ACCURATE HEADER LAYOUT    */
/* ========================= */

.site-header {
  background-color: #ffffff;
   padding: 0.5rem 0;
  text-align: center;
  border-bottom: none;
  margin-bottom: 1rem;
  position: relative;
}

/* Logo image */
.site-header .logo img {
  width: 300px;
  height: auto;
  margin: 0 auto 0.5rem auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-header .logo img:hover {
  filter: brightness(1.1);
}

/* Line under logo */
.site-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 1rem auto 0 auto;
}

.header-top-line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
}


/* NAVIGATION (below logo) */
.main-nav {
  margin-top: 1rem;
  margin-bottom:1rem;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-list a {
  font-family: 'Mont', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #444;
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #e66283;
  outline: none;
}
.logo::after {
  content: "";
  display: block;
  position: relative;
  width: 100vw;              /* Full viewport width */
  height: 1px;
  background-color: #ccc;
  margin: 1rem auto 0 auto;
  left: 50%;
  transform: translateX(-50%);
}


/* ========================= */
/* MOBILE NAV + ANIMATION    */
/* ========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.nav-toggle .bar {
  width: 100%;
  height: 4px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================= */
/* RESPONSIVE NAV            */
/* ========================= */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    margin: 1rem auto 1rem auto;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-list.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list li {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #ddd;
    text-align: left;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: block;
    width: 100%;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Mont', Arial, sans-serif;
  }

  .nav-list a:hover {
    color: #e66283;
  }
}

.logo img {
  width: 300px;
  height:150px;
  max-width: 100%;
 
}





.nav-list .social-icon a {
  font-size: 1.1rem;
  color: #444;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.nav-list .social-icon a:hover {
  color: #e66283;
}

/* Optionally reduce spacing for social icons */
.nav-list .social-icon {
  margin-left: 0.5rem;
}


/* Social icon hover & focus styles */
.social-icon a {
  color: #444;
  transition: color 0.2s ease, outline 0.2s ease;
}

.social-icon a:hover,
.social-icon a:focus,
.social-icon a:focus-visible {
  color: #0056b3; /* WCAG AA blue */
  outline: 2px solid #0056b3;
  outline-offset: 4px; /* creates a clean space between icon and outline */
  border-radius: 4px;  /* optional: soften the outline box */
}

.social-icon a:hover i,
.social-icon a:focus i,
.social-icon a:focus-visible i {
  transform: scale(1.2);
  color: #0056b3;
}

.site-logo a:hover,
.site-logo a:focus,
.site-logo a:focus-visible {
  opacity: 0.8;
  outline: 2px solid #b4bfca; /* or use border or shadow if preferred */
}

/* ===== footer.css ===== */
/* ========================= */
/* FOOTER STYLES             */
/* ========================= */

.site-footer {
  background-color: #f0f0f0;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 3rem;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================= */
/* FOOTER MENU               */
/* ========================= */

.footer-nav {
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu li a:hover,
.footer-menu li a:focus {
  color: #007b8f;
  text-decoration: underline;
  outline: none;
}

/* ========================= */
/* COPYRIGHT TEXT            */
/* ========================= */

.footer-copy {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}

/* ========================= */
/* ICONS (Font Awesome)      */
/* ========================= */

.footer-menu i.fab {
  font-size: 1.2rem;
  color: #333;
}

.footer-menu i.fab:hover {
  color: #007b8f;
}



/* ===== home.css ===== */
/* ============================ */
/* HERO SECTION (DARKER OVERLAY) */
/* ============================ */

.hero-section {
  background-image: url('/assets/images/home/hero.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.65));
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
  position: relative;
  padding: 2rem;
  color: #ffffff;
  width: 100%;
}

.hero-text {
  font-size: 1.9rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 700;
  color: #fdfdfd;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ============================ */
/* VIDEO SECTION                */
/* ============================ */

.video-section {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #fff;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.video-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.video-facade .play-button {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}


/* ============================ */
/* HOMEPAGE BLOG PREVIEW        */
/* ============================ */

/* This is the main container for each section ("From the Blog", "From the Vegan Kitchen") */
.blog-preview {
  padding: 3rem 1rem;
  background-color: #fafafa; /* A light background to separate it from other content */
  text-align: center;
}

/* Styles the main heading of each section */
.blog-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

/* This container holds the cards. We use flexbox to center them nicely. */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* This is the individual card for each blog post */
.blog-card {
  width: 320px; /* Sets a consistent width for each card */
  background: #fff;
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Ensures the image corners are also rounded */
  box-shadow: 0 4px 15px rgba(0,0,0,0.07); /* A subtle shadow for depth */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
  text-align: left; /* Aligns the text inside the card to the left */
}

/* A nice "lift" effect when a user hovers over a card */
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Ensures the link wrapper takes up the whole card */
.blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Styles the preview image in the card */
.blog-card img {
  width: 100%;
  height: 200px; /* A fixed height makes all cards look uniform */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  display: block;
}

/* Styles the post title inside the card */
.blog-card h3 {
  padding: 1.5rem;
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* =============================== */
/* NEWSLETTER SECTION             */
/* =============================== */

.newsletter-section {
  background-image: url('/assets/images/home/newsletter.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 10rem 1rem;
  color: #fff;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 1;
}

.newsletter-section .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.newsletter-section h2,
.newsletter-section p {
  color: #f9f9f9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.newsletter-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin-inline: auto;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
}

.newsletter-form .button,
.newsletter-form input[type="submit"] {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #e66283;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form .button:hover {
  background-color: #d44d6f;
}


@media (max-width: 768px) {
  .hero-text {
    font-family: 'Mont', Arial, sans-serif;
    font-size: 1.25rem;
    padding: 0 1rem;
  }

  .hero-section h1,
  .about-section h2,
  .classes-section h2,
  .cta-section h2,
  .blog-preview h2 {
    font-size: 1.75rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .class-list {
    grid-template-columns: 1fr;
  }

  /* ✅ Force override grid with flex on small screens */
  .blog-preview .blog-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* ===== about.css ===== */

/* ========================= */
/* ABOUT PAGE STYLES         */
/* ========================= */

.about-hero {
  background-color: #f2f2f2;
  text-align: center;
  padding: 4rem 1rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Mont', Arial, sans-serif;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #444;
}

.about-content .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse .about-text {
  direction: ltr;
}

.about-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-family: 'Mont', Arial, sans-serif;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

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

  .about-hero h1 {
    font-size: 2rem;
  }

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

  .about-grid.reverse {
    direction: ltr;
  }
}

/* ===== blog.css ===== */
/* ===================== */
/* BLOG LISTING PAGE     */
/* ===================== */

.blog-listing-header {
    text-align: center;
    padding: 2rem 0;
    background-color: #f0f4f5;
    margin-bottom: 2rem;
}

.blog-listing-header h1 {
    font-size: 2.8rem;
    color: #333;
}

.blog-listing-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: none; /* Initially hide all cards for the 'load more' feature */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.blog-card-content .post-date {
    font-size: 0.9rem;
    color: #555; 
    margin-bottom: 1rem;
}

.blog-card-content p {
    font-size: 1rem;
    color: #444;
}

.load-more-container {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    background-color: #007b8f;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.load-more-btn:hover {
    background-color: #005f6b;
}

.load-more-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* ===================== */
/* SINGLE BLOG POST PAGE */
/* ===================== */

.blog-post-container {
    /* --- FONT & COLOR STYLES --- */
    font-family: 'Libre Franklin', serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    color: #444;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    
    /* --- LAYOUT STYLES --- */
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.blog-post-container .post-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.blog-post-container .post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.blog-post-container .post-content h2 {
    font-size: 1.8rem;
    color: #007b8f;
    margin-top: 2rem;
}

.blog-post-container .post-content img {
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 0.9em;
    font-style: italic;
    color: #666;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ======================== */
/* POST NAVIGATION (Next/Prev) */
/* ======================== */

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-navigation a {
    text-decoration: none;
    color: #fff;
    background-color: #007b8f;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.post-navigation a:hover {
    background-color: #005f6b;
    color: #fff;
}

.post-navigation a:focus {
    outline: 3px solid #005f6b;
    outline-offset: 2px;
}

.post-navigation .nav-previous {
    text-align: left;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a.disabled {
    background-color: #e9ecef;
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

/* ======================== */
/* TWO-COLUMN BLOG LAYOUT   */
/* ======================== */

.blog-layout-container {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.blog-layout-container .blog-post-container {
    flex: 1;
    min-width: 0;
}

.sidebar-widget {
    width: 300px;
    flex-shrink: 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sidebar-widget h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #333;
    border-bottom: 2px solid #007b8f;
    padding-bottom: 0.5rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget li {
    margin-bottom: 0.8rem;
}

.sidebar-widget a {
    text-decoration: none;
    color: #007b8f;
    font-weight: bold;
}

.sidebar-widget a:hover {
    text-decoration: underline;
}

/* --- Responsive Handling for Mobile --- */
@media (max-width: 992px) {
  .blog-layout-container {
    flex-direction: column;
  }

  .sidebar-widget {
    width: 100%;
    margin-top: 2rem;
  }

  /* ✅ Center blog cards if there's only one */
  .blog-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

.post-content p a {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Optional: makes the underline a bit thinner */
}

/* Optional but recommended: A subtle hover effect for mouse users */
.post-content p a:hover {
    text-decoration-thickness: 2px; /* Makes the underline slightly bolder on hover */
}


/* ======================================= */
/* RESPONSIVE FIX FOR POST NAVIGATION      */
/* ======================================= */

@media (max-width: 768px) {
    .post-navigation {
        /* Switch from a horizontal row to a vertical column */
        flex-direction: column;
        /* Add some space between the stacked buttons */
        gap: 1rem;
    }

    .post-navigation a {
        /* Make each button take up the full width for a cleaner look */
        width: 100%;
        text-align: center;
    }
}
/* ===== cookie.css ===== */
/* /assets/css/cookie.css */
/* Styles specifically for the Cookie Policy Page */

.policy-page {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.policy-page h1,
.policy-page h2,
.policy-page h3 {
  color: #2c3e50; /* A neutral dark blue, adjust to match your site */
  line-height: 1.2;
}

.policy-page h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.policy-page h2 {
  font-size: 1.8em;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3em;
  margin-top: 2em;
}

.policy-page h3 {
  font-size: 1.4em;
  margin-top: 1.5em;
}

.policy-page a {
  color: #0056b3;
  text-decoration: underline;
}

.policy-page a:hover,
.policy-page a:focus {
  text-decoration: underline;
  outline: 2px solid #0056b3;
}


/* --- Accessible Table Styling --- */
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
  border: 1px solid #ddd;
}

/* Accessibility: Hide visual caption, but keep it for screen readers */
.policy-page table caption {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.policy-page th, 
.policy-page td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

/* Style for table header cells (<th>) */
.policy-page th {
  font-weight: bold;
  width: 25%;
  background-color: #f9f9f9;
  border-right: 1px solid #ddd;
}
/* ===== cookies.css ===== */

  .cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #232323;
    color: #ffffff;
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    font-family: sans-serif;
  }
  .cookie-banner-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .cookie-banner-content p { margin: 0; font-size: 14px; line-height: 1.5; }
  .cookie-banner-content a { color: #4db2ec; text-decoration: underline; }
  .cookie-banner-buttons { display: flex; gap: 10px; }
  .cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
  }
  .cookie-btn-decline { background-color: #4a4a4a; color: #ffffff; }
  .cookie-btn-decline:hover { background-color: #606060; }
  .cookie-btn-accept { background-color: #3c8fde; color: #ffffff; }
  .cookie-btn-accept:hover { background-color: #2a7ac7; }
  @media (max-width: 768px) {
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-banner-buttons { margin-top: 15px; }
  }

/* ===== privacy.css ===== */
/* /assets/css/privacy.css */
/* Styles specifically for the Privacy Policy Page */

.privacy-page {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-page h1,
.privacy-page h2 {
  color: #2c3e50; /* A neutral dark blue, adjust to match your site */
  line-height: 1.2;
}

.privacy-page h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.privacy-page h2 {
  font-size: 1.8em;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3em;
  margin-top: 2.5em; /* More space for sections */
}

.privacy-page p {
  line-height: 1.7;
}

.privacy-page a {
  color: #0056b3;
  text-decoration: underline;
}

.privacy-page a:hover,
.privacy-page a:focus {
  text-decoration: underline;
  outline: 2px solid #0056b3;
}


/* Style for the "In Short:" summary paragraphs */
.privacy-page .summary {
  font-style: italic;
  background-color: #f8f9fa;
  border-left: 3px solid #3498db;
  padding: 15px;
  margin: 1em 0;
}

/* Styles for the Table of Contents */
.privacy-page .toc {
  background-color: #f8f9fa;
  padding: 15px 25px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin: 2em 0;
}

.privacy-page .toc ol {
  padding-left: 20px;
  margin: 0;
}

.privacy-page .toc li {
  margin-bottom: 0.5em;
}

/* Styles for general lists */
.privacy-page ul {
  list-style-type: disc;
  padding-left: 25px;
}
/* ===== terms.css ===== */
/* /assets/css/terms.css */
/* Styles specifically for the Terms of Service Page */

.terms-page {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.terms-page h1,
.terms-page h2 {
  color: #2c3e50; /* A neutral dark blue, adjust to match your site */
  line-height: 1.2;
}

.terms-page h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.terms-page h2 {
  font-size: 1.8em;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3em;
  margin-top: 2em;
}

.terms-page p {
  line-height: 1.7;
}

.terms-page a {
  color: #0056b3;
  text-decoration: underline; /* Ensures link is distinguishable without relying on color */
}

.terms-page a:hover,
.terms-page a:focus {
  text-decoration: underline;
  outline: 2px solid #0056b3; /* Visible keyboard focus */
}