/* =========================
   GLOBAL
========================= */

html {
  scroll-behavior: smooth;
}

body {
  background: rgba(22, 22, 22, 1);
  color: #fff;
  padding-top: 80px;
  margin: 0;
}

/* =========================
   NAVBAR
========================= */

nav.custom-navbar {
  background-color: rgba(209, 209, 209, 1) !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* LOGO */
.logo {
  height: 70px;
  width: auto;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* LINKOVI */
.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
  color: #000 !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

/* HOVER */
.custom-navbar .nav-link:hover {
  color: #b8860b !important;
}

/* ACTIVE */
.custom-navbar .nav-link.active {
  color: #b8860b !important;
}

/* HAMBURGER */
.navbar-toggler {
  border: none;
}



/* =========================
   HERO
========================= */

.hero {
  background: rgba(22, 22, 22, 1);
  padding: 80px 20px;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
}

/* =========================
   ABOUT
========================= */

.about-section {
  background: rgba(22, 22, 22, 1);
  color: #fff;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #d6d6d6;
}

.about-text h5 {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 20px;
}

.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

/* =========================
   MEMBERS
========================= */

.members-section {
  background: rgba(22, 22, 22, 1);

}

.members-title {
  font-size: 3rem;
  font-weight: 800;
}

.member-box {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.member-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.member-box img:hover {
  transform: scale(1.05);
}

/* =========================
   TAPROOM
========================= */

/* =========================
   ALTERNATING SECTIONS (FIX)
========================= */

/* default tamna */
.about-section,
.taproom-section,
.contact-section {
  background: #161616;
  color: #fff;
}

/* svetla sekcija (svaka druga) */
.members-section, .contact-section {
  background: #f1f1f1;
  color: #000;
}

.social-section {
  background: #fff !important;
  color: #000;
}

/* tekst u svetlim sekcijama */
.members-section h1,
.members-section h2,
.members-section h3,
.members-section p {
  color: #000;
}
.taproom-section {
  background: rgba(22, 22, 22, 1);
  color: #fff;
}

.taproom-title {
  font-size: 2.6rem;
  font-weight: 800;
}

.taproom-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #d6d6d6;
}

.taproom-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.3s ease;
}

.taproom-img:hover {
  transform: scale(1.03);
}

/* =========================
   SECTIONS GENERAL
========================= */

section {
  padding: 80px 0;
}

/* =========================
   SOCIAL
========================= */

.social-section {
  background: #f5f5f5;
  color: #000;
}

.social-title {
  font-size: 42px;
  font-weight: 800;
  color: #9c8f8f;
}

.divider {
  width: 60px;
  height: 2px;
  background: #ccc;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icon.fb {
  background: #1877f2;
}

.social-icon.ig {
  background: #e1306c;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* =========================
   FOOTER
========================= */

.footer-section {
  background: #000;
  color: #fff;
}

.footer-section p {
  margin: 0;
}

.footer-section .copyright {
  margin-top: 20px;
  color: #aaa;
  font-size: 14px;
}

/* =========================
   MENU ITEMS
========================= */

.menu-item {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 15px;
}

.menu-item:last-child {
  border-bottom: none;
}


/* =========================
   AGE GATE POPUP
========================= */

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.age-box {
  background: #f1f1f1;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* 👇 CRNA SLOVA DA SE VIDE */
.age-box h2 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
  min-width: 140px;
}

/* VIŠE OD 18 */
.age-buttons button:first-child {
  background: #161616;
  color: #fff;
}

/* MANJE OD 18 */
.age-buttons button:last-child {
  background: #b00020;
  color: #fff;
}

.age-buttons button:hover {
  transform: scale(1.05);
}

/* =========================
   DESKTOP NAVBAR + SECTION OFFSET FIX
========================= */

/* pošto je navbar fixed, mora offset */
body {
  padding-top: 80px;
}

