
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Birthstone&family=Parisienne&family=Pinyon+Script&display=swap');

:root {
  /* Fluid spacing and container */
  --gutter: clamp(16px, 2.5vw, 32px);
  --radius: 12px;
  --container-max: 1200px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}


.loading-screen{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.2,.8,.2,1);
}

.loading-screen.active{
  opacity: 1;
  pointer-events: auto;
}

.loading-screen .spinner{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.12);
  border-top-color: #ffffff;
  animation: ls-spin 0.85s linear infinite;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.loading-screen .loading-message{
  margin-top: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.loading-screen.active .loading-message{
  opacity: 1;
  transform: translateY(0);
}

@keyframes ls-spin {
  to { transform: rotate(360deg); }
}

.legal-age.active{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:row;
  width: 100dvw;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 1);
  text-align: center;
}

.legal-age{
  display:none;
}

.legal-age .legal-age-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:column;
  border-radius: 20px;
  width: 60dvw;
  height: 80dvh;
  gap: 40%;
  padding: 20px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  justify-content: space-around;
}

.legal-age-image{
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/chopp2.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  z-index: -1;
}

.legal-age .legal-age-container h1{
  font-size: clamp(2rem, 1.4vw, 1.1rem);
  font-family: inherit;
  font-weight: bold;
  text-align: center;
}

.legal-age .legal-age-container .legal-age-button{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 100%;
  height: 30dvh;
  padding: 10px;
  gap: 10px;
}

.legal-age .legal-age-container .legal-age-button button{
  width: 60%;
  height: 100%;
  border-radius: 20px;
  cursor: pointer;
  font-size:larger;
  background-color: black;
  color: #f4a300;
  border: 1px solid #f4a300;
  padding: 10px;
}

.legal-age .legal-age-container .legal-age-button button:hover{
  width: 61%;
  height: 102%;
  border-radius: 20px;
  cursor: pointer;
  background-color: #f4a300;
  color: white;
}

@media (max-width: 700px) {

.legal-age .legal-age-container{
display: flex;
align-items: center;
justify-content: center;
flex-direction:column;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 20px;
width: 70dvw;
height: 80dvh;
gap: 40%;
padding: 20px;
}

.legal-age .legal-age-container h1{

font-size: clamp(1.5rem, 1.4vw, 2rem);
font-family: inherit;
font-weight: bold;
text-align: center;
}

.legal-age .legal-age-container .legal-age-button button{
  width: 90%;
  height: 100%;
  border-radius: 20px;
  cursor: pointer;
  font-size:medium;
}

.legal-age .legal-age-container .legal-age-button button:hover{
  width: 91%;
  height: 102%;
  border-radius: 20px;
  cursor: pointer;
}

.legal-age-image{
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/chopp2.jpg);
  background-size: cover;
  background-position:center;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: -1;
}
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 2px;
  color: #ff9800;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item a:hover {
  color: #8B0000;
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 50%;
  background-color: #8B0000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.15);
}

.nav-cta-button:hover {
  background: #20B358;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.nav-whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  z-index: 1001;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu (overlay + right drawer) */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  z-index: 1100;
  /* above navbar (1000) and hamburger (1001) */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: clamp(12px, 2.5vw, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-menu {
  list-style: none;
  text-align: left;
  width: min(86vw, 360px);
  height: auto;
  max-height: calc(100dvh - 32px);
  padding: clamp(16px, 3vw, 22px);
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px 0 0 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transform: translateX(110%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active .mobile-nav-menu {
  transform: translateX(0);
}

.mobile-nav-item {
  margin: 6px 0;
}

.mobile-nav-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  display: block;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
}

.mobile-nav-item a:hover {
  color: #f4a300;
  background: rgba(244, 163, 0, 0.08);
  transform: translateX(2px);
}

.mobile-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border: none;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
  margin-top: 8px;
  width: 100%;
}

.mobile-cta-button:hover {
  background: #20B358;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  /* explicit height so slider (height:100%) fills viewport */
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDE BASE */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;

  /* Alinhamento central */
  display: flex;
  flex-direction: column;
  /* garante que título, subtítulo e botão fiquem empilhados */
  align-items: center;
  /* centraliza horizontalmente */
  justify-content: center;
  /* centraliza verticalmente */

  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

/* SLIDES ESPECÍFICOS */
.slide1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../images/slider1.jpg) no-repeat center center;
  background-size: cover;
}

.slide2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../images/slider2.jpg) no-repeat center center;
  background-size: cover;
}

.slide3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../videos/videos.mp4) no-repeat center center;
  /* camada escura para dar contraste ao texto */
}

.slide3 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  /* Garante centralização horizontal */
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
  font-family: 'Inter', sans-serif;
  font-weight: 100;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.3s both;
  font-family: 'Inter', sans-serif;
  font-weight: 100;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
  padding: clamp(10px, 1.2vw, 15px) clamp(18px, 2.2vw, 30px);
  text-decoration: none;
  font-weight: 200;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ff5252, #ffc107);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  cursor: pointer;
  z-index: 3;
  animation: bounce 2s infinite;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-counter {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.counter-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.counter-dot.active {
  background: white;
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}


/* New Products Section Styles */
.products-hero-banner {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/slider1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content-new {
  text-align: center;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.products-main-title {
  margin-bottom: 0;
}

.products-main-title .script-title img {
  width: 150px;
  /* ajuste conforme necessário */
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}

.script-title {
  display: block;
  font-family: 'Pinyon Script', cursive;
  font-size: 4rem;
  color: #f4a300;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.bold-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 100;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.products-main-content {
  background: #ffffff2b;
  padding: 4rem 0;
}

.products-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.products-subtitle {
  margin-bottom: 2rem;
}

.script-subtitle {
  display: block;
  font-family: 'Pinyon Script', cursive;
  font-size: 3rem;
  color: #f4a300;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.main-subtitle {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

.products-description {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* slider */
.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  display: block;
  background: #000000;
  padding: 18px;
  user-select: none;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #f4a300;
}

.card-list .card-link .card-image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-list .card-link .badge {
  color: #e2b00e;
  width: fit-content;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 5px;
  font-weight: 500;
  background: #f9edc3;
  margin: 16px 0 18px;
}

.card-list .card-link .badge-claro {
  color: #F8E9A1;
  background: #B88A00;
}

.card-list .card-link .badge-escuro {
  color: #4A3C2A;
  background: #E6C073;
}

.card-list .card-link .badge-vinho {
  color: #B22485;
  background: #F7DFF5;
}

.card-list .card-link .badge-puromalte {
  color: #f4a300;
  background: #2E2A1F;
}

.card-list .card-link .card-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #f4a300;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #f4a300;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #f4a300;
}

.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #f4a300;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #f4a300;
  margin-top: -35px;
}

.growler-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.growler-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.growler-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.growler-image {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.growler-image img {
  max-width: 85%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
  border: 2px solid #000000;
  border-radius: 8px;
}

.growler-text {
  text-align: center;
}

.growler-title {
  margin-bottom: 0;
}

.growler-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 100;
  color: white;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Beer Section */
.beer-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 4rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
}

.beer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.beer-header {
  text-align: center;
  margin-bottom: 3rem;
}

.beer-title {
  margin-bottom: 0;
}

.beer-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 100;
  color: white;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.beer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.beer-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.beer-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.beer-image-container {
  width: 100%;
  height: clamp(180px, 20vw, 220px);
  background: #000000;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.beer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease;
  border: 2px solid #000000;
}

.beer-item:hover .beer-image {
  transform: scale(1.05);
}

.beer-info {
  text-align: center;
}

.beer-name {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: #f4a300;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.beer-description {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.video-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 4rem 2rem;
  border-radius: 12px;
}

.video-content {
  max-width: 800px;
  margin: 0 auto;
}

.video-title {
  margin-bottom: 3rem;
}

.video-subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 100;
  color: white;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  display: none;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.active {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Home: section wrapper should not add padding around the full-viewport hero */
#home.section {
  padding: 0;
  min-height: auto;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 100;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 2px;
  color: #f4a300;
}

/* Products Section */
.products-hero {
  margin-bottom: 6rem;
}

.products-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.products-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(244, 208, 63, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  height: 400px;
  position: relative;
  overflow: hidden;
}

.products-hero-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.chopp-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  animation: float 3s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #f4a300;
  border: 2px dashed rgba(212, 175, 55, 0.3);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.products-hero-text {
  padding-left: 2rem;
}

.products-hero-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #f4a300;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.products-hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.products-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 300;
  font-size: 1rem;
}

.benefit-icon {
  color: #f4a300;
  font-weight: 600;
  font-size: 1.2rem;
  width: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 3rem);
  margin-top: clamp(2rem, 3vw, 4rem);
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
  width: 100%;
  height: clamp(160px, 24vw, 240px);
  background: linear-gradient(45deg, #f4a300, #f5a911);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #000;
}

.product-image img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.product-name {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #f4a300;
}

.product-price {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 200;
  margin-bottom: 1rem;
}

.product-description {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.buy-button {
  width: 100%;
  background: transparent;
  border: 1px solid #f4a300;
  color: #f4a300;
  padding: clamp(0.65rem, 1.4vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: #f4a300;
  color: #000;
}

/* Products Explore Button */
.products-explore {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.explore-indicator {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 auto;
  display: block;
}

.explore-indicator:hover {
  color: #f4a300;
  transform: scale(1.1);
}

/* About Section Styles */
.about-hero-banner {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/slider2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}

.about-main-title {
  margin-bottom: 0;
}

.about-main-content {
  background: #2a2a2a;
  padding: 4rem 0;
}

.about-story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-story-text {
  padding-right: 2rem;
}

.about-story-title {
  margin-bottom: 1.5rem;
}

.story-subtitle {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.story-content {
  color: rgba(255, 255, 255, 0.9);
}

.story-content p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-story-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Location Section */
.location-hero-banner {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/location.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}

.location-content {
  text-align: center;
}

.location-info {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.map-placeholder {
  height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2);
  padding-bottom: 2rem;
}

/* Contact Section */
.contact-hero-banner {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/contact.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}

.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #f4a300;
  opacity: 0.8;
  display: block;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0;
}

.contact-description {
  margin-bottom: 3rem;
}

.contact-description p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.whatsapp-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background: #20B358;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1001;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: #20B358;
}

.floating-whatsapp-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.site-footer {
  padding: 10px 0;
  text-align: center;
  color: #cfcfcf;
  font-size: 0.9rem;
  background: transparent;
  margin-top: 2rem;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.site-footer .footer-text {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.site-footer .github-link svg {
  width: 20px;
  height: 20px;
  fill: #cfcfcf;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.site-footer .github-link:hover svg {
  transform: scale(1.05);
  opacity: 0.85;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.scroll-indicator:hover {
  color: #f4a300;
  transform: translateX(-50%) scale(1.1);
  background: rgba(0, 0, 0, 0.6);
}

.scroll-indicator2 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.scroll-indicator2:hover {
  color: #f4a300;
  transform: translateX(-50%) scale(1.1);
  background: rgba(0, 0, 0, 0.6);
}

.scroll-indicator3 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.scroll-indicator3:hover {
  color: #f4a300;
  transform: translateX(-50%) scale(1.1);
  background: rgba(0, 0, 0, 0.6);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive breakpoints */
/* Phones: <= 767px */
@media (max-width: 767px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0;
  }

  .nav-center,
  .nav-menu,
  .nav-cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 90svh;
  }

  .hero-content {
    padding: 1.25rem;
  }

  .hero-title {
    margin-bottom: 0.5rem;
  }

  .cta-button {
    padding: 12px 22px;
  }

  .section {
    padding: 6rem 1rem 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-hero-banner {
    height: 42vh;
    background-attachment: scroll;
  }

  .products-hero-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .products-hero-text {
    padding-left: 0;
    text-align: center;
  }

  .products-hero-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }

  .growler-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .growler-images {
    justify-content: center;
  }

  .growler-image {
    width: 140px;
    height: 180px;
  }

  .growler-subtitle {
    font-size: 1.2rem;
  }

  .beer-section {
    padding: 2.5rem 1rem;
  }

  .beer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .beer-item {
    padding: 1.25rem;
  }

  .beer-image-container {
    height: 190px;
  }

  .beer-name {
    font-size: 1.2rem;
  }

  .beer-description {
    font-size: 0.95rem;
  }

  .video-section {
    padding: 2.5rem 1rem;
  }

  .video-subtitle {
    font-size: 1.1rem;
  }

  .about-hero-banner {
    height: 40vh;
    background-attachment: scroll;
  }

  .about-story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-text {
    padding-right: 0;
    text-align: center;
  }

  .story-subtitle {
    font-size: 1.6rem;
  }

  .about-story-images {
    flex-direction: row;
    gap: 1rem;
  }

  .story-image {
    height: 200px;
  }

  .location-info {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .products-description {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .site-footer {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .site-footer .github-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Small phones: <= 600px */
@media (max-width: 600px) {
  .navbar {
    padding: 0.6rem 0.75rem;
  }

  .hamburger {
    width: 34px;
    height: 34px;
  }

  .hero {
    height: 88svh;
  }

  .hero-content {
    padding: 1rem;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .products-hero-banner {
    height: 38vh;
  }

  .script-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .bold-title {
    font-size: 1.05rem;
  }

  .products-description {
    font-size: 0.95rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .card-wrapper {
    margin: 0 6px 20px;
  }

  .growler-image {
    width: 130px;
    height: 170px;
  }

  .video-section {
    padding: 2rem 0.75rem;
  }

  .map-placeholder {
    height: 320px;
  }

  .mobile-nav-menu {
    width: min(92vw, 340px);
  }

  .mobile-cta-button {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .site-footer {
    font-size: 0.8rem;
  }
}

/* Tablets: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar {
    padding: 0.9rem 1.25rem;
  }

  .nav-center,
  .nav-menu,
  .nav-cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 90vh;
  }

  .products-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .products-hero-image {
    height: 340px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-image {
    height: 220px;
  }

  .card-wrapper {
    margin: 0 24px 30px;
  }

  .beer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .beer-item {
    padding: 1.5rem;
  }

  .beer-image-container {
    height: 210px;
  }
}

/* Small/Medium Desktops: 1024px - 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
  .products-hero-image {
    height: 380px;
  }

  .card-wrapper {
    margin: 0 40px 35px;
  }
}

/* Large Desktops: >= 1440px */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
    --gutter: clamp(20px, 2vw, 48px);
  }

  .nav-container {
    max-width: 1320px;
  }

  .hero {
    height: 92vh;
  }

  .products-hero-image {
    height: 440px;
  }
}

/* Compact UI/UX overrides - reduce radii, paddings and font sizes for better readability on small screens */
:root {
  --radius: 8px;
  /* slightly less rounded */
}

/* General smaller type and tighter spacing */
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* Reduce heavy shadows and radii for a cleaner, more modern look */
.navbar,
.mobile-nav-menu,
.card-link,
.product-card,
.story-image,
.growler-image {
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Buttons and CTAs */
.nav-cta-button {
  border-radius: 6px !important;
  padding: 0.55rem 0.95rem !important;
  font-size: 0.85rem !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.12) !important;
}

.mobile-cta-button {
  border-radius: 8px !important;
  padding: 0.6rem 0.9rem !important;
  font-size: 0.92rem !important;
}

.hamburger {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
}

.hamburger span {
  height: 1.6px !important;
}

/* Cards and product blocks: less padding, smaller text */
.card-list .card-item .card-link,
.product-card {
  padding: 12px !important;
}

.card-list .card-link .card-title,
.product-name,
.product-price {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem) !important;
}

/* Story and paragraphs: slightly smaller and tighter line-height */
.story-content p,
.products-description,
.location-info,
.contact-description p {
  font-size: clamp(0.9rem, 1.6vw, 1rem) !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
  text-align: left !important;
}

/* Floating whatsapp smaller */
.floating-whatsapp {
  width: 52px !important;
  height: 52px !important;
  bottom: 18px !important;
  right: 16px !important;
}

/* Responsive tweaks: further scale down on small devices */
@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .nav-cta-button {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  .card-list .card-link .card-title {
    font-size: 0.95rem;
  }

  .story-content p {
    font-size: 0.95rem;
  }

  .about-story-section {
    padding: 0 0.85rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .nav-cta-button {
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
  }

  .card-list .card-link .card-title {
    font-size: 0.9rem;
  }

  .story-content p {
    font-size: 0.92rem;
  }

  .about-story-section {
    padding: 0 0.6rem;
    gap: 1rem;
  }

  .mobile-nav-item a {
    font-size: 0.98rem;
  }

  .mobile-nav-menu {
    padding: 12px !important;
  }
}