
/*
Theme Name: Brewtique Hoptron
Author: Brewtique
Version: 4.0
*/

body{margin:0;
font-family:"Montserrat", sans-serif;
background:#F7F4EE;
height: auto;
overflow-x: hidden;
font-weight: 400;
font-style: normal;
}

.top-bar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:#000;
border-bottom:1px solid #111;
}



.logo img{
height:42px;
width:auto;
}
.nav-menu a{
margin-left:25px;
text-decoration:none;
color:#fff;
font-weight:500;
letter-spacing:.05em;
font-size:14px;
text-transform:uppercase;
}

.nav-menu a:hover{
color:#ff4fa3;
}


/* HERO CONTAINER */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-height)); /* adjust to your navbar height */
  width: 100%;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ðŸ”¥ key for auto-resize */
}

/* INTRO OVERLAY */
.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px; /* margin from edges */
}

/* CONTENT BOX */
.hero-content {
  border: 1px solid #CFAA57;
   border-radius: 25px;
  height: calc(100vh - 160px); /* adjust to your navbar height */
  width: 100%;*/
  color: white;
  backdrop-filter: blur(6px); /* optional ðŸ”¥ */
  background: rgba(0,0,0,0.4); /* improves readability */
  
   display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

:root {
  --nav-height: 80px;
}

.hero {
  height: calc(100vh - var(--nav-height));
}

@media (max-width: 768px) {

  .hero-buttons {
    flex-direction: column;     /*  stack vertically */
    align-items: stretch;       /* full width buttons */
  }

  .hero-buttons a {
    width: 100%;                /* full width */
    font-size: 14px;
    padding: 12px;
  }

}


.hero-buttons{
    margin-top:40px;
    display: flex;
   justify-content: center;
  gap: 12px;
}


/*
.btn-y {
  background: #ffe45c;
  padding: 12px 26px;
  border-radius: 30px;
  color: #1a1a1a;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 228, 92, 0.5);
  min-width:100px;
}
.btn-p{background:#ff4fa3;padding:12px 26px;border-radius:30px;color:#1a1a1a;text-decoration:none;box-shadow:0 0 12px rgba(255,79,163,.5);}
.btn-b{background:#45d1ff;padding:12px 26px;border-radius:30px;color:#1a1a1a;text-decoration:none;box-shadow:0 0 12px rgba(69,209,255,.5);}*/

.hero-buttons a {
  flex: 1;
  text-align: center;
  border-radius: 30px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: all 0.25s ease;
  min-width: 0;
}

/* YELLOW */
.btn-y {
  background: linear-gradient(145deg, #ffe45c, #ffd93d);
  color: #1a1a1a;
  box-shadow:
    0 4px 12px rgba(255, 228, 92, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.4);
}

/* PINK */
.btn-p {
  background: linear-gradient(145deg, #ff4fa3, #ff2f8a);
  color: #1a1a1a;
  box-shadow:
    0 4px 12px rgba(255, 79, 163, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
}

/* BLUE */
.btn-b {
  background: linear-gradient(145deg, #45d1ff, #1fbfff);
  color: #1a1a1a;
  box-shadow:
    0 4px 12px rgba(69, 209, 255, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
}

.hero-buttons a:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

.hero-buttons a:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,0.3);
}

.hero-buttons a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-y::after {
  box-shadow: 0 0 20px rgba(255, 228, 92, 0.8);
}

.btn-p::after {
  box-shadow: 0 0 20px rgba(255, 79, 163, 0.8);
}

.btn-b::after {
  box-shadow: 0 0 20px rgba(69, 209, 255, 0.8);
}

.hero-buttons a:hover::after {
  opacity: 1;
}

.section{padding:40px 10px;max-width:1200px;margin:auto;}
.split{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;}
.split img{width:100%;border-radius:12px;}
.tap-dashboard iframe{width:100%;height:590px;border:none;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.2);}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.gallery-grid img{width:100%;border-radius:12px;}
.membership-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.tier{background:white;padding:30px;border-radius:14px;box-shadow:0 10px 20px rgba(0,0,0,.08);}
footer{background:#222;color:white;text-align:center;padding:40px;margin-top:60px;}
@media(max-width:900px){
.split{grid-template-columns:1fr;}
.gallery-grid{grid-template-columns:repeat(2,1fr);}
.membership-grid{grid-template-columns:1fr;}
.hero-intro h1{font-size:32px;}
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the whole block */
  text-align: center;
  color: #fff;
}

/* MAIN TITLE */
.hero-title .title-main {
  font-size: clamp(28px, 9vw, 114px);
  line-height: 1.1;
  white-space: nowrap; /* keeps THE BREWTIQUE in ONE line */
}

/* SUB TITLE */
.hero-title .title-sub {
  font-size: clamp(14px, 5vw, 40px);
  margin-top: 6px;
  letter-spacing: 2px;
  align-self: flex-end;
  transform: translateX(-10%);
}

@media (max-width: 768px) {

  .hero-title .title-main {
    white-space: nowrap;
  }

  .hero-title .title-sub {
    display: block;
  }

}

/*
.title-main {
  font-size: clamp(28px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 8px;
}

.title-sub {
  font-size: 2.4rem;
  letter-spacing: 4px;
  align-self: flex-end; /* ðŸ”¥ THIS creates the offset */
}*/

.membership-section {
  background: #F7F4EE;
  color: #2a2a2a;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.membership-header {
  text-align: center;
  margin-bottom: 50px;
}

.membership-header h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.membership-header p {
  color: #555;
}

.membership-block {
  margin-bottom: 50px;
}

.membership-block h3 {
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* Lists */
/* Remove lines */
.check-list li {
  border: none;
  padding: 2px 18px;
  position: relative;
  line-height: 1.5;
}

/* Default icon (clean check) */
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 0.9rem;
  color: #ff4fa3;
  text-shadow: 0 0 4px rgba(255,79,163,0.3);
}

ul {
  list-style-type: none; /* Removes the bullets */
  padding: 0;            /* Removes the default left padding */
  margin-left: 10px;             /* Removes the default margins */
}


/* Slight variation for highlighted card */
.highlight-card .check-list li::before {
  color: #45d0ff;
  text-shadow: 0 0 4px rgba(69,208,255,0.3);
}

/* Optional hover polish */
.check-list li:hover {
  transform: translateX(4px);
  transition: 0.2s ease;
}
/* Layout */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

/* Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}

.tier-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  border: 1px solid rgba(0,0,0,0.08);
}

.tier-card.featured {
  border-color: #ff4fa3;
}

.tier-card.premium {
  border-color: #45d0ff;
}

.price {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Highlight sections */
.highlight {
  text-align: center;
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 600px;
}

/* Closing */
.closing {
  margin-top: 15px;
  font-style: italic;
  color: #555;
}

.site-footer {
  background: #0e0e0e;
  color: #ddd;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  line-height: 1.6;
  opacity: 0.8;
}

/* HOURS LIST */
.footer-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours span {
  font-weight: 600;
  color: #aaa;
  text-align: left;
}

.footer-hours li {
  grid-template-columns: 100px auto;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  opacity: 0.6;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-hours li {
    grid-template-columns: 80px 1fr;
    justify-content: center;
  }
}
