/* ---------------------------------------------------
   DROPDOWN MENU — CUSTOM BRAND STYLING
   --------------------------------------------------- */

/* Dropdown Background (Offwhite, clean, modern) */
.main-header-menu .sub-menu {
    background: #ffffff !important;
    border-radius: 6px; /* soft modern corners */
    padding: 12px 0; /* top & bottom spacing */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* elegant drop shadow */
}

/* Dropdown Item — Normal State */
.main-header-menu .sub-menu a {
    color: #460E2B !important; /* deep burgundy text */
    padding: 10px 18px !important;
    font-weight: 500;
}

/* Dropdown Item — Hover State */
.main-header-menu .sub-menu a:hover {
    background: #C2AE6D !important; /* gold background */
    color: #ffffff !important; /* white text */
}

/* Optional: arrow position fix if needed */
.main-header-menu .menu-item-has-children > a::after {
    top: 2px;
}

/* -----------------------------
   ASTRA — SINGLE POST STYLING
------------------------------ */

/* Limit content width for cleaner reading */
.single-post .ast-container {
    max-width: 760px;
    margin: auto;
}

/* Post Title */
.single-post .entry-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 22px;
    line-height: 1.2;
}

/* Featured Image */
.single-post .post-thumb img,
.single-post .post-image img {
    border-radius: 14px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Post Meta (date, author, categories) */
.single-post .entry-meta {
    font-size: 14px;
    opacity: 0.65;
    margin-bottom: 20px;
}

/* Main Content Typography */
.single-post .entry-content {
    font-size: 18px;
    line-height: 1.85;
    color: #2e2e2e;
}

/* Paragraph Spacing */
.single-post .entry-content p {
    margin-bottom: 22px;
}

/* Headings inside content */
.single-post .entry-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 35px 0 15px;
}

.single-post .entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 12px;
}

/* Blockquotes */
.single-post blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
    font-style: italic;
    font-weight: 500;
    color: #555;
    margin: 25px 0;
}

/* Images inside the post content */
.single-post .entry-content img {
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    margin: 25px 0;
    width: 100%;
    height: auto;
}

/* Lists spacing */
.single-post .entry-content ul li,
.single-post .entry-content ol li {
    margin-bottom: 10px;
}

/* Author box (if enabled) */
.single-post .ast-author-details {
    border-radius: 12px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #eee;
}

/* Comments section */
.single-post #comments {
    margin-top: 40px;
}

.single-post #comments h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
/* Make Astra single post container wider */
.single-post .ast-container {
    max-width: 950px !important;
}
/* === GLORY FOCUS HEADER ALIGNMENT FIX (Single Posts Only) === */

/* The .single-post class ensures the rules only apply to individual post pages */
.single-post .site-header .main-header-bar .ast-container {
    /* Enables Flexbox layout for the primary header row */
    display: flex;
    
    /* Pushes the logo (.site-branding) to the left and navigation/button to the right */
    justify-content: space-between;
    
    /* Vertically centers all elements (logo, menu, button) within the header bar */
    align-items: center;
    
    /* Ensure the container uses the full width it's allowed */
    width: 100%; 
}

/* Target the Navigation container to ensure it stays in a row with the button */
.single-post .site-header .main-header-bar-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
}

/* Fix Menu Items: Ensure the main menu links flow horizontally */
.single-post .main-header-menu {
    display: flex; 
    list-style: none;
}
/* ===== Single Post Navigation Bar Styles ===== */

/* Change background color for single post header */
.single-post .ast-primary-header {
    background-color: #1a1a1a; /* Dark background, change as needed */
    padding: 15px 0;           /* Vertical spacing */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* subtle shadow */
}

/* Adjust menu item spacing */
.single-post .ast-header-break-point .main-header-menu > li {
    margin: 0 15px; /* space between each menu item */
}

/* Menu link styles */
.single-post .main-header-menu > li > a {
    color: #ffffff;       /* White text */
    font-size: 16px;      /* Adjust font size */
    font-weight: 500;     /* Medium weight */
    text-transform: uppercase; /* Optional: uppercase links */
    transition: color 0.3s ease;
}

/* Hover effect for links */
.single-post .main-header-menu > li > a:hover {
    color: #ffcc00; /* Highlight on hover */
}

/* Optional: make the logo stand out on single posts */
.single-post .ast-site-identity img {
    max-height: 60px; /* Adjust logo size */
}

/* Optional: adjust padding around the header on mobile */
@media (max-width: 768px) {
    .single-post .ast-primary-header {
        padding: 10px 0;
    }

    .single-post .ast-header-break-point .main-header-menu > li {
        margin: 0 10px;
    }
}
/* ===== Single Post Sticky Navigation Bar ===== */

/* Make header sticky only on single posts */
.single-post .ast-primary-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: rgba(26, 26, 26, 0.95); /* Slightly transparent */
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* subtle shadow */
    transition: all 0.3s ease;
}

/* Smooth shrink effect on scroll */
.single-post .ast-primary-header.is-sticky {
    padding: 10px 0;
    background-color: rgba(26, 26, 26, 1);
}

/* Menu item spacing */
.single-post .ast-header-break-point .main-header-menu > li {
    margin: 0 20px; /* Increase spacing between links */
}

/* Menu link styles */
.single-post .main-header-menu > li > a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px; /* Adds spacing between letters */
    text-transform: uppercase;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

/* Hover effect */
.single-post .main-header-menu > li > a:hover {
    color: #ffcc00;  /* Highlight on hover */
    letter-spacing: 2px; /* Slight letter spacing animation */
}

/* Logo adjustments */
.single-post .ast-site-identity img {
    max-height: 60px;
    transition: max-height 0.3s ease;
}

/* Shrink logo on sticky */
.single-post .ast-primary-header.is-sticky .ast-site-identity img {
    max-height: 50px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .single-post .ast-primary-header {
        padding: 10px 0;
    }
    .single-post .ast-header-break-point .main-header-menu > li {
        margin: 0 12px;
    }
}
/* Hide Contact menu item only on single posts */

/* Replace 'Contact' with your exact menu text */
.single-post .main-header-menu li a[href*="contact"] {
    display: none;
}

/* Optional: remove the extra space after hiding */
.single-post .main-header-menu li a[href*="contact"]::after {
    content: none;
}
/* Remove padding on single post navigation */
.single-post .ast-primary-header {
    padding: 0; /* Removes all top/bottom padding */
}

/* Optional: remove spacing from menu items */
.single-post .ast-header-break-point .main-header-menu > li > a {
    padding: 0 10px; /* Adjust horizontal spacing between links */
}

/* Optional: shrink logo if needed */
.single-post .ast-site-identity img {
    max-height: 50px; /* Reduce logo size to fit smaller header */
}
/* SINGLE POST PAGE HEADINGS */

/* Main Post Title */
body.single-post .entry-title,
body.single-post .post-title,
body.single-post h1.entry-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 0.6em;
}

/* Headings inside the post content */
body.single-post .entry-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 1.5em 0 0.6em;
  color: #1f2937;
}

body.single-post .entry-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 1.2em 0 0.5em;
  color: #374151;
}

body.single-post .entry-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 1em 0 0.4em;
  color: #4b5563;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body.single-post .entry-title {
    font-size: 26px;
  }
  body.single-post .entry-content h2 {
    font-size: 20px;
  }
  body.single-post .entry-content h3 {
    font-size: 18px;
  }
}
/* Astra header — single post only */
.single-post .main-header-bar {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.single-post .site-header-section {
    align-items: center !important;
}
/* --- SINGLE POST PAGE NAVIGATION FIXES --- */

/* 1. Fix stretched logo */
.single-post .custom-logo,
.single-post .site-header .custom-logo {
    height: auto !important;
    width: auto !important;
    max-height: 55px !important;   /* adjust if needed */
    object-fit: contain !important;
}

/* 2. Change header background to #1A1A1A */
.single-post .main-header-bar {
    background-color: #1A1A1A !important;
}

/* 3. Optional: adjust navigation link color on single posts */
.single-po

/* GS Logo Carousel - uniform logos */
.gs-logo-carousel img {
    width: 120px;        /* adjust width as needed */
    height: 60px;        /* set a uniform height */
    object-fit: contain; /* keeps aspect ratio inside box */
    display: block;
    margin: 0 auto;      /* center logos */
}
