/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
body{
	margin: 0px auto !important;
}
.gradient-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));  */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
   
}

.gradient-overlay h3 {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.1rem;
}

.gradient-overlay .btn {
    pointer-events: auto; /* enables button clicks */
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps square ratio on large screens */
    overflow: hidden;
    border-radius: 10px;
       transition: box-shadow .35s ease, transform .35s ease;
}
.card-image-wrapper:hover{
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      transform: translateY(-10px);
      cursor: pointer;
}

.card-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Ensures image fills the box without stretching */
    display: block;
    
}


/* On tablets and smaller screens */
@media (max-width: 768px) {
    .card-image-wrapper {
        aspect-ratio: 4 / 5; /* Slightly taller for mobile */
    }
    .card-image-wrapper img {
        width: 100%;
        height: 100%;
    }
}

/* On very small phones */
@media (max-width: 480px) {
    .card-image-wrapper {
        aspect-ratio: 3 / 4;
    }
}

.white-color{
    color:#fff;
}

/* Hero section full viewport */
.hero {
    position: relative;
    height: 100vh;
    padding: 72px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Gradient stays on main element */
    background-image: radial-gradient(circle at top right, #f7ca36ff, #da1017, #e31e25);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Background Image with Opacity */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/BG-Line.png') no-repeat center/cover;
    opacity: 0.20;   /* <-- CONTROL IMAGE OPACITY HERE */
    z-index: 0;
}

  /* Title container — we'll split the text into .line spans */
  .hero-title{
    font-weight:800;
    line-height:0.9;
    font-size:8vw;
    margin:70px 0px 0px;
    overflow:visible;
	 color:#fff;
   /* border:1px solid yellow; */
  }
  .hero-title span{
    display: block;
    font-weight: 800;
    line-height: 1.4;
}

  /* Beer image wrapper so we can add glow pseudo-element */
  .beer{
    position:absolute;
    width:350px;
    pointer-events:none;
    transform-origin:center center;
    will-change:transform;
    z-index: 10;
  }

  /* Glow implemented on wrapper pseudo-element */
  .beer {
  position: absolute;
  width: 350px;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
  z-index: 10; /* required so glow is above hero background */
}

/* Neon Glow Behind Beer */
.beer::after {
  content: "";
  position: absolute;
  inset: -28% -18%;
  z-index: -1;
  border-radius: 50%;

  /* NEON layered glow (yellow → orange → red) */
  background: radial-gradient(circle,
    rgba(255,220,80,0.9) 0%,     /* bright neon yellow center */
    rgba(255,150,20,0.55) 35%,   /* neon orange ring */
    rgba(255,0,0,0.35) 60%,      /* neon red fade */
    transparent 85%
  );

  filter: blur(45px);
  opacity: 0.95;
  animation: neonPulse 2.2s infinite ease-in-out;
}
.beer img{
  width: 100%;
  height: auto;
}
/* NEON Pulse Animation */
@keyframes neonPulse {
  0% {
    filter: blur(40px);
    opacity: 0.75;
    transform: scale(0.98);
  }
  50% {
    filter: blur(60px);
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    filter: blur(40px);
    opacity: 0.75;
    transform: scale(0.98);
  }
}

  .bottle-left{ left:45%; top:25%; transform:rotate(-3deg); }
  .bottle-right{ right:4%; bottom:10%; transform:rotate(10deg); }

  /* Image fallback styling if your image fails to load - shows a styled "bottle" rectangle */
  .beer img{ display:block; width:100%; height:auto; pointer-events:none; }

  .placeholder{
    width:100%;
    height:100%;
    display:block;
    background: linear-gradient(180deg,#6b4a1a 0%, #cfa56a 60%);
    border-radius:20px;
    box-shadow: 0 40px 80px rgba(247, 245, 245, 0.6) inset;
    aspect-ratio: 1 / 2.5;
    transform: rotate(0deg);
  }

 /* Tablet */
@media (max-width: 992px){
  .hero{
    padding: 60px 40px;
  }
  .hero-title{
    max-width: 70%;
  }
  .bottle-left{
    left: 55%;
    top: 22%;
  }
}

/* Mobile */
@media (max-width: 600px){

  .hero{
    height: 72vh;            /* Let the content decide height */
    padding-top: 90px;       /* Add spacing below navbar */
    align-items: flex-start; /* Push content to top */
  }

  .hero-title{
    margin-top: 0;
    padding-top: 0;
    line-height: 1.1;
    text-align: left;
    font-size: 3.5rem;
  }
 .hero-title span {
    display: block;          /* FORCED each word on its own line */
  }
 .bottle-left,
  .bottle-right{
    bottom: -5%;            /* push lower */
    top: auto;
    transform: none;
  }
  /* Left packet */
  .bottle-left{
    left: 8%;
    z-index: 5;
  }
    /* Resize packet images */
  .beer{
    width: 42vw;            /* balanced on mobile */
  }
  .transparent-header{
    background-color: none!important;
  }
  .dark {
    background-color: white!important;
  }
  .sub-menu-container .menu-item>.menu-link{
    color:#fff;
  }
}
/* Extra small (very small phones) */
@media (max-width: 380px){
  .hero{
    padding: 25px 15px;
  }
  .bottle-left, .bottle-right{
    width: 130px !important;
  }
}
  
  /* Hero section full viewport end */
  .section-bg-color{
    background-color: #ffd904;
  }

/* Marquee Styles */
 .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #fff5ef;
  padding: 10px 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.marquee-content {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
}

.tag {
  padding: 7px 35px;
  font-size: 1rem;
  border-radius: 32px;
  background: #ffc6cc;
  color: #5a1b1b;
  font-weight: 600;
  display: inline-block;
}

/* Animation speed & direction */
.marquee-left .marquee-content {
  animation: scroll-left 40s linear infinite;
}

.marquee-right .marquee-content {
  animation: scroll-right 45s linear infinite;
}

/* Keyframes */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Mobile small padding */
@media (max-width: 480px) {
  .tag {
    padding: 6px 16px;
    font-size: 15px;
  }
}

.red { background: #fb3b42; color:#fff; }
.pink { background:#f57b8a; color:#fff; }
.brown { background:#c0898b; color:#fff; }
.saffron {background-color:#fa9e0c; color:#fff}
.cream { background:#ffe8d2; color:#333; }
.orange { background:#d64b1f; color:#fff; }
/* .dark { background:#6b3020; color:#fff; } */
.light { background:#ffe6ef; color:#333; }
.yellow { background:#ffa600; color:#fff; }
.green {background-color: #25ff72; color:#fff;}
/*marque end*/
.feature-grid {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-item {
  border-radius: 26px;
  overflow: hidden;
}

/* Text Cards */
.text-card {
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.text-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Background Colors */
.brown-grid { background: #6b3b2b; color:#fff }
.yellow-grid { background: #ffb625; color: #0c0c0c; }
.pink-grid { background: #f9a8b8; color: #0c0c0c; }
.green-grid {background: #25ff72; color:#0c0c0c}
.cream-grid { background:#ffe8d2; color:#333; }
.red-grid{ background: #e31e25; color:#ffff;}
.grid-box {
    position: relative;
    overflow: hidden;
       transition: box-shadow .35s ease, transform .35s ease;
}

.grid-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/Vector-3.png') no-repeat center/cover;
    opacity: 0.18;          /* <-- control image visibility */
    z-index: 0;
}
.grid-box:hover{
   box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transform: translateY(-10px);
}

.grid-box > * {
    position: relative;
    z-index: 2;
}

/* Image Cards */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

/* -----------------------
   RESPONSIVE
   ----------------------- */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .text-card {
    padding: 30px 24px;
  }

  .text-card h3 {
    font-size: 22px;
  }

}
.color-section{
 background-color: var(--bs-cream);

}
.color-section.h2{
  color:var(--bs-gray-900)
}
.color-section.p{
  color:var(--bs-gray-900)
}
.text-maroon{
  color:var(--bs-danger-text-emphasis)
}
/*carsourl*/
.card-image-wrapper {
    height: 380px;
    cursor: pointer;
    transition: transform .4s ease, box-shadow .4s ease;
}

.card-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 95%);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(2);
}

.carousel-item {
    padding: 20px 0;
}
/* /web whatsapp*/ */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/*our people section*/
.section-header {
            color: #28a745;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .story-title {
            color: #343a40;
            font-size: 2.5rem;
            font-weight: bold;
        }
        .story-text {
            line-height: 1.7;
            color: #495057;
        }
        .logo-circle {
            width: 150px;
            height:140px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #fff;
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            margin: 0 auto;
            position: absolute;
            top: -50vh;
        }
        .team-img {
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .story-title {
                font-size: 2rem;
            }
            .logo-circle {
                width: 140px;
                height: 140px;
            }
        }