/*
Theme Name: Hello PWX
Template: hello-elementor
Version: 1.0
Author: Your Name
Description: Premium Wine Exchange child theme based on Hello Elementor.
*/

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #4a0e0e;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Header Wrapper */
.site-header {
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding-bottom: 8px;
}

/* Logo Centered with Equal Top/Bottom Space */
.header-top {
  padding: 30px 0; /* equal spacing top & bottom */
}

.logo {
  height: 55px;
  object-fit: contain;
}

/* Navigation */
.navbar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
}

header nav a,
#mobile-menu a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

header nav a:hover,
header nav a:focus,
#mobile-menu a:hover,
#mobile-menu a:focus {
  color: #C5A028;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 20px;
    border: none;
  }

  .navbar {
    padding: 20px 0;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background-image: url('images/footer-bg.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 0 5rem !important;
  max-width: 100% !important; /* Override parent theme's max-width */
}


.footer-content {
  position: relative;
  z-index: 2;
}

.footer-bottom-bar {
  background-color: #4b0f0f; /* Dark red color */
  color: #a0aec0; /* Gray-400 equivalent */
  text-align: center;
  padding: 1rem 0;
  font-size: 0.75rem; /* text-xs */
}

/* --- Single Post Page Styles --- */
.single-post-main {
    background-color: #ffffff;
    color: #333;
    padding: 5rem 1rem;
}

.single-post-container {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.single-post-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.single-post-title {
    color: #111;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.single-post-meta {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
}

.single-post-meta .post-date,
.single-post-meta .post-author {
    margin-right: 1.25rem;
}

.single-post-meta i {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.single-post-featured-image {
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.single-post-content h2, 
.single-post-content h3, 
.single-post-content h4 {
    color: #111;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 600;
}

.single-post-tags {
    margin-top: 2.5rem;
    padding: 1.25rem;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.single-post-tags .tags-label {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
}

.single-post-tags .tags-label i {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.single-post-tags .tags-list a {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 5px 5px 0;
    background-color: #C5A028;
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.single-post-nav {
    margin-top: 3.75rem;
    padding-top: 2.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.single-post-nav .nav-previous, 
.single-post-nav .nav-next {
    flex: 1;
    min-width: 200px;
}

.single-post-nav a {
    display: block;
    padding: 1.25rem;
    background-color: #f7f7f7;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.single-post-nav .nav-label {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.single-post-nav .nav-title {
    color: #333;
    font-weight: 600;
}
