/* ─── Base ─────────────────────────────────────────────── */

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto;
	background: #0B0B0B url('images/texture1b.jpg') repeat;
	color: #E6E2D9;
}

*, *::before, *::after {
    box-sizing: border-box;
}

main {
    flex: 1;
    display: flex;
}

/* ─── Banner ────────────────────────────────────────────── */

.banner {
	width: 100%;
	display: flex;
	justify-content: center;
	padding:25px;
	margin-bottom:50px;
}

.banner img {
	width: 100%;
	max-width: 750px;
	height: auto;
}

/* ─── Layout ────────────────────────────────────────────── */

.wrapper {
	display: flex;
	min-height: 55vh;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-image: url('images/v_border_2_5.png') 5 0 5 0 repeat;
}

/* ─── Sidebar ───────────────────────────────────────────── */

.sidebar {
	width: 120px;
	background: #0B0B0B;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 35px;
	border-right: 1px solid #1d1d1d;
}

/* ─── Icons ─────────────────────────────────────────────── */

.icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: none;
	border: 1px solid #5d4529;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8px;
	font-size: 22px;
	cursor: pointer;
	transition: .2s;
}

.icon:hover {
	background: #5d4529;
	color: black;
	transform: scale(1.05);
}

/* ─── Labels ────────────────────────────────────────────── */

.label {
  /* font-family: 'Cinzel', serif; */
	font-size: 16px;
	color: #f6ca92;
	margin-bottom: 18px;
	text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── Hero ──────────────────────────────────────────────── */

.hero {
	flex: 1;
	background:
		linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.85)),
		url("images/whiskey.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 50px;
}

/* ─── Content ───────────────────────────────────────────── */

.content {
	max-width: 620px;
}

.small {
	font-size: 22px;
	color: #BFB8AA;
}

h1 {
	font-size: 56px;
	margin: 8px 0;
	font-weight: 500;
	letter-spacing: .5px;
}

.tag {
	font-size: 24px;
	color: #CFC8B8;
	line-height: 1.4;
}

.bottom {
	margin-top: 20px;
	color: #BFB8AA;
	font-size: 18px;
}

/* ─── Brand title ───────────────────────────────────────── */

.brand {
	font-family: 'Cinzel', serif;
	font-size: 54px;
	letter-spacing: 1px;
	color: #E6D3A3;
	margin-bottom: 10px;
}

/* ─── Modal ─────────────────────────────────────────────── */

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.85);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.formbox {
	background: #121212;
	padding: 25px;
	border-radius: 8px;
	width: 90%;
	max-width: 420px;
	border: 1px solid #2a2a2a;
}

/* ─── Form ──────────────────────────────────────────────── */

input, textarea {
	width: 100%;
	padding: 12px;
	margin-top: 10px;
	background: #1c1c1c;
	border: 1px solid #333;
	color: white;
	border-radius: 5px;
	font-size: 15px;
}

textarea {
	min-height: 120px;
}

button {
	background: #8F7A3E;
	border: none;
	padding: 14px;
	width: 100%;
	margin-top: 15px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: .2s;
}

button:hover {
	background: #A89252;
}

.close {
	margin-top: 15px;
	text-align: center;
	cursor: pointer;
	color: #aaa;
	font-size: 14px;
}

/* ─── Mobile nav ────────────────────────────────────────── */

.mobilebar {
	display: none;
}

/* ─── Breakpoint: ≤ 900px ───────────────────────────────── */

@media (max-width: 900px) {

  main {
      flex: 1;
  }
  
	.wrapper {
		flex-direction: column;
	}

	.sidebar {
		display: none;
	}

	.hero {
		padding: 35px 25px;
		min-height: 320px;
	}

	h1 {
		font-size: 36px;
	}

	.small {
		font-size: 18px;
	}

	.tag {
		font-size: 19px;
	}

	.bottom {
		font-size: 16px;
	}
  
  .banner {
    margin-bottom:10px;
  }

	.banner img {
		max-width: 95%;
	}

	.mobilebar {
		display: flex;
		position: fixed;
		bottom: 0;
		width: 100%;
		background: #0B0B0B;
		justify-content: space-around;
		padding: 12px 5px;
		padding-bottom: 25px;
		border-top: 1px solid #222;
		text-align: center;
		font-size: 20px;
    border-top: 5px solid transparent;
    border-image: url('images/v_border_2_5.png') 5 0 5 0 repeat;
	}

	.mobilebar a {
		text-decoration: none;
		color: #8F7A3E;
	}

	.mobilelabel {
		color: #BFB8AA;
		margin-top: 3px;
	}

}