@import url('https://fonts.googleapis.com/css2?family=Georgia&display=swap');

:root {
	--primary-bg: #EBEBDD; /* Novo tom de branco/creme muito claro para o fundo principal */
	--gold-main: #C9A861;
	--gold-accent: #D4A574;
	--light-cream: #F5F5DC;
	--footer-bg: #1A1A1A;
	--white-color: #FFFFFF;
}

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

body {
	font-family: 'Georgia', serif;
	color: #3D1F1F; /* Cor do texto ajustada para escuro no fundo claro */
	background-color: var(--primary-bg);
	background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23c2c2b3" fill-opacity="0.3"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'); /* Padrão sutil ajustado para fundo claro */
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background-color: rgba(235, 235, 221, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	z-index: 100;
	border-bottom: 1px solid rgba(201, 168, 97, 0.2);
}

.navbar-brand .logo .subtitle {
	font-size: 0.7rem;
	color: var(--gold-accent);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 5px;
}

.header-logo {
	width: 200px;
	height: auto;
}

.navbar-nav .nav-link {
	color: #3D1F1F;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.7rem; /* Tamanho da fonte reduzido novamente */
	transition: color 0.3s ease;
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
	margin-left: 30px;
}

.navbar-nav .nav-link:hover {
	color: var(--gold-main);
	border-bottom-color: var(--gold-main);
}

.navbar-toggler {
	border-color: rgba(0,0,0,0.1);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(61, 31, 31, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hours {
	position: relative;
	color: #3D1F1F;
	margin-left: 30px;
}

.hours i {
	cursor: pointer;
	font-size: 1.2rem;
	color: #3D1F1F;
}

.hours-dropdown {
	position: fixed;
	top: 160px; /* Posição abaixo do botão 'Place Your Order' */
	right: 25px;
	background-color: var(--primary-bg);
	padding: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	border: 1px solid rgba(201, 168, 97, 0.2);
	width: 220px;
	color: #3D1F1F;
	z-index: 1001; /* Garante que fique sobre outros elementos */
}

#hero {
	position: relative;
	min-height: 600px; /* Altura mínima para o hero */
	height: auto; /* Permite que a altura se ajuste ao conteúdo, se houver */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.video-background video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

#hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: -1;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
	color: var(--white-color);
}

section {
	padding: 35px 0;
}

section h2 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 60px;
	color: var(--gold-accent);
	text-transform: uppercase;
	letter-spacing: 3px;
}

#about p {
	font-size: 1.2rem;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
	text-align: left; /* Alinha o texto à esquerda na coluna */
	color: #3D1F1F;
}

/* .about-container, .about-gallery, #menu .menu-categories, .contact-container foram removidos pois agora são controlados pelo Bootstrap */

.about-icon {
	text-align: center;
}


.about-icon-card .about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.about-icon-card {
	width: 250px;
	height: 250px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	overflow: hidden;
}

.about-gallery .img-fluid {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: .75rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-gallery .img-fluid:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	border-color: var(--gold-main);
}


.category-card {
	height: 175px; /* Reduzido pela metade */
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #3D1F1F; /* Cor do texto dos cards ajustada para o fundo claro */
	text-shadow: none; /* Removido text-shadow para um visual mais clean */
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	border: 2px solid transparent;
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7); /* Fundo branco suave para os cards */
	z-index: 0;
	transition: background-color 0.4s ease;
}

.category-card::after { /* Removido o gradiente */
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent; /* Torna o gradiente transparente */
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	border-color: var(--gold-main);
}

.category-card:hover::before {
	background-color: rgba(255, 255, 255, 0.15);
}

.category-card:hover::after {
	background: transparent;
}

.category-card i {
	/* Este estilo não será mais usado diretamente, mas mantido para fallback ou outros ícones */
	font-size: 4.5rem;
	color: var(--white-color);
	text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
	position: relative;
	z-index: 1;
}

.category-card .menu-emoji {
	font-size: 4.5rem; /* Tamanho do emoji */
	line-height: 1; /* Garante que o emoji não tenha espaçamento extra */
	color: var(--gold-main); /* Cor do emoji, se aplicável, ou dourado para contraste */
	text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
	position: relative;
	z-index: 1;
}

.category-card h3 {
	font-size: 1.2rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
	margin-top: 20px;
}

#location #map iframe {
	height: 450px;
	width: 100%;
	border-radius: 12px;
	border: 2px solid var(--gold-accent);
}

#contact {
	background: linear-gradient(180deg, var(--primary-bg) 0%, #dcdcdc 100%); /* Ajustado para tons claros */
	color: #3D1F1F;
}

#contact h2 {
	color: var(--gold-accent);
}

#contact p {
	text-align: left; /* Alinha o texto da informação de contato à esquerda */
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: #3D1F1F;
	display: flex;
	align-items: center;
}

#contact p i {
	color: var(--gold-main);
	margin-right: 15px; /* Espaçamento entre o ícone e o texto */
	font-size: 1.5rem;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.contact-info {
	border-right: 1px solid rgba(201, 168, 97, 0.4); /* Linha vertical dourada */
	padding-right: 40px; /* Espaçamento para a linha não encostar no conteúdo */
}

.contact-social {
	display: flex;
	flex-direction: column; /* Coloca os links um abaixo do outro */
	align-items: flex-start; /* Alinha os itens à esquerda */
	gap: 15px; /* Espaçamento entre os links */
}

.contact-social a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--gold-main); /* Cor do texto do label ajustada para dourado */
	font-size: 1.2rem;
	font-weight: bold;
	transition: color 0.3s ease;
}

.contact-social a:hover {
	color: #3D1F1F; /* Cor do texto do label ao passar o mouse */
}

.contact-social a i {
	font-size: 1.5rem;
	color: var(--gold-main); /* Cor dos ícones das redes sociais ajustada para dourado */
	transition: color 0.3s ease, transform 0.3s ease;
	margin-right: 15px;
	width: 25px;
}

.contact-social a:hover i {
	color: #3D1F1F; /* Cor dos ícones das redes sociais ao passar o mouse */
	transform: none;
}

footer {
	background-color: var(--footer-bg);
	color: var(--light-cream);
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(201, 168, 97, 0.2);
}    
.floating-order-button {
	position: fixed;
	top: 100px;
	right: 25px;
	background-color: var(--gold-main);
	color: #3D1F1F;
	padding: 15px 25px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-order-button:hover {
	background-color: var(--gold-accent);
	transform: translateY(-2px);
}

.floating-whatsapp-button {
	position: fixed;
	bottom: 50px;
	right: 25px;
	background-color: #25D366; /* Cor oficial do WhatsApp */
	color: var(--white-color);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-whatsapp-button:hover {
	background-color: #128C7E; /* Tom mais escuro do WhatsApp */
	transform: scale(1.1);
}

.category-card-link {
	text-decoration: none;
}

#category-detail .category-header {
	margin-top: 80px;
	margin-bottom: 60px;
}

#category-detail .category-header .category-icon {
	font-size: 4rem;
	margin-bottom: 20px;
}

#category-detail .item-row {
	margin-bottom: 40px;
	align-items: center;
}

#category-detail .item-row.image-right .item-image {
	order: 2;
}

#category-detail .item-row.image-right .item-text {
	order: 1;
}

#category-detail .item-row.image-left .item-image {
	order: 1;
}

#category-detail .item-row.image-left .item-text {
	order: 2;
}

#category-detail .item-image img {
	width: 100%;
	border-radius: 12px;
	height: 300px;
}

#category-detail .item-text h3 {
	font-size: 2rem;
	color: var(--gold-accent);
}

#category-detail .item-text p {
	font-size: 1.2rem;
}

/* Mobile adjustments for category items */
@media (max-width: 767.98px) {
    #category-detail .item-row .item-text {
        order: 1 !important;
    }
    #category-detail .item-row .item-image {
        order: 2 !important;
        margin-top: 20px;
    }

    #category-detail .item-text {
        text-align: center;
    }
}