/*
Theme Name: Adinco New
Author: Your Name
Version: 1.1
Description: Converted from HTML using Pinegrow
*/


* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents horizontal overflow that can cause vertical scroll */
  width: 100%;
}

body {
  background-color: #ffffff !important;
}
body,
html {
  margin: 0;
  padding: 0;
font-family: 'Cinzel', serif;
  height: 100%;
  /* padding-top: 80px; */
}
.logo-image {
  /* width: 200px;
  max-width: 100%; */
  opacity: 0;
  transform: scale(0.8);
  animation: panIn 1s ease-out forwards;
}

/* Animation keyframes */
@keyframes panIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Changed from min-width */
  height: 100%; /* Changed from min-height */
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* Optional: prevents interaction blocking */
}

.navbar {
   display: flex;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9s); /* Darker on scroll */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 100;
  line-height: normal;
}


.store-locator a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 4px;
}
.store-locator a:hover {
  background: white;
  color: #000;
}

/* Default: Hide the mobile store locator on larger screens */
.store-locator-mobile {
  display: none;
}

@media (max-width: 767px) {
  .store-locator {
    display: none;
  }
}

/* Mobile view: show the store locator inside the menu */
@media (max-width: 767px) {
  .store-locator-mobile {
    display: block;
    margin-top: 10px;
  }

  .store-locator-mobile a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 10px;
    border: 2px solid white;
    text-align: center;
    border-radius: 4px;
  }

  .store-locator-mobile a:hover {
    background: white;
    color: black;
  }
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  text-align: center;
  margin-bottom: 0px;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Keyframes for fade-in up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
  /* font-family: Fraunces !important; */
  color: #fff;
  font-size: 80px;
  visibility: visible;
  text-indent: 0;
  box-sizing: border-box;
  white-space: nowrap;
  font-weight: 600 !important;
  backface-visibility: hidden;
  clear: both;
  display: inline-block;
  position: relative;
  animation-duration: 1s;
  opacity: 1;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 90%;
}

@media (max-width: 767px) {
  .hero {
    justify-content: center; /* Center hero content vertically */
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    text-align: center;
    margin-bottom: 0; /* Remove bottom margin */
    height: 100%;     /* Take full height of hero */
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
  }
}


.btn {
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

.logo img {
  height: 60px;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}


/* Drawer base styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: #111;
  color: white;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

/* Show drawer */
.mobile-drawer.active {
  right: 0;
}

/* Drawer Close Button */
.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}

/* Drawer nav styles */
.drawer-nav {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
}

.drawer-nav li {
  margin-bottom: 1.5rem;
}

.drawer-nav a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}

.drawer-nav a:hover {
  color: #ccc;
}

/* Store locator button style */
.store-locator-mobile a {
  border: 1px solid white;
  padding: 0.75rem 1rem;
  display: inline-block;
  border-radius: 4px;
  text-align: center;
}

.navbar {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.5);
}

.darknavbar{
    z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.9);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* ABOUT CSS */
.intro-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.intro-wrapper {
  max-width: 900px;
  text-align: left;
}

.intro-label {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #5a5a5a;
  letter-spacing: 1px;
}

.intro-label {
  margin-bottom: 0; /* remove bottom margin */
  margin-top: 0;
}

.intro-text {
  font-size: 1rem;
  line-height: 2.4rem;
  color: #333;
  /* font-family: 'Georgia', serif; */
}

/* SHOP CSS */

.container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  /* padding: 2rem; */
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
   text-align: left;
}

.columna {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height:30px;
  text-align: left;
}

/* Common styles for text blocks */
.text-block {
  color: white;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.text-block.background-craft {
  background-image: url('assets/alcohol1.png'); /* Update with actual path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  height: 350px;
  padding: 0; /* Remove padding so content-row controls layout */
}

.text-block.background-craft::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.2) 80%); */
  z-index: 0;
}
.text-block.background-spirits {
  background-image: url('assets/chocolate1.png'); /* Update with actual path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  height: 350px;
  padding: 0; /* Remove padding so content-row controls layout */
}
@media (max-width: 800px) {
  .text-block.background-spirits {
    background-color: #000; /* Black fallback */
    height: 350px; /* Optional: allow height to adjust naturally */
    padding: 20px; /* Optional: reintroduce some padding for readability */
  }
   .text-block.background-craft {
    background-image: none; /* Remove image */
    background-color: #000; /* Black fallback */
    height: 350px; /* Optional: allow height to adjust naturally */
    padding: 20px; /* Optional: reintroduce some padding for readability */
  }
 
  .content-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
  }

  .text-content {
    margin-left: 0;
    max-width: 100% !important;
    width: 100%;
    text-align: left;
  }

  .text-block {
    background-color: #000 !important;
    background-image: none !important;
    color: #fff;
    width: 100%;
  }

  .column {
    width: 100%;
  }

}
/* Responsive override for mobile */
@media (max-width: 768px) {
  .text-block.background-spirits {
    background-image: none; /* Remove image */
    background-color: #000; /* Black fallback */
    height: auto; /* Optional: allow height to adjust naturally */
    padding: 20px; /* Optional: reintroduce some padding for readability */
  }
   .text-block.background-craft {
    background-image: none; /* Remove image */
    background-color: #000; /* Black fallback */
    height: auto; /* Optional: allow height to adjust naturally */
    padding: 20px; /* Optional: reintroduce some padding for readability */
  }
 
  .content-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
  }

  .text-content {
    margin-left: 0;
    max-width: 100% !important;
    width: 100%;
    text-align: left;
  }

  .text-block {
    background-color: #000 !important;
    background-image: none !important;
    color: #fff;
    width: 100%;
  }

  .column {
    width: 100%;
  }

}

.text-block.background-spirits::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.2) 80%); */
  z-index: 0;
}

.background-spirits {
  background-color: #111; /* Slightly different black for contrast, optional */
}

.background-craft {
  background-color: #111;
}



.content-row {
   text-align: left;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
  /* padding: 2rem; */
}

.text-content {
  margin-left: auto;
  max-width: 50%;
  text-align: left;
}

.side-image {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

.text-content {
  flex: 1;
  font-weight: 100;
}


.text-block h2 {
  margin-bottom: 1rem;
}

.text-block p {
  line-height: 1.5;
}

.image {
  width: 100%;
  height: 350px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .content-row {
    width: 85vw;
    margin: 0 auto;
    padding: 32px 0 32px 0;
    flex-direction: column; 
    text-align: center;
  }

  .side-image {
    width: 100%;
    height: auto;
  }

  .text-content {
    /* padding: 0 1rem; */
    text-align: left;
  }
  
  .image{
    display: none;
  }
}

/*IMAGE CSS*/

.scroll-section {
  position: relative;
  margin-bottom: 50px;
}

.sticky-image {
  position: sticky;
  top: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.dimage-1 {
  background-image: url('assets/distillery1.jpg');
  z-index: 1;
  height: 500px;
}

.dimage-2 {
  height: 500px;
  background-image: url('assets/distillery2.jpg');
  z-index: 2;
  position: absolute;
  top: 0;
  opacity: 0;
}

.dimage-2.active {
  opacity: 1;
}

.dimage-1.inactive {
  opacity: 0;
}

/* FOOTER SECTION */

.footer {
  background-color: #101213;
  color: #fff;
  /* font-family: sans-serif; */
  
}

.footer-top {
  display: flex;
  border-bottom: 1px solid #323232;
}

.footer-column {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #323232;
}

.footer-column2 {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
}

.footer-column:last-child {
  border-right: none;
}

.footer-item {
  padding-bottom: 2px;
}

.footer-bottom {
  padding: 15px 20px;
  font-size: 14px;
  background-color: #101213;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.About_Background_Image {
  background-image: url("<?php echo get_template_directory_uri(); ?>/assets/about.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 98vh;
  color: white;
  position: relative;
}

.hero-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  opacity: 0;
  transition: all 0.8s ease-out;
  text-align: center;
  font-size: clamp(40px, 4vw, 100px);
  padding: 0 12rem;
  margin: 0;
  z-index: 2;
}

.hero-heading.animate {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.tinto_Background_Image{
  position: relative;
    display: block; /* or flex, as needed */
    width: 100%;
    background-image: url("assets/tinto_new.png");
    background-position: center bottom;
    background-size: cover;
    height: 70vh;
    color: white;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); 
    color:"#fff";
    height: 100%;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  

/* New hero-content container to center content */
.hero-content-tinto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10; /* make sure it is above background */
  color: white; /* or whatever text color looks good */
}

/* Adjust hero-heading - no need for flex here */
.hero-heading-tinto {
   font-size: clamp(40px, 4vw, 100px);
  margin: 0 0 1rem 0;
  opacity: 1;
   transform: translateY(20px);
  transition: all 0.8s ease-out;
}

/* Keep button style but add margin top */
.cta-button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #8b0000;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.hero-heading.animate-hero {
  opacity: 1;
  transform: translateY(0);
}

  /* Content section below the header */
.content-section {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .content-container {
    display: flex;
    gap: 2rem;
    /* height: 60vh; */
    width: 85vw;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
  align-items: center;
  }
  
  /* Each column */
  .column {
    flex: 1;
  }
  
  /* First column special styles */
  .column-left .red-heading {
    color: #e82a2a;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.35rem;
    font-weight: 800;
  }
  
  .column-left .black-subheading {
    color: #303133;
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  /* Paragraph styling */
 /* Paragraph styling */
  .column p {
    color:#ddd;;
    font-size: 1.1rem;
    line-height: 1.6;
  }


  .grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
}

.text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: white;
  
}

.text-block small {

  display: block;
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.text-block h2 {
  /* font-size: 2.2rem; */
  font-size: 1.5rem;
  margin: 0 0 1rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: bold;
}

.text-block p {
  /* font-size: 1.05rem; */
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ddd;
  max-width: 100%;
    text-align: left;
}

.text-block button {
  background: white;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.text-block.dark {
  background-color: #0e0e0e;
}

.text-block.blue {
  background-color: #2f384b;
}
.image-block-left {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

/* Gradient overlay blending left-to-right */
.image-block-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, transparent 60%, #0e0e0e 100%);
  z-index: 2;
  pointer-events: none;
}

.image-block {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

/* Gradient overlay blending left-to-right */
.image-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, transparent 60%, #0e0e0e 100%);
  z-index: 2;
  pointer-events: none;
}


@media (max-width: 768px) {
  .grid-section {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
  .image-block-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, transparent 60%, #0e0e0e 100%);
  z-index: 2;
  pointer-events: none;
}
.image-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 60%, #0e0e0e 100%);
  z-index: 2;
  pointer-events: none;
}
  .grid-container {
    width: 85vw;
    margin: 0 auto;
  }
 .image-block-left,
  .image-block,
  .text-block {
    min-height: 300px;
    padding: 40px 0px 20px 0px;
  }

  .text-block p {
    max-width: 100%;
    margin-bottom: 0;
  }
  
}
.bio-section {
  background-color: #0e0d0d;
  padding: 60px 0;
  color: #f5f5f5;
}
.bio-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 60px;
  flex-wrap: wrap;
}

.bio-image-wrapper {
  /* flex: 0 0 340px; */
  flex:2;
  height: 550px;    /* fixed height to preserve balance */
  border: 6px solid #fff;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: auto;
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ensures image fills box proportionally */
  display: block;
}



.bio-content {
  flex: 2;
  color: #fff;
  max-width: 700px;
}


.bio-name {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bio-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.bio-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 768px) {
  .bio-container {
    flex-direction: column;
    align-items: center;
  }

  .bio-image-wrapper {
    width: 80%;
    max-width: 100%;
    height: auto;
  }

  .bio-image {
    width: 100%;
    height: auto;
  }
}

.split-image {
  flex: 1;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }

  .split-image img {
    /* height: 200px;*/
    height: 100vh;
    object-fit: cover;
    width: 100%;
  }

  .split-content {
    padding: 1.5rem;
  }
}

.split-layout {
  display: flex;
  min-height: auto;
  overflow: hidden;
  position: relative;  /* create stacking context */
  z-index: 0;          /* lower than navbar */
  margin-top: 0;       /* no margin that pushes it down */
}
/* Left - Image */
.image-side {
  flex: 1;
  position: relative;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right - Content */
.content-side {
  flex: 1;
  background-color: #111;
  color: #fff;
  display: flex;
  align-items: flex-start; /* changed from center */
  justify-content: center;
  padding: 80px 60px; /* increased padding for better spacing */
}

.content {
  max-width: 600px;
  line-height: 1.8; /* improved text spacing */
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 36px;
  color: #ccc;
}

.contact-info {
  font-size: 0.9rem;
  color: #ddd;
}

.contact-info p {
  margin: 0;       /* removes all margins */
  margin-bottom: 5px; /* adds a small space between paragraphs */
}

/* Responsive */
@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
    
  }

  .image-side,
  .content-side {
    flex: none;
    width: 100%;
    height: auto;
  }

  h1 {
    font-size: 2rem;
  }

  .content-side {
    padding: 30px 20px;
  }
}
.intro-wrapper {
  display: flex;
  align-items: center; /* change from flex-start to center */
  /* gap: 1.5rem; */
  flex-wrap: wrap;
}



.store-contact-section {
  position: relative;
  background: url('assets/bck.png') no-repeat center center/cover;
  padding: 8rem 2rem;
    color: #fff !important;
  font-weight: bolder;
  overflow: hidden;
}

.store-contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);/* Dark overlay */
  z-index: 1;
}
.store-contact-section .container {
  display: flex; /* Essential for alignment */
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem; /* Add space between columns */
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
}

.store-contact-section .column {
  flex: 1;
  padding: 1rem;
  min-width: 300px;
}

.store-contact-section .column:first-child {
  text-align: left;
}

.store-contact-section .column:last-child {
  text-align: right;
}


.subheading {
  font-size: 1.7rem;
    /* text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); */
  font-weight: bold;
  color: #fff !important;
  /* margin-bottom: 1rem; */
}

.descriptionc {
  font-size: 1rem;
    /* text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7); */
  color: #fff !important;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .store-contact-section .container {
    flex-direction: column;
    text-align: center;
    align-items: center; /* Center align child columns */
    padding: 0 1.5rem;
  }

  .store-contact-section .column {
    width: 100%;
    max-width: 500px;
    padding-bottom: 3rem;
    text-align: center !important;
  }

  .store-contact-section .subheading {
    font-size: 1.5rem;
  }

  .store-contact-section .descriptionc {
    font-size: 1rem;
  }
  .footer-bottom{
    width: 85vw;
    margin: 0 auto;
    padding: 0;
  }
}

.cta-button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #8b0000;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content form input,
.modal-content form select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-content .book-btn {
  width: 100%;
  background-color: #8b0000;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.pdf-link {
  color: #2a2a2a;
  text-decoration: underline;
  position: relative;
  font-weight: 600;
  font-family: 'Fauna One', serif;
}

.pdf-preview-tooltip {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  width: 250px;
  padding: 0.5rem;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 100;
  font-size: 0.85rem;
  color: #333;
  border-radius: 6px;
  text-align: center;
}

.pdf-preview-tooltip img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.pdf-link:hover + .pdf-preview-tooltip,
.pdf-preview-tooltip:hover {
  display: block;
}
.pdf-preview-link {
  display: inline-block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.pdf-preview-link:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.pdf-preview-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Tooltip text shown on hover */
.pdf-tooltip-text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.pdf-preview-link:hover .pdf-tooltip-text {
  opacity: 1;
  pointer-events: auto;
}

.product-suggestions ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.product-suggestions li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.ourStory-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px; /* Optional: limit size */
}

.background-image {
  width: 100%;
  display: block;
  height: auto;
}

.black-subheading {
  color: #000;
  /* font-size: 36px; */
  font-weight: bold;
    text-transform: uppercase;
  /* letter-spacing: 1px; */
}


@media (max-width: 830px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .column-left,
  .columna {
    width: 100%;
    /* padding-bottom: 1.5rem; */
  }

  .column-left .black-subheading {
    text-align: center;
    font-size: 1.8rem;
  }

  .columna p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
  }
  .grid-container {
    width: 70%;
    margin: 0 auto;
  }
  .text-block{
    padding: 60px 0px 60px 0px;
  }
  .text-block p{
    max-width: 100%;
  }
  .bio-text {
    padding: 0;
  }
  .bio-content{
    width: 85vw;
    max-width: max-content;
  }
  .bio-container{
    width : 85vw;
  margin: 0 auto;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  }
  .bio-image-wrapper{
    flex : auto;
  }
  .bio-image{
    height: 100%;
}
  .bio-section {
  background-color: #0e0d0d;
  padding: 60px 0px 40px;
  text-align: center;
  position: relative;
  /* font-family: 'Georgia', serif; */
  color: #f5f5f5;
  }
  .footer-item{
    width: 85vw;
  }
  .footer-bottom{
    width: 85vw;
    margin: 0 auto;
    padding: 0;
  }
  .intro-section {
    padding: 50px 0 50px 0;
    width: 85vw;
    margin: 0 auto;
  }
}

@media (min-width: 769px) and (max-width: 950px) {
  .content-container {
    flex-direction: column;
    height: auto;
    width: 85vw;
    gap: 0rem;
    /* padding: 2rem 1rem; */
  }
  .black-subheading {
  margin: 0;
}
.ourStory-image-container {
  max-width: 500px;
}
}

@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    height: auto;
    width: 85vw;
    gap: 0rem;
    /* padding: 2rem 1rem; */
  }

  .column-left,
  .columna {
    width: 100%;
    /* padding-bottom: 1.5rem; */
  }

  .column-left .black-subheading {
    text-align: center;
    font-size: 1.8rem;
  }

  .black-subheading {
    margin: 0;
  }

  .columna p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
  }

  .bio-text {
    padding: 0;
    margin:0;
  }
  .bio-content{
    width: 85vw;
  }

  .bio-section {
  background-color: #0e0d0d;
  padding: 10px 0px 10px;
  text-align: center;
  position: relative;
  /* font-family: 'Georgia', serif; */
  color: #f5f5f5;
  }
  .bio-container {
  width : 85vw;
  margin: 0 auto;
  padding: 34px 0;
  flex-direction: column;
  gap: 10px;
}
.bio-image{
    height: 100%;
}

  .footer-item{
    width: 85vw;
  }

  .intro-section {
    padding: 50px 0 50px 0;
    width: 85vw;
    margin: 0 auto;
  }
  .intro-text{
    line-height: 1.7rem;
  }
}

.fade-image-container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 400px; /* optional */
  margin: 0 auto;
}

.fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-image.active {
  opacity: 1;
  z-index: 2;
}

@media (max-width: 592px){
  .footer-bottom-container {
    padding-bottom: 25px;
  }
}