@charset "UTF-8";
/* CSS Document */

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

body {
	font-family: 'Geneva', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
	color: #fff;
}

img {
	width: 100%;
	display: block;
}

.container::after {
	content: ""; 
	clear: both;
	display: table;
}

/* HEADER */
.header {
	background: #2a2927;
	height: 150px;
	max-width: 1540px;
	margin: 0 auto;
}

.header .container {
	/*max-width: 1540px;*/
	height: 150px;
	display: flex;
	align-items: center;
}

.header .logo-col {
	/*padding-left: 40px;*/
	display: flex;
	align-items: center;
}

.header .logo-col img {
  max-width: 150px;
  width: auto;
  transition: transform 0.3s ease;
}

.header .logo-col img:hover {
  transform: scale(1.05);
}

.header .nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .nav-item a {
	color: #bebbbb;
	text-decoration: none;
	font-size: 20px;
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	transition: color 0.3s;
}

.header .nav-item a:hover {
	color: #b11217;
}

/* HAMBURGER MENU  */
.menu-toggle-checkbox {
	display: none;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	cursor: pointer;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
}

.hamburger span {
	width: 100%;
	height: 3px;
	background-color: #bebbbb;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Hamburger */
.menu-toggle-checkbox:checked ~ .header .hamburger span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle-checkbox:checked ~ .header .hamburger span:nth-child(2) {
	opacity: 0;
}

.menu-toggle-checkbox:checked ~ .header .hamburger span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
.mobile-menu {
	display: none;
	flex-direction: column;
	background-color: #2a2927;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	z-index: 999;
}

/* Show menu  */
.menu-toggle-checkbox:checked ~ .header .mobile-menu {
	max-height: 140px;
	padding: 7px 0;
}

.mobile-menu a {
	color: #bebbbb;
	text-decoration: none;
	font-size: 17px;
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	padding: 3px 5px;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
}

.mobile-menu a:hover {
	background-color: #3a3937;
	color: #b11217;
}

/* HERO SECTION  */
.hero {
	background: url("images/background.png") center center no-repeat;
	background-size: cover;
	min-height: 800px;
	display: flex;
	align-items: center;	
}
/*
.hero .container {
	width: 100%;
}*/

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 800px;
	margin-top: -50px;	
	margin-left: -20px
}

.hero-block {
	margin-bottom: 60px;
	width: 100%;
}

.hero-block:last-child {
	margin-bottom: 0;
	margin-top: -10px;
}

.hero-tagline {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 24px;
	margin-bottom: 10px;
	color: #fff;
	text-transform: uppercase;
}

.hero-title {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 72px;
	font-weight: regular;
	text-transform: uppercase;
	color: #f47c2c;
	text-stroke: 2px #000000;
	text-shadow: -10px 10px 15px rgba(0, 0, 0, 1), -10px 10px 25px rgba(0, 0, 0, 1), -10px 10px 25px rgba(0, 0, 0, 1);
	filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.8));
	margin: 0;
	line-height: 1.2;
}

.hero-title:last-of-type {
	letter-spacing: 5px;
}

.hero-subtitle {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 36px;
	color: #bebbbb;
}

.hero-tagline-small {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 36px;
	color: #bebbbb;
}

.cta-button {
	background-color: #b11217;
	color: #fff;
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 40px;
	font-weight: bold;
	text-decoration: none;
	padding: 10px 25px;
	border-radius: 20px;
	text-align: center;
	display: inline-block;
	transition: background-color 0.3s, transform 0.2s;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
	background-color: #8d0e12;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/*  MOBILE */
@media screen and (max-width: 768px) {
	.header {
		height: auto;
		padding: 20px 0;
		position: relative;
	}
	
	.header .container {
		flex-direction: row;
		height: auto;
		justify-content: space-between;
		position: relative;
	}
	
	.header .logo-col {
		padding-left: 1px;
		margin-bottom: 0;
		justify-content: flex-start;
	}
	
	.header .nav-item {
		display: none;
	}
	
	.hamburger {
		display: flex;
	}
	
	.mobile-menu {
		display: flex;
	}
	
	.hero {
		min-height: 600px;
	}
	
	.hero-content {
		min-height: 600px;
		padding: 40px 20px;
	}
	
	.hero-block {
		margin-bottom: 10px;
		padding-top: 5px
	}
	
	.hero-tagline {
		font-size: 18px;
	}
	
	.hero-title {
		font-size: 48px;
	}
	
	.hero-subtitle {
		font-size: 18px;
		padding-top: 10px
	}
	
	.hero-tagline-small {
		font-size: 18px;
	}
	
	.cta-button {
		font-size: 18px;
		padding: 15px 30px;
	}
}

@media screen and (max-width: 480px) {
	.header .logo-col {
		padding-left: 10px;
	}
	
	.header .nav-item {
		padding: 8px 10px;
	}
	
	.header .nav-item a {
		font-size: 16px;
	}
	
	.hero-content {
		padding: 15px 15px;
	}
	
	.hero-tagline {
		font-size: 16px;
	}
	
	.hero-title {
		font-size: 30px;
		padding-bottom: 50px;
	}
	
	.hero-subtitle {
		font-size: 16px;
		padding: 5px 5px;
	}
	
	.hero-tagline-small {
		font-size: 16px;
	}
}

iframe.mobile {
	display: none;
}

/* ABOUT SECTION */
.about {
	background-color: #2a2927;
	padding: 80px 0;
	max-width: 1540px;
	margin: 0 auto;
}

.about .container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.about h2 {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 48px;
	color: #f47c2c;
	text-align: center;
	margin-bottom: 40px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(177, 18, 23, 0.3);
}

.about p {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 18px;
	line-height: 1.8;
	color: #bebbbb;
	margin-bottom: 20px;
	text-align: left;
}

.about .owner-photo {
	width: 45%;
	max-width: 450px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	float: right;
	margin: 0 0 20px 30px;
}

/* MENU SECTION */
.menu {
	background-color: #3a3937;
	background-image: url('images/veg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	max-width: 1540px;
	margin: 0 auto;
}

.menu h2 {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 48px;
	color: #f47c2c;
	text-align: center;
	margin-bottom: 50px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(177, 18, 23, 0.3);
}

.menu-item {
	margin-bottom: 30px;
	padding: 0 20px;
}

.menu-item h3 {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 22px;
	color: #f47c2c;
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.menu-item .price {
	font-size: 20px;
	color: #bebbbb;
	margin-left: 10px;
}

.menu-item .price::before {
	content: "$";
}

.menu-item p {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #bebbbb;
}

.menu-item.extra-space {
	margin-bottom: 55px;
}

.menu-extras {
	margin-top: 50px;
	padding: 30px 20px;
	background-color: #2a2927;
	border-radius: 10px;
}

.menu-extras h4 {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 20px;
	color: #f47c2c;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.menu-extras p {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #bebbbb;
	margin-bottom: 15px;
}

.menu-extras .disclaimer {
	font-size: 14px;
	font-style: italic;
	margin-top: 20px;
	color: #999;
}

/* CONTACT SECTION */
.contact {
	background-image: url('images/table.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #2a2927;
	padding: 80px 0;
	max-width: 1540px;
	margin: 0 auto;
	position: relative;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(42, 41, 39, 0.6);
	z-index: 0;
}

.contact .container {
	position: relative;
	z-index: 1;
}

.contact h2 {
	font-family: 'Arial', 'Helvetica', sans-serif;
	font-size: 48px;
	color: #f47c2c;
	text-align: center;
	margin-bottom: 50px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(177, 18, 23, 0.3);
}

.contact-info {
	text-align: center;
	margin-bottom: 30px;
}

.contact-info h3 {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 24px;
	color: #f47c2c;
	margin-bottom: 15px;
}

.contact-info p {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 18px;
	line-height: 1.8;
	color: #bebbbb;
	margin-bottom: 10px;
}

.contact-info a {
	color: #f47c2c;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info a:hover {
	color: #b11217;
}

/* MOBILE RESPONSIVENESS FOR NEW SECTIONS */
@media screen and (max-width: 768px) {
	.about, .menu, .contact {
		padding: 50px 0;
	}
	
	.menu {
		background-size: cover;
		background-position: center;
	}
	
	.about h2, .menu h2, .contact h2 {
		font-size: 36px;
		margin-bottom: 30px;
	}
	
	.about p {
		font-size: 16px;
		padding: 0 15px;
	}
	
	.about .owner-photo {
		width: 100%;
		max-width: 100%;
		float: none;
		margin: 0 0 20px 0;
	}
	
	.menu-item {
		margin-bottom: 25px;
		padding: 0 15px;
	}
	
	.menu-item h3 {
		font-size: 20px;
	}
	
	.menu-item p {
		font-size: 15px;
	}
	
	.menu-extras {
		margin-top: 30px;
		padding: 20px 15px;
	}
	
	.menu-extras h4 {
		font-size: 18px;
	}
	
	.menu-extras p {
		font-size: 15px;
	}
	
	.contact-info h3 {
		font-size: 20px;
	}
	
	.contact-info p {
		font-size: 16px;
		padding: 0 15px;
	}
}

@media screen and (max-width: 480px) {
	.menu {
		background-size: cover;
		background-position: center;
	}
	
	.about h2, .menu h2, .contact h2 {
		font-size: 28px;
	}
	
	.menu-item h3 {
		font-size: 18px;
	}
}

/* MAP CONTAINER */
.map-container {
	margin-top: 50px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
	display: block;
}

/* FOOTER */
.footer {
	background-color: #1a1918;
	padding: 60px 0 30px;
	max-width: 1540px;
	margin: 0 auto;
	border-top: 3px solid #b11217;
}

.social-media {
	text-align: center;
	margin-bottom: 40px;
}

.social-media h3 {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 28px;
	color: #f47c2c;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.social-icons a {
	color: #bebbbb;
	transition: color 0.3s, transform 0.3s;
	display: inline-block;
}

.social-icons a:hover {
	color: #b11217;
	transform: translateY(-5px);
}

.social-icons svg {
	width: 40px;
	height: 40px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #3a3937;
}

.footer-bottom p {
	font-family: 'Geneva', 'Lucida Sans', sans-serif;
	font-size: 16px;
	color: #bebbbb;
	margin-bottom: 10px;
}

.footer-bottom .tagline {
	font-size: 14px;
	color: #999;
	font-style: italic;
}

/* MOBILE RESPONSIVENESS FOR FOOTER */
@media screen and (max-width: 768px) {
	.footer {
		padding: 40px 0 20px;
	}
	
	.social-media h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.social-icons {
		gap: 20px;
	}
	
	.social-icons svg {
		width: 35px;
		height: 35px;
	}
	
	.map-container {
		margin-top: 30px;
	}
	
	.map-container iframe {
		height: 300px;
	}
	
	.footer-bottom p {
		font-size: 14px;
	}
}

@media screen and (max-width: 480px) {
	.social-icons svg {
		width: 30px;
		height: 30px;
	}
	
	.footer-bottom p {
		font-size: 13px;
		padding: 0 15px;
	}
}