/* Tema visual complementar ao Bootstrap */
/* Variaveis de cor para manter o tema egipcio padronizado */
:root {
  --sand: #f5dced86;
  --sand-strong: #da9012;
  --gold: #d4a63c;
  --brown: #4d3623;
  --dark: #1f1711;
}

/* Faz a rolagem ficar suave ao clicar nos links do menu */
html {
  scroll-behavior: smooth;
}

/* Estilo geral do corpo da pagina */
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--sand);
  color: var(--brown);
}

/* Titulos com fonte diferente para criar destaque visual */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

/* Aparencia do cabecalho fixo */
.site-header {
  background: rgba(245, 220, 220, 0.96);
  backdrop-filter: blur(8px);
}

.site-title,
.hero-title {
  color: var(--brown);
}

.site-label,
.section-mark,
.section-mark-light {
  letter-spacing: 0.18rem;
}

/* Estilo padrao dos links do menu */
.site-header .nav-link {
  color: var(--brown);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  background-color: var(--sand-strong);
  color: var(--brown);
}

/* Container do menu hamburguer para celular */
.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

/* Botao hamburguer desenhado com tres linhas */
.mobile-menu-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(77, 54, 35, 0.15);
  border-radius: 0.9rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
}

.mobile-menu-button span {
  width: 22px;
  height: 2px;
  background-color: var(--brown);
  display: block;
}

/* Painel suspenso que aparece quando o menu e aberto */
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 220px;
  padding: 0.75rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 20;
}

.mobile-menu-panel .nav-link {
  text-align: center;
}

/* Fundo especial da secao principal */
.hero-section {
  background: linear-gradient(135deg, #f8f1e3 0%, #ead7b0 100%);
}

.hero-badge {
  background-color: #f7bd00;
  color: #13117a;
}

.hero-card,
.custom-card,
.curiosity-card,
.contact-card {
  border-radius: 1rem;
}

/* Padroniza como as imagens devem preencher seus espacos */
.hero-image,
.tourism-image,
.gallery-image {
  object-fit: cover;
}

.hero-image {
  height: 320px;
}

.tourism-image {
  height: 220px;
}

.gallery-image {
  height: 220px;
  width: 100%;
}

/* Pequenos cards de numeros da primeira secao */
.info-box {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(77, 54, 35, 0.08);
  border-radius: 1rem;
  padding: 1rem;
}

.section-light {
  background-color: var(--sand);
}

.section-dark {
  background: linear-gradient(180deg, #2b1f17 0%, #1f1711 100%);
}

.gallery-section {
  background: linear-gradient(180deg, #f5ecdc 0%, #efe0c1 100%);
}

/* Efeito simples para destacar cards e imagens ao passar o mouse */
.custom-card,
.curiosity-card,
.contact-card,
.info-box,
.gallery-image {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-card:hover,
.curiosity-card:hover,
.gallery-image:hover,
.info-box:hover {
  transform: translateY(-4px);
}

.contact-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 166, 60, 0.2);
}

/* Estilo do rodape */
.footer-section {
  background-color: #120d09;
  color: #f3dfbf;
}

.footer-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover,
.footer-link:focus {
  color: #f6d37a;
}

/* Ajustes especificos para telas pequenas */
@media (max-width: 767.98px) {
  .hero-image {
    height: 260px;
  }
}