/*
 * Template Name: Wines
 * Template Author: Colorlib (https://colorlib.com/wp/templates/wines)
 * Author URI: https://colorlib.com
 * License: https://colorlib.com/wp/template-terms/
*/

/* --- Retro Neon Theme Overrides & Additions --- */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@400;700&display=swap');

:root {
  /* Background */
  --bg-dark: rgb(20, 20, 20);
  /* Good dark for eye comfort */

  /* Text Colors */
  --text-primary: #f0e68c;
  /* Khaki - warm, good contrast */
  --text-secondary: #c0c0c0;
  /* Silver - softer secondary text */

  /* Neon Accent Colors */
  --neon-pink: rgb(207, 0, 159, 0.4);
  /* Slightly cooler neon pink for vibrancy */
  --neon-turquoise: #00ffff;
  /* Bright turquoise */

  /* New Cyber-Herbal Colors */
  --neon-green: #39ff14;
  /* Bright neon green */
  --herbal-gold: #4D2D2B;
  /* Corrected to rgba for transparency */
  --lux-green: #1C4D3B;

  /* Typography (commented for now) */
  /* --font-heading: 'Press Start 2P', cursive; */
  /* --font-body: 'Poppins', sans-serif; */
}


/* Base */
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}

.header-top {
  background-color: #fff;
}

body {
  /* line-height: 1.7; */
  /* color: var(--text-primary); */
  /* Changed to light gray for dark theme */
  font-weight: 300;
  font-size: 1rem;
  background-color: var(--lux-green);
  /* Set body to a dark background */
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/* Example for an accent element */
.special-heading {
  font-family: 'Playfair Display', serif;
  /* Use Poppins for body text */
}

::selection {
  background: var(--neon-pink);
  /* Neon highlight on selection */
  color: #fff;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: var(--neon-turquoise);
}

a:hover {
  text-decoration: none;
  color: var(--neon-pink);
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5,
.section-title h2 {
  font-family: var(--font-heading);
  /* Use Pacifico for headings */
  color: var(--herbal-gold);
  /* Apply neon pink color */
  /* text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink); */
  transition: text-shadow 0.3s ease-in-out;
}

h1:hover,
h2:hover,
h3:hover,
h4:hover {
  text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
}

.text-black {
  color: var(--text-primary) !important;
  /* Adjust text-black for the dark theme */
}

.site-wrap:before {
  display: none;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-menu .site-wrap {
  height: 100%;
  width: 100%;
  z-index: 2;
}

.offcanvas-menu .site-wrap:before {
  opacity: 1;
  visibility: visible;
}

.site-section {
  padding: 2.5em 0;
  background-color: var(--bg-dark);
  /* Ensure section background is dark */
}

@media (min-width: 768px) {
  .site-section {
    padding: 7em 0;
  }
}

.site-section.site-section-sm {
  padding: 4em 0;
}

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .site-section-heading {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .display-3 {
    font-size: 3rem;
  }
}

/* Navbar */
.site-logo {
  font-size: 2rem;
  color: var(--neon-pink);
}

.site-logo img {
  filter: drop-shadow(0 0 5px var(--neon-turquoise));
  /* Add a subtle glow to the logo image */
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  background: transparent;
  /* Changed to transparent for dark theme */
  font-family: var(--font-body);
  font-weight: bold;
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-navbar .site-navigation .site-menu {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active>a {
  color: var(--neon-turquoise);
  /* Active link color */
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
}

/* .site-navbar .site-navigation .site-menu>li:first-child>a {
  padding-left: 0;
} */

.site-navbar .site-navigation .site-menu>li>a {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .05rem;
  font-weight: 400;
  display: inline-block;
  text-decoration: none !important;
  color: var(--text-primary);
  /* Link color */
  position: relative;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: var(--neon-turquoise);
  /* Hover effect */
  text-shadow: 0 0 5px var(--neon-turquoise);
}

.site-navbar .site-navigation .site-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--neon-turquoise);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.site-navbar .site-navigation .site-menu>li>a:hover::after,
.site-navbar .site-navigation .site-menu .active>a::after {
  width: 100%;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
  color: var(--text-primary);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid var(--neon-pink);
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: var(--bg-dark);
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: var(--text-primary);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active>a {
  color: var(--neon-pink) !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--neon-turquoise);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: rgba(255, 255, 255, 0.05);
  color: var(--neon-turquoise);
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: var(--neon-turquoise);
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: var(--bg-dark);
  /* Dark mobile menu */
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.5);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.5);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: var(--text-primary);
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: var(--neon-pink);
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: var(--text-primary);
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: var(--neon-pink);
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li.active>a {
  color: var(--neon-pink) !important;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
  background: var(--bg-dark);
  /* Dark background for sticky navbar */
}

@media (max-width: 991.98px) {
  .sticky-wrapper {
    display: none;
  }
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-wrapper .site-navbar .site-logo a {
  color: var(--neon-pink);
}

.sticky-wrapper .site-navbar .site-menu>li {
  display: inline-block;
}

.sticky-wrapper .site-navbar .site-menu>li.active>a {
  color: var(--neon-turquoise);
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: var(--neon-pink);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li {
  display: inline-block;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
  display: inline-block;
  text-decoration: none !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover {
  color: var(--neon-turquoise);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active:after {
  background: var(--neon-turquoise);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li.active>a {
  color: var(--neon-turquoise);
}

.sticky-wrapper .shrink {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Blocks */


.intro-section.container .row {
  height: 100vh;
  min-height: 700px;
}

.intro-section:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  background: #222;
  opacity: .6;
  /* Increased opacity for better text contrast */
  border-bottom-right-radius: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .intro-section:before {
    width: 100%;
  }
}

.intro-section h1 {
  font-size: 5rem;
  font-weight: 300;
  color: var(--neon-pink);
  /* Neon color for hero title */
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  /* text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink); */
}

@media (max-width: 991.98px) {
  .intro-section h1 {
    font-size: 2rem;
  }
}

.intro-section h1 strong {
  font-weight: 700;
}

.intro-section .sub-title {
  font-family: var(--font-body);
  color: var(--neon-turquoise);
  /* Neon turquoise for subtitle */
  font-size: 1.5rem;
  text-shadow: 0 0 5px var(--neon-turquoise);
}

.intro-section p {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.intro-section p a {
  color: var(--text-primary);
  text-decoration: underline;
}

.owl-slide-3,
.owl-slide,
.owl-style {
  position: relative;
}

.owl-slide-3 .owl-stage,
.owl-slide .owl-stage,
.owl-style .owl-stage {
  padding-top: 30px;
  padding-bottom: 30px;
}

.owl-slide-3 .owl-nav .owl-prev,
.owl-slide-3 .owl-nav .owl-next,
.owl-slide .owl-nav .owl-prev,
.owl-slide .owl-nav .owl-next,
.owl-style .owl-nav .owl-prev,
.owl-style .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  /* Darker carousel navigation */
  color: var(--neon-turquoise);
}

.owl-slide-3 .owl-nav .owl-prev>span,
.owl-slide-3 .owl-nav .owl-next>span,
.owl-slide .owl-nav .owl-prev>span,
.owl-slide .owl-nav .owl-next>span,
.owl-style .owl-nav .owl-prev>span,
.owl-style .owl-nav .owl-next>span {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.owl-slide-3 .owl-nav .owl-prev,
.owl-slide .owl-nav .owl-prev,
.owl-style .owl-nav .owl-prev {
  left: 0;
}

.owl-slide-3 .owl-nav .owl-next,
.owl-slide .owl-nav .owl-next,
.owl-style .owl-nav .owl-next {
  right: 0;
}

.owl-slide-3 .owl-dots,
.owl-slide .owl-dots,
.owl-style .owl-dots {
  position: absolute;
  bottom: -0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.owl-slide-3 .owl-dots .owl-dot,
.owl-slide .owl-dots .owl-dot,
.owl-style .owl-dots .owl-dot {
  display: inline-block;
}

.owl-slide-3 .owl-dots .owl-dot>span,
.owl-slide .owl-dots .owl-dot>span,
.owl-style .owl-dots .owl-dot>span {
  border-radius: 0%;
  display: inline-block;
  width: 18px;
  height: 4px;
  margin: 2px 5px;
  background: rgba(255, 255, 255, 0.2);
}

.owl-slide-3 .owl-dots .owl-dot.active>span,
.owl-slide .owl-dots .owl-dot.active>span,
.owl-style .owl-dots .owl-dot.active>span {
  background: var(--neon-turquoise);
}

.owl-slide .owl-nav {
  display: none;
}

@media (max-width: 991.98px) {
  .owl-style .owl-nav {
    display: none;
  }
}

#loader {
  background-color: var(--bg-dark);
  /* Dark loader background */
}

/*engineers*/

.header-top>.container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--neon-pink);
  text-shadow: 0 0 5px var(--neon-pink);
}

.form-control:hover,
.form-control:focus,
.form-control:active {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.person {
  position: relative;
}

.person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.person img {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.person:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.categories li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  list-style: none;
}

.categories li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.categories li a {
  display: block;
  color: var(--text-primary);
}

.categories li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--text-secondary);
}

.categories li.active a {
  color: var(--neon-pink);
  font-style: italic;
}

.comment-form-wrap {
  clear: both;
}

.comment-list {
  padding: 0;
  margin: 0;
}

.comment-list .children {
  padding: 50px 0 0 40px;
  margin: 0;
  float: left;
  width: 100%;
}

.comment-list li {
  padding: 0;
  margin: 0 0 30px 0;
  float: left;
  width: 100%;
  clear: both;
  list-style: none;
}

.comment-list li .vcard {
  width: 80px;
  float: left;
}

.comment-list li .vcard img {
  width: 50px;
  border-radius: 50%;
}

.comment-list li .comment-body {
  float: right;
  width: calc(100% - 80px);
}

.comment-list li .comment-body h3 {
  font-size: 18px;
  color: var(--text-primary);
}

.comment-list li .comment-body .meta {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--text-secondary);
}

.comment-list li .comment-body .reply {
  padding: 5px 10px;
  background: var(--neon-pink);
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

.comment-list li .comment-body .reply:hover {
  background: #60004e;
  color: #fff;
}

.post-meta {
  font-size: .8rem;
}

.post-meta a {
  color: var(--neon-turquoise);
}

.bio-pic {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
}

.bio-pic img {
  max-width: 100%;
  border-radius: 50%;
}

/* For Meranda*/
.date-read {
  color: var(--text-secondary);
}

.post-entry-1,
.post-entry-2 {
  font-size: 1rem;
  margin-bottom: 30px;
}

.post-entry-1 img,
.post-entry-2 img {
  margin-bottom: 30px;
}

.post-entry-1 h2,
.post-entry-2 h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  text-shadow: none;
  color: var(--text-primary);
}

.post-entry-1 h2 a,
.post-entry-2 h2 a {
  color: var(--text-primary);
}

.post-entry-2 {
  font-size: .9rem;
}

.post-entry-2 .thumbnail {
  background-size: cover;
  background-position: center;
  width: 30%;
}

.post-entry-2 .contents {
  width: 70%;
  padding: 10px 20px;
}

.post-entry-2 .contents h2 {
  font-size: 15px;
}

.trend-entry {
  margin-bottom: 30px;
}

.trend-entry .number {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  font-size: 30px;
  line-height: 1;
  color: var(--text-secondary);
}

.trend-entry .trend-contents h2 {
  font-size: 18px;
}

.trend-entry .trend-contents h2 a {
  color: var(--text-primary);
}

.caption {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
}

.caption.small {
  font-size: .6rem;
}

.more {
  color: var(--neon-pink);
  text-transform: uppercase;
  font-size: .83rem;
}

.custom-pagination {
  padding: 0;
  margin: 0;
  font-size: .89rem;
  color: var(--text-primary);
}

.custom-pagination li {
  display: inline-block;
}

.custom-pagination li a {
  padding: 10px 10px;
  display: inline-block;
  color: var(--text-secondary);
}

.custom-pagination li a:hover {
  color: var(--text-primary);
}

.custom-pagination li.active a {
  color: var(--text-primary);
}

.form-control {
  margin-right: 10px;
  padding-left: 20px;
  padding-right: 20px;
  /* border: none; */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(71, 70, 70, 0.8);
  color: var(--text-primary);
}

.form-control:active,
.form-control:focus {
  border-bottom: 1px solid var(--neon-turquoise);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 5px var(--neon-turquoise);
}

.subscribe form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.subscribe form .form-control:active,
.subscribe form .form-control:focus {
  border-bottom: 1px solid var(--neon-turquoise);
}

.subscribe form .btn {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
}

.subscribe form .btn:hover {
  background: var(--neon-turquoise);
  border-color: var(--neon-turquoise);
}

.subscribe form h2 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.subscribe form p {
  font-size: .9rem;
}

.search-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.search-form .form-control:active,
.search-form .form-control:focus {
  border-bottom: 1px solid var(--neon-turquoise);
}

.search-form .btn {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
}

.search-form .btn:hover {
  background: var(--neon-turquoise);
  border-color: var(--neon-turquoise);
}

.search-form h2 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.search-form p {
  font-size: .9rem;
}

/* .footer {
  font-size: .85rem;
  text-align: center;
  padding: 7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
} */

.top-social a {
  color: var(--text-primary);
}

.top-social a:hover {
  color: var(--neon-turquoise);
}

.single-content h1 {
  font-size: 2rem;
  color: var(--text-primary);
}

.single-content {
  font-size: .9rem;
}

.wine_v_1 {
  position: relative;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.wine_v_1:before {
  display: none;
  /* Hide original background */
}

.wine_v_1 .thumbnail {
  position: relative;
  display: block;
}

.wine_v_1 .heading {
  font-size: 18px;
}

.wine_v_1 .heading a {
  color: var(--text-primary);
}

.wine_v_1 .wine-actions {
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.wine_v_1 .wine-actions .heading-2 {
  font-size: 20px;
  font-family: var(--font-heading);
  color: var(--neon-pink);
  text-shadow: 0 0 5px var(--neon-pink);
}

.wine_v_1 .wine-actions .heading-2 a {
  color: var(--neon-pink);
}

.wine_v_1 .wine-actions .price {
  font-size: 20px;
  color: var(--neon-turquoise);
  font-family: var(--font-body);
  text-shadow: 0 0 3px var(--neon-turquoise);
}

.wine_v_1 .wine-actions .price del {
  color: var(--text-secondary);
}

.wine_v_1 .wine-actions .rating {
  margin-bottom: 20px;
}

.wine_v_1 .wine-actions .rating span {
  font-size: 16px;
  color: var(--neon-pink);
}

.wine_v_1 .wine-actions .btn {
  background: var(--neon-pink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
}

.wine_v_1 .wine-actions .btn:hover {
  background: var(--neon-turquoise);
  color: var(--bg-dark);
}

.wine_v_1:hover,
.wine_v_1:focus {
  border-color: var(--neon-turquoise);
  box-shadow: 0 0 20px var(--neon-turquoise);
}

.wine_v_1:hover .wine-actions,
.wine_v_1:focus .wine-actions {
  opacity: 1;
  visibility: visible;
}

.hero-2 {
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center center;
}

.hero-2>.container .row {
  height: 50vh;
  min-height: 500px;
  z-index: 2;
}

.hero-2:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  background: #222;
  opacity: .6;
  /* Dark overlay for contrast */
  border-bottom-right-radius: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-2 h2 {
  font-size: 5rem;
  font-weight: 300;
  color: var(--neon-pink);
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  /* text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink); */
}

@media (max-width: 991.98px) {
  .hero-2 h2 {
    font-size: 2rem;
  }
}

.hero-2 h2 strong {
  font-weight: 700;
}

.hero-2 .sub-title {
  font-family: var(--font-body);
  color: var(--neon-turquoise);
  font-size: 1.5rem;
  text-shadow: 0 0 5px var(--neon-turquoise);
}

.hero-2 p {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.hero-2 p a {
  color: var(--text-primary);
  text-decoration: underline;
}

.testimony {
  font-size: 20px;
  font-family: var(--font-heading);
  text-align: center;
  text-transform: none !important;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  /* Dark card background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
}

.testimony img {
  max-width: auto !important;
  width: 80px !important;
  border: 4px solid var(--neon-pink);
  /* Neon border on images */
  margin-bottom: 30px;
  border-radius: 50%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.owl-slide-3-white .owl-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.owl-slide-3-white .owl-dots .owl-dot {
  display: inline-block;
}

.owl-slide-3-white .owl-dots .owl-dot>span {
  border-radius: 0%;
  display: inline-block;
  width: 18px;
  height: 4px;
  margin: 2px 5px;
  background: rgba(255, 255, 255, 0.3);
}

.owl-slide-3-white .owl-dots .owl-dot.active>span {
  background: var(--neon-pink);
}

/* --- Main Footer Container --- */
.footer {
  background-color: var(--bg-dark);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--neon-turquoise);
  box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.2);
  font-family: var(--font-body);
}

/* --- Footer Headings --- */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green);
  margin-bottom: 20px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: var(--herbal-gold);
  box-shadow: 0 0 5px var(--herbal-gold);
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Quick Links Section --- */
.footer .list-unstyled li a {
  color: var(--neon-pink);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.footer .list-unstyled li a:hover {
  color: var(--herbal-gold);
  text-shadow: 0 0 5px var(--herbal-gold);
}

.footer .list-unstyled li a::before {
  content: "«";
  position: absolute;
  left: -15px;
  color: var(--neon-turquoise);
  text-shadow: 0 0 5px var(--neon-turquoise);
}

.footer .list-unstyled li a:hover::before {
  color: var(--herbal-gold);
}

/* --- Contact Info Section --- */
.footer .list-unstyled span {
  font-weight: 700;
  color: var(--neon-green);
  text-shadow: 0 0 3px var(--neon-green);
}

.footer .list-unstyled span+span {
  font-weight: 400;
  color: var(--text-secondary);
  text-shadow: none;
}

/* --- Social Icons --- */
/* Social Icons with a visible hover state */




/* --- Copyright Section --- */
.footer .copyright p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 0;
  line-height: 1.6;
}

.footer .copyright p:first-of-type {
  margin-bottom: 5px;
}

.footer .copyright a {
  color: var(--herbal-gold);
  text-decoration: none;
  text-shadow: 0 0 3px var(--herbal-gold);
  transition: color 0.3s ease;
}

.footer .copyright a:hover {
  color: var(--neon-green);
  text-decoration: underline;
  text-shadow: 0 0 5px var(--neon-green);
}

.footer .copyright a strong {
  color: var(--neon-pink);
  text-shadow: 0 0 3px var(--neon-pink);
}

/* Enhanced Social Icons */
.social-icons {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  /* Added margin for spacing */
  display: flex;
  justify-content: center;
}

.social-icons a:hover {
  background-color: var(--neon-turquoise) !important;
}

/* Copyright section */
/* --- Footer Enhancements for Nature/Holistic Theme --- */

.footer {
  background-color: var(--bg-dark);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  /* Using the new body font */
}

.footer-heading {
  font-family: var(--font-heading);
  /* Using the new heading font */
  font-size: 1.5rem;
  color: var(--accent-green);
  text-shadow: none;
  /* Removing the neon glow */
  margin-bottom: 20px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 1px;
  background-color: var(--accent-gold);
  box-shadow: none;
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer .list-unstyled li {
  margin-bottom: 10px;
}

.footer .list-unstyled li a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.footer .list-unstyled li a:hover {
  color: var(--accent-gold);
  text-shadow: none;
}

.footer .list-unstyled li a::before {
  content: "—";
  /* Changing the bullet to a dash */
  position: absolute;
  left: -15px;
  color: var(--accent-gold);
  opacity: 0.8;
}

.footer .list-unstyled li a:hover::before {
  color: var(--accent-green);
  /* Subtle color change on hover */
}

.footer .list-unstyled span {
  font-weight: 700;
  color: var(--accent-green);
  text-shadow: none;
}

.footer .list-unstyled span+span {
  font-weight: 400;
  color: var(--text-secondary);
}

/* Social Icons */
.footer .social-icons {
  text-align: left;
  margin-top: 20px;
}

.footer .social-icons a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  /* Slightly smaller */
  height: 35px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 1.1rem;

  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-secondary);
  /* Thinner, subtle border */
  box-shadow: none;
  /* Removing the glow effect */

  transition: all .3s ease-in-out;
}

.footer .social-icons a:hover {
  background: var(--accent-green);
  color: var(--bg-dark);
  /* Dark text on green background */
  border-color: var(--accent-green);
  box-shadow: 0 0 5px rgba(109, 146, 98, 0.5);
  /* Subtle shadow instead of a full glow */
  transform: scale(1.05);
  /* Gentle scale effect */
}

/* Copyright section */
.footer .copyright p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .copyright p a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer .copyright p a:hover {
  color: var(--accent-green);
}

.footer .copyright p strong {
  color: var(--accent-green);
  font-weight: normal;
  text-shadow: none;
}

.page-title-wrap h1 {
  color: var(--text-primary);
  font-style: 4rem;
  font-family: var(--font-heading);
}

.site-blocks-table {
  overflow: auto;
}

.site-blocks-table thead th {
  color: var(--text-primary);
}

.site-blocks-table td {
  color: var(--text-primary);
}

.site-blocks-table tbody tr:first-child td {
  border-top: 1px solid var(--neon-pink) !important;
}

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important;
}

.site-block-order-table td,
.site-block-order-table th {
  color: var(--text-primary);
}

.cart-product-title {
  font-family: var(--font-body);
}

.block-16 figure {
  position: relative;
}

.block-16 figure .play-button {
  background: var(--neon-pink);
  color: var(--bg-dark);
}

.block-16 figure .play-button:hover {
  opacity: 1;
  background: var(--neon-turquoise);
  color: var(--bg-dark);
}

.block-16 figure .play-button>span {
  position: absolute;
  left: 55%;
  top: 50%;
  font-size: 20px !important;
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}

.font-heading-serif {
  font-family: var(--font-heading) !important;
}

.site-blocks-1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-blocks-1 .icon span {
  position: relative;
  color: var(--neon-turquoise);
  text-shadow: 0 0 5px var(--neon-turquoise);
  top: -10px;
  font-size: 50px;
  display: inline-block;
}

.site-blocks-1 .text h2 {
  color: var(--text-primary);
  letter-spacing: .05em;
  font-size: 18px;
}

.site-blocks-1 .text p:last-child {
  margin-bottom: 0;
}


/* product card */
.wine_v_1 {
  background-color: #c9c5c5;
  /* white background */
  border-radius: 6px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wine_v_1:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.25);
}

.wine_v_1 .thumbnail img {
  max-height: 320px;
  width: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}



.wine_v_1 .price {
  font-weight: 700;
  color: #d2691e;
  /* warm brown color */
  font-size: 1.1rem;
}

.wine-actions {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  margin-top: 15px;
}

.wine_v_1:hover .wine-actions {
  opacity: 1;
  max-height: 250px;
  /* enough to show content */
}

.wine-actions .btn.add {
  background-color: #d2691e;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  color: white;
  transition: background-color 0.3s ease;
  border-radius: 6px;
}

.wine-actions .btn.add:hover {
  background-color: #a0522d;
}

.wine-actions .rating span {
  color: #ffb400;
  font-size: 1.1rem;
  margin-right: 2px;
}

.wine_v_1 .wine-actions .heading-2 a {
  color: #1fec0d;
}


/* whole page slide */

.owl-carousel.hero-slide,
.intro-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  /* full screen height */
  width: 100%;
  /* full width */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  /* override any margin */
  padding: 0 !important;
  /* override any padding */
}


