
:root {
  --theme-color: #D62223;
  --theme-font:'Poppins', sans-serif;
}


body {
  font-family:var(--theme-font);
  margin: 0px; padding: 0px;
  box-sizing: border-box;
}
button{
    cursor: pointer;
}
h4{
    margin: 0%;
}
.price{
    display: none;
}
.beer-slider h3{
    margin: 0%;
    color: var(--theme-color);
}
.beer-card h4{
    color: var(--theme-color);
}
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/celebration-oktoberfest-with-lots-beer.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  text-align: center;
}

/* dark overlay*/
.age-gate::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 40, 90, 0.8); /* dark blue overlay */
  z-index: -1;
}

.age-content {
  max-width: 500px;
  padding: 30px;
  z-index: 1;
}

.age-content {
  max-width: 500px;
  padding: 30px;
}

.age-logo {
  width: 250px;
  margin-bottom: 20px;
}

.age-circle {
  width: 80px;
  height: 80px;
  border: 3px solid white;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.age-confirm {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:checked + .slider:before {
  transform: translateX(24px);
}

.age-buttons {
  margin-top: 20px;
}

.leave-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.enter-btn {
  padding: 10px 20px;
  background: #f7f727;
  color:var(--theme-color);
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
/* Top Bar */
.top-bar {
  background-color: var(--top-bar-color, #D62223);
  padding: 8px;
  text-align: right;
}

.portal-btn {
  background-color: #ccc;
  border: none;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.portal-btn.primary {
  background-color: #fff;
  color: var(--theme-color);
}

.portal-btn.primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header */
.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: var(--theme-color);
}
.logo span {
  display: block;
  font-size: 16px;
  color: #333;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 4px;
  padding: 4px;
}

.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.social-icons a:focus {
  outline: 2px solid var(--theme-color, #D62223);
  outline-offset: 2px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
  background: transparent;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.twitter {
  background: #000000;
  color: white;
}

.social-link.youtube {
  background: #ff0000;
  color: white;
}

.social-link i {
  font-size: 18px;
}
.search-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-bar input {
  padding: 10px;
  width: 180px;
  border: 1px solid #ccc;
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius:4px;
}

.search-bar button {
  padding: 11px 15px;
  background-color: var(--theme-color);
  color: white;
  border: none;
  cursor: pointer;
   border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Navigation */
.navbar {
  background-color: var(--menu-bar-color, #D62223);
  text-align: center;
  padding: 10px 0;
}

.navbar a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease; 
}
.navbar a:hover {
    color:var(--theme-color);
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    background: #fff;
        padding: 4px 10px;
    border-radius: 3px;
}
/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(214, 34, 35, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
}

.hero-highlight {
  background-color: var(--menu-bar-color, #D62223);
  color: var(--theme-color);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin: 20px 0;
  font-weight: 700;
  text-shadow: none;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta {
  background-color: var(--menu-bar-color, #D62223);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-cta:hover {
  background: white;
  color: var(--theme-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Banner Area */
.bd-section-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color:#000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.bd-banner-item {
  flex: 1 1 300px;
  margin: 10px 20px;
}

.bd-banner-item h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
   font-family:var(--theme-font);
}

.bd-banner-item p {
  font-size: 1rem;
  margin-bottom: 20px;
   font-family:var(--theme-font);
}

.bd-btn {
  background-color:var(--theme-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.3s;
  font-family:var(--theme-font);
  font-weight: 700;
}

.bd-btn:hover {
  color: #e80f10f7;
  background: #fff;
}

/* Content Area */
.bd-section-content {
  display: flex;
  flex-wrap: wrap;
  background-color: #f9f9f9;
}

.bd-content-left, .bd-content-right {
  flex: 1 1 300px;
  padding: 20px;
}

.bd-content-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
   font-family:var(--theme-font);
}

.bd-content-left p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
   font-family:var(--theme-font);
}

.bd-sub-btn {
  margin-top: 20px;
   font-family:var(--theme-font);
}

.bd-content-right h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
   font-family:var(--theme-font);
}

.beer-aisle {
  position: relative;
  /* background: url('Assets/celebration-oktoberfest-with-lots-beer.jpg') no-repeat center center/cover; */
  padding: 30px 40px;
  color: #000;
  background-color: white;
  overflow: hidden;
}


/* .beer-aisle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 83%);
    z-index: 1;
} */
.beer-aisle-content {
      position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.beer-text {
  flex: 1;
  max-width: 500px;
}

.beer-text h3 span {
  color: var(--theme-color);
}

.beer-text strong {
  font-size: 36px;
  display: block;
}

.beer-text p {
  margin: 20px 0;
}

.btn-show-more {
  display: inline-block;
  padding: 12px 30px;
  background: var(--theme-color);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 4px;

}

.btn-show-more:hover {
  background: transparent;
  color: #d3a95f;
  border: 1px solid #d3a95f;
}

.beer-slider {
  flex: 1;
  max-width: 500px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}
.Featured_Slider{
    display: flex;
    flex-direction: column;
}
.beer-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 10px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.beer-card img {
    width: 120px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.beer-card .product-placeholder {
    width: 120px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #ccc;
    font-size: 2rem;
    border-radius: 8px;
    margin-bottom: 15px;
}

.beer-card h4 {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.3;
}

.beer-card .price {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: auto;
}

.price {
  color: #d3a95f;
  font-weight: bold;
  font-size: 16px;
}

.old {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.badge {
  position: absolute;
  top: -5px;
  left: 10px;
  background: #d3a95f;
  color: #000;
  padding: 4px 10px;
  font-weight: bold;
  border-radius: 20px;
  font-size: 12px;
}



.bd-brand-img {
  max-width: 100%;
  height: 90%;
}

.bev-section {
  background-color: #f3f3f3;
  padding: 60px 20px;
}

.bev-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.bev-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.bev-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  position: relative;
}

.bev-img {
  width: 100px;
  height: auto;
  margin-bottom: -60px;
  z-index: 2;
}

.bev-card {
  background-color: white;
  padding: 30px 20px 40px;
  border: 1px solid #ccc;
  text-align: left;
  z-index: 1;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.bev-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.bev-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.bev-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

/* Button color variations */
.black-btn {
  background-color: #000;
  color: #fff;
}

.white-btn {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

.gray-btn {
  background-color: #888;
  color: #fff;
}

.blue-btn {
  background-color: #0056b3;
  color: #fff;
}

/* Color variations for cards */
.blue-card {
  background-color: #0056b3;
  color: white;
}

.black-card {
  background-color: #000;
  color: white;
}

.white-card {
  background-color: white;
  color: black;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.Featured-section {
  padding: 60px 40px;
  background: #f5f5f5;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.Featured-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title {
    font-size: 35px;
    text-align: left;
    margin-bottom: 50px;
    font-weight: 700;
    margin-left: 125px;
}

/* Card Grid */
.Featured-grid {
  display: grid;
    grid-template-columns: repeat(2, auto); /* auto keeps width tight */
      column-gap: 100px;
    row-gap: 40px;
   justify-content: center;
}

.Featured-card:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 60%; /* You can adjust this */
}

.bd-content-left {
  position: relative;
  padding: 60px 30px;
  color: white;
  z-index: 1;
  overflow: hidden;
}


.bd-content-left::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Assets/oktoberfest-celebration-with-beer-still-life.jpg');
  background-size: cover;
  background-position: center;
      opacity: 0.2;
  z-index: -1;
}

/* Optional: text styling inside */
.bd-content-left h2,
.bd-content-left p {
  position: relative;
  z-index: 2;
 
}
.bd-content-left p {
 color: #666;
}
.bd-content-left h2{
     color: #000000 !important;
}


/* Card Design */
.Featured-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  align-items: center;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  padding-left: 75px;
  width: 425px;
}
.Featured-card.white .Featured-card .lazy-load {
     width: 350px;
    height: 125%;
    position: absolute;
    left: -181px;
    top: -28px;
}
.Featured-card .lazy-load:nth-child(1) {
    width: 350px;
    height: 135%;
    position: absolute;
    left: -125px;
    top: -46px;
}
.Featured-card:nth-child(3) {
  grid-column: 1 / -1;       
  justify-self: center; 
  width: 425px;
}
.Featured-card .content {
  flex: 1;
}
.Featured-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.Featured-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.Featured-card.blue { 
      background:var(--theme-color); color: white;
 }
.Featured-card.white { background: #fff; border: 1px solid #ccc; }
.Featured-card.black { background: #000; color: white; }
.Featured-card.gray { background: #888; color: white; }


.learn-more {
 padding: 17px 31px;
    border: none;
    background: #000;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    position: absolute;
    right: -17px;
    bottom: -13px;
}
.Featured-card.blue .learn-more { background: #000; color:white; }
.Featured-card.white .learn-more { background: #888; color: white; }
.Featured-card.gray .learn-more { background: #fff; color: #000; }


@media(max-width: 768px) {
  .Featured-card {
    flex-direction: column;
    text-align: center;
  }
  .Featured-card img {
    margin-bottom: 15px;
  }
}
/* Animate lazy elements */
.lazy-load {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.lazy-load.visible {
  opacity: 1;
  transform: translateY(0);
}


.lazy-image {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}
.lazy-image.visible {
  opacity: 1;
  transform: scale(1);
  height: 100%;
}

/* Instagram section style */



.instaShowcase-section {
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px;
  background: #f8f8f8;
  text-align: center;
  overflow: hidden;
}

.instaShowcase-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
  animation: fadeDown 1s ease-out forwards;
}

.instaShowcase-header p {
  font-size: 1.2rem;
  color: #555;
  animation: fadeUp 1s ease-out forwards;
}

.instaShowcase-gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
  animation: fadeIn 1s ease-out;
}

.insta-img {
    width: 24%;
    height: 230px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: grayscale(20%);
}
.insta-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  filter: grayscale(0%);
}

.instaShowcase-btn a {
  background-color: var(--theme-color);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.instaShowcase-btn a:hover {
  background-color:var(--theme-color);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Newsletter section style */

.modernNewsletter {
  background: var(--theme-color);
  padding: 60px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1.5s ease;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newsletter-left {
  flex: 1;
  min-width: 250px;
}
.newsletter-left h2 {
  font-size: 2rem;
  font-weight: 600;
}

.newsletter-right {
  flex: 2;
  min-width: 300px;
}
.newsletter-right label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}
.newsletter-right label span {
  color: #ffcccb;
}

.newsletter-right input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  background-color: #e4e9f2;
  transition: all 0.3s ease;
}
.newsletter-right input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 5px #60a5fa;
}

/* Checkbox Styles */
.checkbox-group {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.checkbox-style {
  display: flex;
  align-items: center;
  background: #e4e9f2;
  padding: 10px 15px;
  border-radius: 6px;
  color: #444;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.checkbox-style:hover {
  background: #d1d9e6;
}
.checkbox-style input[type="checkbox"] {
  display: none;
}
.checkbox-style .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #444;
  margin-right: 10px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}
.checkbox-style input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #222;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit Button */
.subscribe-btn {
  background: transparent;
  border: 1.5px solid white;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.subscribe-btn:hover {
  background: white;
  color: #01489e;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* Footer section style */



.modernFooter {
  background-color: #111;
  padding: 20px 30px;
  font-family: 'Poppins', sans-serif;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-left a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-left a:hover {
  color: #fff;
}

.footer-right a {
  margin-left: 15px;
  font-size: 18px;
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-right a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Below style for Mobile Responsive */

.hamburger {
    display: none;
    font-size: 28px;
    color:#fff;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      overflow: hidden;
      max-height: 0;
    }

    .navbar.show {
      max-height: 500px;
    }

    .hamburger {
      display: block;
    }

    .search-box {
      width: 100%;
      margin-top: 10px;
    }

    .top-bar {
      display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .navbar a {
      padding: 12px 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .header{
            flex-direction: column;
    }
    .social-icons{
        display: none;
    }
    #navbar{
        display: none;
    }
  }

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-right a {
    margin: 0 10px;
  }
}



    .mobile_navbar {
      background-color: #1e1e25;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease-in-out;
      position: absolute;
      top: 100%;
      width: 100%;
      left: 0;
      z-index: 1000;
    }

    .mobile_navbar a {
      display: block;
      color: white;
      text-align: center;
      padding: 15px;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-weight: 600;
      font-size: 14px;
    }

    .mobile_navbar.show {
      max-height: 500px;
    }
    

    @media (max-width: 768px) {
      .hamburger {
        display: block;
        background-color: var(--theme-color);
      }
      .overlay-text{
            width: 100%;
            top: 0%;
            left: 0%;
      }
      .overlay-text p{
        margin-left: 5px;
        text-align: center;
        margin-top: 25px;
            font-size: 14px;
      }
      .overlay-text button{
        margin-left: 160px;
    margin-top: 176px;
      }
     .overlay-text h2{
                margin-left: 5px;
        text-align: center;
        margin-top: 25px;
            font-size: 22px;
      }
      .bd-banner-item h2{
            font-size: 1.5rem;
      }
      .bd-btn{
            font-size: 0.7rem;
      }
      .beer-aisle{
        padding: 30px 20px;
      }
      .beer-slider{
        margin-left: 0px;
        padding-left: 0px;
        margin-top: 35px;
      }
      .beer-card img{
         margin: inherit;
      }
      .Featured-section{
            padding: 20px 20px;
      }
      .section-title{
            font-size: 27px;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
            margin-left: 0px;
      }
       .Featured-grid {
            display: flex;
            flex-direction: column;
            gap: 110px;
            align-items: center;
            justify-content: center;
    }
    .Featured-card .lazy-load:nth-child(1) {
        width: 350px;
        height: 75%;
        position: absolute;
        left: -161px;
        top: -90px;
    }
    .Featured-card {
        display: flex;        
        padding: 20px;
        border-radius: 8px;
        align-items: center;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        position: relative;
        padding-left: 30px;
        width: 220px;
        }
        .learn-more {
        right: -15px;
        bottom: -26px;
    }
    .Featured-card:nth-child(3){
        width: 220px;
    }
    .instaShowcase-gallery {    
    flex-direction: column;    
}
.insta-img {
    width: 90%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    filter: grayscale(20%);
    margin: auto;
    text-align: center;
}
.newsletter-right input[type="email"] {
    width: 85%;    
}
.newsletter-left h2 {
    font-size: 1.6rem;
    font-weight: 600;
}
.switch {    
    width: 95px;    
}
.age-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.beer-card h4{
    position: absolute;
        bottom: 115px;
    left: 195px;
}

}

 .Mobile_section{
        width: 100%;
        margin: auto;
        text-align: center;
        position: relative;
    }

/* Additional styles for featured product */
.product-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #ccc;
    font-size: 2rem;
    border-radius: 8px;
}

.no-featured {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.discount {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 10px;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .beer-card {
        min-width: 200px;
        padding: 15px;
        min-height: 280px;
    }
    
    .beer-card img {
        width: 100px;
        height: 150px;
    }
    
    .beer-card .product-placeholder {
        width: 100px;
        height: 150px;
        font-size: 1.5rem;
    }
    
    .beer-card h4 {
        font-size: 14px;
    }
    
    .Featured_Slider {
        gap: 15px;
        padding: 15px 0;
    }
}

/* Classic Home Page Styles */
.heritage-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  border-top: 3px solid var(--theme-color);
  border-bottom: 3px solid var(--theme-color);
}

.heritage-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  padding: 0 20px;
}

.heritage-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.heritage-item:hover {
  transform: translateY(-10px);
}

.heritage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.heritage-item h3 {
  color: var(--theme-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.heritage-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  color: var(--theme-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.decorative-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color), #8B4513);
  border-radius: 2px;
}

.lead-paragraph {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.signature-quote {
  background: #f8f9fa;
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--theme-color);
  font-weight: 600;
  border-radius: 0 10px 10px 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary, .btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--theme-color);
  color: white;
  border: 2px solid var(--theme-color);
}

.btn-primary:hover {
  background: white;
  color: var(--theme-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 34, 35, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
}

.btn-secondary:hover {
  background: var(--theme-color);
  color: white;
  transform: translateY(-2px);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.classic-frame {
  background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.distillery-showcase {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.showcase-item {
  margin-bottom: 30px;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 5px;
}

.showcase-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modern Featured Collection */
.featured-collection {
  padding: 100px 0;
  background: #f8f9fa;
}

.collection-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.collection-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.collection-header p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-top: 30px;
}

.modern-collection-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.modern-collection-grid .modern-spirit-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 700px;
  margin: 0 auto;
}

.modern-spirit-card {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  min-height: 300px;
  position: relative;
}

.modern-spirit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modern-spirit-card.red {
  background: var(--theme-color);
  color: white;
}

.modern-spirit-card.light {
  background: white;
  color: #2c3e50;
  border: 1px solid #e0e0e0;
}

.modern-spirit-card.dark {
  background: #2c3e50;
  color: white;
}

.card-product-image {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  position: relative;
}

.card-product-image img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.product-bottle-placeholder {
  font-size: 4rem;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.card-info {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.product-specs {
  margin-bottom: 30px;
}

.spec-item {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.spec-item strong {
  min-width: 90px;
  font-weight: 600;
}

.price-spec {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.price-spec .original-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 10px;
  font-size: 1.1rem;
}

.modern-cta {
  background: rgba(0,0,0,0.8);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modern-spirit-card.light .modern-cta {
  background: var(--theme-color);
}

.modern-spirit-card.red .modern-cta {
  background: rgba(0,0,0,0.8);
}

.modern-spirit-card.dark .modern-cta {
  background: rgba(255,255,255,0.9);
  color: #2c3e50;
}

.modern-cta:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-collection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modern-collection-grid .modern-spirit-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }
  
  .modern-spirit-card {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
  
  .card-product-image {
    flex: none;
    width: 100%;
    height: 200px;
  }
  
  .card-info {
    padding: 25px;
    height: auto;
  }
  
  .modern-cta {
    align-self: center;
  }
}
/* Responsive Hero */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Global Font Weight Fix */
* {
  font-family: var(--theme-font);
  font-weight: 500;
}

button, .btn, .search-bar button {
  font-weight: 600;
  font-family: var(--theme-font);
}

.search-bar button {
  padding: 11px 15px;
  background-color: var(--theme-color);
  color: white;
  border: none;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  font-family: var(--theme-font);
}

/* Footer Social Links */
.footer-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-right .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
}

.footer-right .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-right .social-link.facebook {
  background: #1877f2;
}

.footer-right .social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-right .social-link.linkedin {
  background: #0077b5;
}

.footer-right .social-link.youtube {
  background: #ff0000;
}

.footer-right .social-link.reddit {
  background: #ff4500;
}

.footer-right .social-link.twitter {
  background: #000000;
}

.footer-right .social-link.tiktok {
  background: #000000;
}

.footer-right .social-link.pinterest {
  background: #bd081c;
}

.footer-right .social-link i {
  font-size: 16px;
}

/* Language Selector Styling */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.google-translate-element {
    display: none; /* Hide default Google Translate widget */
}

.custom-language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Updated top nav buttons layout */
.top-nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

/* Portal button updates for translation */
.portal-btn .translate {
    transition: opacity 0.3s ease;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .lang-btn img {
        width: 14px;
    }
}

@media (max-width: 480px) {
    .top-nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .language-selector {
        margin-right: 0;
        order: -1;
        margin-bottom: 5px;
    }
}

/* Hide Google Translate bar */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-combo {
    display: none !important;
}

/* Google Translate Integration */
.google-translate-element {
    display: none !important; /* Hide default Google Translate widget */
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-combo {
    display: none !important;
}

/* Ensure translated content maintains styling */
.goog-te-spinner-pos {
    display: none !important;
}

/* Fix for Google Translate affecting layout */
.skiptranslate {
    display: none !important;
}

/* Language selector remains visible and functional */
.custom-language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1000;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Google Translate Integration - Updated */
.google-translate-element {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Keep the combo box hidden but functional */
.goog-te-combo {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: auto !important;
}

/* Ensure translated content maintains styling */
.goog-te-spinner-pos {
    display: none !important;
}

/* Fix for Google Translate affecting layout */
.skiptranslate {
    display: none !important;
}

/* Prevent Google Translate from adding margin to body */
body.goog-te-hl {
    top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
 
