:root { /*var definitions*/
	--brz_font_family:"baskerville-urw",serif;
	--brz_color_gold:#c88f31;
	--brz_color_light:#f6f0e5;
	--brz_column_width:600px; /*width then columns shift one after another. Does not work in @media */
}
.light_text {
	font-size:15pt;
	font-weight: 500;
  font-family:var(--brz_font);
	color:var(--brz_color_light);
}
.gold_text {
	font-size:15pt;
	font-weight: 500;
  font-family:var(--brz_font_family);
	color:var(--brz_color_gold);
}
.white_text {
	font-size:15pt;
	font-weight: 500;
  font-family:var(--brz_font_family);
	color:white;
}
.gray_text {
	font-size:15pt;
	font-weight: 500;
  font-family:var(--brz_font_family);
	color:#B0B0B0;
}
.black_text {
	font-size:15pt;
	font-weight: 500;
  font-family:var(--brz_font_family);
	color:black;
}
.gold_line {
	background-color:var(--brz_color_gold);
	margin:25px 0px 25px 0px;
	height:2px;
	border:none;
}	

.img_round_frame {
    border: 2px solid var(--brz_color_gold); /* Creates the 2px golden frame */
    border-radius: 10px;    /* Adjust value for rounder or straighter corners */
    box-sizing: border-box; /* Ensures the border doesn't affect image size */
    max-width:100%;
}
span {
  line-height: 1;
  font-family:var(--brz_font_family);
}
/********************************************/
/* Main                                     */
/********************************************/
* {
  box-sizing: border-box;
  font-family:var(--brz_font_family);
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: black;
}
#div { /* for debug */
	border:solid white 1pt;
}
/************************************************/
/* Navigation menu (must go before "responsive")*/
/* Default properties before screen width update*/
/************************************************/
.navbar { /* when desktop */
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  color: #fff;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--brz_color_gold);
  cursor: pointer;
}
#menu_logo_mobile {
  display: none;
}
.navbar .logo {
  height:85px;
}
.menu-links {
  display: flex;
  gap: 5px;
}
.menu-links a {
  color: var(--brz_color_gold);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.menu-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/********************************************/
/* Responsive                               */
/********************************************/
/* --- Responsive Menu --- */
/*@media (max-width: var(--brz_column_width)) { // var() does not work here*/
@media (max-width: 600px) {
  .menu-links { /* when mobile */
	display: none;
	flex-direction: column;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.95); 
	position: absolute;
	top: 105px;
	left: 0;
	padding: 10px;
	text-align: center;
	margin-bottom: 1px;
	border:solid 1px black;
  }
  .menu-links.show {
	display: flex;
  }
  .menu-toggle {
	display: block;
	position: absolute;
	left: 20px;
  }
  #menu_logo_mobile {
	display: block;
	text-align: center;
	flex: unset;
	margin: 0 auto;
  }
  #menu_logo_desktop {
    display: none;
  }
  .navbar .logo {
	text-align: center;
	flex: unset;
	margin: 0 auto;
  }
  #index_divider {
	  display:none;
  }
  .prodImg {
	  height:500px;
  }
}  
/********************************************/
/* Main Menu                                */
/********************************************/
.main_menu_lbl {
  font-size:15pt;
  font-family:var(--brz_font_family);
  color:var(--brz_color_gold);
  white-space:pre-wrap;
  text-align:center;
}
/********************************************/
/* Multicolumn responsive divs              */
/********************************************/
* { /* Reset some basic styles */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 20px;
}
/* Block styling */
.block {
  width: var(--brz_column_width);
	border: 1px solid var(--brz_color_gold);
	padding:18px;
  border-radius: 10px;
}
/* Media queries for responsiveness */
/* Medium screens: 2 columns */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: repeat(2, var(--brz_column_width));
    }
    /* .main_menu_lbl {
        height:38px;
    } */
}
/* Small screens: 1 column */
@media (max-width: var(--brz_column_width)) {
    .container {
        grid-template-columns: 1fr; /* 1 column */
    }
}
	
/********************************************/
/* Footer                                   */
/********************************************/
.yellow_button a {
  font-size:15pt;
  font-family:var(--brz_font_family);
  color:black;
  white-space:pre-wrap;
  text-align:center;
  text-decoration: none;
  width:200px;
  border:solid var(--brz_color_gold) 2px;
  border-radius:10px;
  padding:15px;
  background-color:var(--brz_color_gold)
}
.yellow_button a:hover {
  background-color: rgba(255,255,255, 0.6);
}
/********************************************/
/* news & cocktails                         */
/********************************************/
.imgBlock {
  border-radius: 0px;
  padding:0px;
  margin:0px;
  width:var(--brz_column_width);
  height:var(--brz_column_width);
} 
.txtBlock {
  padding:30px 15px 15px 50px;
  margin:0px;
  width:calc(var(--brz_column_width)*0.95);
  background-color:var(--brz_color_gold);
  border-radius: 0px;
  height:var(--brz_column_width);
}
.newsTitle {
  font-size:38px;
} 
.newsText {
  font-size:24px;
} 
.newsDate {
  font-size:18px;
} 
.contactText {
  font-size:18px;
}
.news_button a {
  font-size:15pt;
  font-family:var(--brz_font_family);
  color:black;
  white-space:pre-wrap;
  text-align:center;
  text-decoration: none;
  width:200px;
  border:solid black 2px;
  border-radius:0px;
  padding:15px;
  background-color:var(--brz_color_gold)
}
.news_button a:hover {
  background-color: rgba(255,255,255, 0.6);
}
/********************************************/
/* whiskeys                                 */
/********************************************/
.whiskeys_buy_now a { /* buy button */
   -webkit-text-stroke: 0.4px black;
   text-stroke: 1px 999594;
   border:solid 2px black;
   padding:18px 15px;
   border-radius: 10px;
   color: var(--brz_color_gold);
   text-decoration: none;
   border-radius: 5px;
   transition: background-color 0.3s;
}
.whiskeys_buy_now a:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
/********************************************/
/* Age Gate                                 */
/********************************************/
/* Fade transitions */
.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}
.visible {
  opacity: 1;
  pointer-events: auto;
}
/* Overlay styling */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
/* Age gate box */
.gate-box {
  background: white;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  max-width: 550px;
}
.gate-box h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
button {
  background-color: #333;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #555;
}
/* to prevent hyperlink to be different from other text*/
.hyperlinks a {color: inherit;text-decoration: none;}
.hyperlinks a:visited {color: inherit;}
.hyperlinks a:hover {color: inherit;}
.hyperlinks a:active {color: inherit;}

/********************************************/
/* Single Barrel Form                       */
/********************************************/
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-group {
    margin-bottom: 1rem;
}
input {
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
    margin: 0em 0em 0em 0em;
    padding: 1px 0px;
    border-width: 2px;
    border-style: inset;
    border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    padding-block: 1px;
    padding-inline: 2px;
  	color:red;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.form-row>.col, .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: white;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-label {
    display: block;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--brz_color_light);
    background-clip: padding-box;
    border: 0;
}
.transparent-button {
  background-color: transparent; 
  padding: 10px 20px;
}
textarea.form-control {
    height: auto;
}
textarea {
    overflow: auto;
    resize: vertical;
}
