/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Tipografia e Fundo Geral ===== */
body {
  font-family: 'Georgia', serif;
  background-color: #f9f4ef;
  background-image: url('https://www.transparenttextures.com/patterns/fabric-of-squares.png'); /* textura sutil tipo linho */
  color: #3e2f1c;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Container Padrão Centralizado ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}


/* TOPBAR */
.topbar-container {
  background-color: #102542;
  color: #fff;
  font-size: 1rem;
  padding: 10px 12px;
  border-bottom: 2px solid gold;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

.left-contact small,
.left-contact a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
}

.left-contact i {
  margin-right: 5px;
  color: gold;
}

.social-link i {
  color: gold;
  transition: color 0.3s;
}

.social-link:hover i {
  color: white;
}

/* Frase rolante */
.scrolling-text {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.scrolling-text-inner {
  display: inline-block;
  animation: scroll-left 10s linear infinite;
  color: gold;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ===============================
   HEADER GERAL
================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000; /* para ficar acima do conteúdo */
  background: linear-gradient(to right, #a67c00, #f0c94d, #a67c00);
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, padding 0.3s ease;
}

/* ===============================
   CONTEÚDO DO HEADER
================================= */
.header-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
}

/* ===============================
   LOGO E TÍTULO
================================= */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}

.site-logo {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.site-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #102542;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.site-highlight {
  color: yellow;
 


    
}
.logo-container {
  position: relative;
  transition: transform 0.3s ease;
}

/* Classe aplicada ao rolar, desloca o logo para baixo */
.logo-container.scrolled {
  transform: translateY(20px);
}
/* ===============================
   NAVEGAÇÃO DESKTOP
================================= */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #102542;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.main-nav a:hover {
  color: goldenrod;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li {
  padding: 10px;
}

.dropdown a {
  display: block;
  padding: 8px 15px;
  color: #102542;
}

.dropdown a:hover {
  background-color: #f8f8f8;
  color: goldenrod;
}

/* ===============================
   BLOCO DE CONTATO E BUSCA
================================= */
.nav-and-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-search-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Contato */
.text-and-phone {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #102542;
  min-width: 180px;
}

.contact-label {
  font-size: 0.8rem;
  color: #666;
}

.contact-phone-text {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

/* Ícone animado */
.phone-icon {
  color: white;
}

.animate-phone {
  animation: vibrate 0.5s infinite;
}

@keyframes vibrate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* Campo de busca */
.search-icon {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff;
}

#search-field {
  border: none;
  outline: none;
  padding: 5px;
  width: 130px;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #102542;
  transition: color 0.3s;
}

.search-button:hover {
  color: goldenrod;
}

/* ===============================
   MENU HAMBÚRGUER 
================================= */
/* Botão Hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animação do botão ao abrir */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Menu Mobile Lateral */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -250px; /* Fora da tela */
  width: 250px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 0 0 0 8px;
  transition: right 0.4s ease;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.nav-mobile.active {
  right: 0;
  display: flex;
  transform: translateX(0);
  opacity: 1;
}

.nav-mobile a {
  color:#ab9103;
  text-decoration: none;
  padding: 1rem 0;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-mobile a:hover {
  color: #ffcc00;
  background-color: rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-desktop {
    display: none;
  }
}
/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  ); /* degradê suave */
  backdrop-filter: blur(4px); /* leve efeito de desfoque */
  z-index: 999; /* acima do conteúdo, abaixo do menu */
  opacity: 0;
  pointer-events: none; /* evita clique quando não está ativo */
  transition: opacity 0.3s ease;
  border-radius: 0; /* pode colocar um leve arredondamento, se quiser */
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all; /* ativa cliques */
}
/* ===============================
   RESPONSIVIDADE
================================= */
@media (max-width: 768px) {
  .topbar-container {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .nav-and-contact {
    display: none !important;
  }

  .nav-mobile,
.nav-overlay {
  display: none; 
}

  .header-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px;
  }

  .logo-area {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .site-title {
    font-size: 1.4rem;
  }
}
.nav-mobile.active,
.nav-overlay.active {
  display: block; /* ou flex, se for o caso */
}
.nav-mobile a.active {
  color: #ffcc00; /* cor amarela neon */
  font-weight: 700;
  background-color: rgba(255, 215, 0, 0.1); /* leve fundo para destacar */
  border-radius: 4px;
  transition: background-color 0.3s ease;
}


/* Estilo para o submenu dropdown dentro do menu mobile */
.nav-mobile .dropdown-mobile {
  list-style: none;
  padding-left: 1.2rem;
  margin-top: 0.3rem;
  border-left: 2px solid #ffd700; /* borda dourada */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 1rem;
  color: #333;
}

/* Quando submenu estiver ativo/aberto */
.nav-mobile .dropdown-mobile.show {
  max-height: 500px; /* altura suficiente para mostrar os itens */
}

/* Links do submenu */
.nav-mobile .dropdown-mobile li a {
  display: block;
  padding: 0.4rem 0;
  color: #444;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-mobile .dropdown-mobile li a:hover {
  color: #ffd700;
}

/* Botão que abre o submenu */
.submenu-toggle {
  background: none;
  border: none;
  font-weight: 600;
  color: #ab9103;
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0.7rem 0;
  position: relative;
}

/* Seta para baixo no botão do submenu */
.submenu-toggle::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* Quando submenu aberto, gira a seta */
.submenu-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}


/* ===== Royal Carousel ===== */
.royal-carousel {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background-color: #000;
  font-family: 'Playfair Display', serif;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.carousel-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.carousel-caption {
  color: #fff;
  max-width: 900px;
  padding: 0 30px;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  animation: fadeInUp 1.5s ease forwards;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.carousel-caption h1 span {
  color: #ffd700; /* ouro */
}

.carousel-caption p {
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: #eee;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botões de navegação */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(184, 134, 11, 0.7);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 0 15px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-control:hover,
.carousel-control:focus {
  background-color: #ffd700;
  color: #000;
  box-shadow: 0 0 10px #ffd700;
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}
/* ===== Royal Carousel: Estilo Mobile ===== */
@media (max-width: 768px) {
  .royal-carousel {
    height: 50vh; /* ocupa a altura da tela */
	position: relative; /* importante para as setas absolutas */
  }
.royal-carousel img {
  width: 100%;
  height: 50vh; /* Aumenta a altura da imagem */
  object-fit: cover; /* Preenche a área sem distorcer (pode cortar a imagem) */
}
  .carousel-slide {
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 20px 80px; /* espaço interno */
    gap: 15px; /* espaçamento entre elementos */
  }

  .carousel-caption {
    padding: 0 15px;
    text-shadow: 0 0 12px rgba(0,0,0,0.7);
  }

  .carousel-caption h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .carousel-caption p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 20px;
  }

  .carousel-control {
    position: absolute; 
    bottom: 30px;
    background-color: rgba(199, 169, 2, 0.8);
    color: #222;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(199, 169, 2, 0.7);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .carousel-control:hover {
    background-color: rgba(199, 169, 2, 1);
  }

  .carousel-control.prev {
    left: 20px;
  }

  .carousel-control.next {
    right: 20px;
  }
}


/* ===== Prayer Video Section ===== */
.prayer-video-section {
  padding: 50px 20px;
  background-color: transparent; /* fundo transparente para harmonizar */
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #d1ae43; /* dourado médio padrão para textos */
}

.prayer-video-section h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #c7a902; /* ouro brilhante */
  text-shadow: 2px 2px 12px rgba(255, 215, 0, 0.8);
  font-weight: 700;
  letter-spacing: 0.12em;
  animation: fadeInUp 1.8s ease forwards;
}

.prayer-video-section h2 span {
  color: #ffd700; /* dourado vivo para destaque */
  text-shadow: 0 0 15px #ffd700;
}

/* Parágrafos com espaçamento elegante */
.prayer-video-section p {
  font-size: 1.25rem;
  margin: 0 auto 30px auto;
  max-width: 720px;
  font-weight: 300;
  font-style: italic;
  color: #d1ae43;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
  animation: fadeInUp 2.2s ease forwards;
}

/* Wrapper responsivo do iframe com sombra suave e bordas arredondadas */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 40px auto;
  border: 2px solid #FFD700; /* amarelo ouro */
  border-radius: 16px;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD70080
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Animação suave para fade + subida */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 600px) {
  .prayer-video-section h2 {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }

  .prayer-video-section p {
    font-size: 1rem;
    max-width: 90%;
  }
}
/* Container base */
.section-gurdwara-intro {
  background: linear-gradient(135deg, #1e1b18, #3e362c);
  color: #f5e6c4;
  padding: 80px 10vw;
  font-family: 'Playfair Display', serif;
  box-shadow: inset 0 0 60px rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  margin: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

/* Grid layout */
.gurdwara-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Imagens */
.gurdwara-images {
  flex: 1 1 70%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.9);
  background: #2a241b;
  max-width: 600px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.gurdwara-images .image-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 0.6s ease;
  border-radius: 20px;
}

.gurdwara-images .image-overlay {
  position: absolute;
  top: 58%;
  left: 65%;
  width: 35%;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.95);
  border: 4px solid #c7a902;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.6s ease;
  z-index: 1;
}

.gurdwara-images .image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(1.2);
  border-radius: 18px;
}

/* Hover effects */
.gurdwara-images:hover .image-main img {
  transform: scale(1.07);
}

.gurdwara-images:hover .image-overlay {
  transform: translateX(-20px) translateY(-20px) scale(1.07);
}

/* Texto e tipografia */
.gurdwara-content .subtitle {
  font-size: 1.3rem;
  color: #d9b84c;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  text-shadow: 0 0 10px #ffd700bb;
}

.gurdwara-content .title {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: #ffd700;
  text-shadow:
    0 0 12px #ffd700dd,
    0 0 28px #ffdc33dd,
    0 0 40px #ffdc33ff;
  line-height: 1.1;
  max-width: 850px;
}

.about-text-content p {
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 400;
  color: #f5e6c4;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  max-width: 850px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 800;
  margin: 60px 0 20px;
  color: #f9d85d;
  text-shadow: 0 0 15px #f9d85dcc;
  border-bottom: 3px solid #f9d85d;
  padding-bottom: 8px;
  font-family: 'Playfair Display', serif;
  max-width: 850px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 850px;
}

.service-list li {
  background: rgba(255, 215, 0, 0.18);
  padding: 14px 20px;
  border-radius: 20px;
  font-weight: 700;
  color: #fff4b8;
  box-shadow: 0 0 12px #ffd700aa inset;
  transition: background-color 0.3s ease;
}

.service-list li:hover {
  background: #ffd700;
  color: #3a2f00;
  cursor: default;
}

.about-text-content a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-text-content a:hover {
  color: #ffec70;
  text-decoration: none;
}

/* Responsividade */
@media (max-width: 900px) {
  .section-gurdwara-intro {
    padding: 60px 5vw;
    border-radius: 20px;
    margin: 60px 10px;
  }

  .gurdwara-grid {
    flex-direction: column;
    gap: 40px;
  }

  .gurdwara-images {
    max-width: 100%;
    aspect-ratio: auto;
  }

  .gurdwara-images .image-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 80%;
    margin: 20px auto 0;
    border: 3px solid #c7a902;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.8);
  }

  .gurdwara-images .image-main img,
  .gurdwara-images .image-overlay img {
    height: auto;
  }

  .gurdwara-content .title {
    font-size: 2.8rem;
  }

  .about-text-content p,
  .section-heading,
  .service-list {
    max-width: 100%;
  }
}

/* === Seção geral dos projetos === */
.projects-section {
  background: #121212; /* Fundo escuro para destacar cores e brilho */
  padding: 60px 20px;
  font-family: 'Playfair Display', serif; /* Elegante e sofisticado */
  color: #f4f1de; /* Off-white suave para contraste */
}

/* Container centralizado com largura máxima */
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  
}
.project-text {
  padding: 15px 10px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  font-size: 1rem;
  color: #f4f1de;
  line-height: 1.6;
  box-shadow: inset 0 0 10px rgba(199, 169, 2, 0.2);
}

.project-text p {
  margin: 10px 0;
}

.project-text strong {
  color: #fff8a6;
}

/* === Layout lateral imagem + texto para cada projeto === */
.project-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}

.project-image-side {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(199, 169, 2, 0.4);
  filter: brightness(0.9);
  transition: transform 0.4s ease;
  width: 100%;
}

.project-image-side:hover {
  transform: scale(1.03);
  filter: brightness(1);
}

.project-description {
  flex: 1 1 300px;
  color: #f4f1de;
  font-family: 'Playfair Display', serif;
}

.project-description h4 {
  font-size: 2.4rem;
  color: #c7a902;
  text-shadow: 0 0 8px #c7a902;
  margin-bottom: 15px;
}

.project-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
/* Inversão da ordem para artigos pares */
.project-row.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .project-row.reverse {
    flex-direction: column;
  }
}

/* === Responsivo: empilha imagem + texto no mobile === */
@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
    text-align: center;
  }

  .project-image-side {
    max-width: 100%;
  }

  .project-description {
    padding: 0 10px;
  }
}


/* === Cabeçalho da seção de projetos === */
.projects-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.projects-header .subtitle {
  color: #c7a902; /* Dourado glamouroso */
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 0 8px #c7a902;
}

.projects-header .title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #f4f1de;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  text-shadow: 0 0 15px #c7a902, 0 0 20px #fff8a6;
  line-height: 1.1;
}

/* === Grid responsivo dos cards de projeto === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* === Card individual do projeto === */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #1f1f1f;
  box-shadow: 0 10px 30px rgba(199, 169, 2, 0.7);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1; /* para manter sobre o ::before */
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(199, 169, 2, 0.9);
}

/* === Imagem do projeto dentro do card === */
.project-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.08);
  filter: brightness(1);
}

/* === Overlay com texto e efeito degrade dourado === */
.project-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 20px;
  background: linear-gradient(180deg, transparent, rgba(199, 169, 2, 0.85));
  color: #fff;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none; /* para não atrapalhar clique */
}

.project-card:hover .project-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* === Link clicável dentro do overlay === */
.project-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.project-link:hover {
  color: #c7a902;
  text-shadow: 0 0 8px #c7a902;
}

/* === Título do projeto dentro do overlay === */
.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #c7a902;
}

/* === Categoria do projeto dentro do overlay === */
.project-category {
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.5px;
  color: #fff8a6;
  text-shadow: 0 0 4px #c7a902;
}

/* === Efeito de brilho pulsante dourado no hover do card === */
.project-card:hover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.4), transparent 70%);
  animation: pulseGlow 3s infinite;
  border-radius: 30px;
  pointer-events: none;
  z-index: 0; /* fica atrás do conteúdo */
}

/* Animação pulsante para brilho */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* === Responsividade para telas pequenas === */
@media (max-width: 480px) {
  .projects-header .title {
    font-size: 2.4rem;
  }

  .project-image {
    height: 600px;
  }

  /* Mudanças adicionais para mobile, se quiser */
  .projects-section {
    padding: 40px 10px; /* menos padding para telas pequenas */
  }

  .projects-header {
    margin-bottom: 30px; /* espaçamento menor */
  }

  .projects-grid {
    gap: 20px; /* espaço menor entre cards */
  }

  .project-title {
    font-size: 1.2rem; /* título menor para caber melhor */
  }

  .project-category {
    font-size: 0.9rem; /* categoria menor */
  }
}


/* === Seção de Contato Glamourosa com Efeito Vidro === */
.contact-section {
 background: url("../images/contato-glamour1.jpg") no-repeat center center/cover;
  min-height: 400px;      /* se não tiver conteúdo */
  color: #333;
  padding: 80px 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Esconde a imagem por padrão */
.contact-mobile-image {
  display: none;
  width: 100%;
  margin-top: 20px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(199, 169, 2, 0.2);
  object-fit: cover;
  max-height: 300px; /* opcional, controla altura */
}

/* Mostra só em telas pequenas (exemplo até 768px) */
@media (max-width: 768px) {
  .contact-mobile-image {
    display: block;
  }
}

/* Container */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contact-title {
  font-size: 3rem;
  color: #c7a902;
  text-shadow: 0 0 8px rgba(199, 169, 2, 0.5);
  margin-bottom: 10px;
  font-weight: 900;
}

/* Descrição */
.contact-description {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
}

/* Blocos de contato */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-item {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(199, 169, 2, 0.3);
  box-shadow: 0 0 25px rgba(199, 169, 2, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(199, 169, 2, 0.4);
}

.contact-item h3 {
  color: #a88b00;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-item a {
  color: #7a6500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #c7a902;
  text-shadow: 0 0 4px #c7a902;
}

/* Formulário */
.contact-form {
  margin-bottom: 60px;
}

.contact-form form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(199, 169, 2, 0.3);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(199, 169, 2, 0.25);
  animation: flutuar 6s ease-in-out infinite;
}

/* Input com ícone */
.input-icon {
  position: relative;
  margin-bottom: 25px;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #c7a902;
}

input, textarea {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(199, 169, 2, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}

input:focus, textarea:focus {
  outline: none;
  border-color: #c7a902;
  box-shadow: 0 0 15px rgba(199, 169, 2, 0.3);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botão */
.btn-send {
  background: linear-gradient(135deg, #c7a902, #e5c100);
  color: #fff;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(199, 169, 2, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-send:hover {
  background: linear-gradient(135deg, #a88b00, #c7a902);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(199, 169, 2, 0.4);
}

/* Mapa */
.contact-map iframe {
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(199, 169, 2, 0.2);
  margin-top: 40px;
}

/* Animação */
@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .contact-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .contact-details {
    gap: 25px;
  }

  .contact-item {
    flex: 1 1 100%;
    padding: 20px;
    box-shadow: 0 0 15px rgba(199, 169, 2, 0.15);
  }

  .contact-item h3 {
    font-size: 1.1rem;
  }

  .contact-form form {
    padding: 30px 20px;
    max-width: 100%;
  }

  input, textarea {
    font-size: 0.9rem;
    padding: 12px 14px 12px 38px;
  }

  .btn-send {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
  }

  .contact-map iframe {
    width: 100%;
    height: 250px;
    margin-top: 30px;
  }
}



/* === Service Section === */
.services-section {
  background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
  color: #f5f5f5;
  padding: 60px 0;
  font-family: 'Georgia', serif;
}

.section-header .subtitle {
  font-size: 1.2rem;
  color: #d4af37; /* dourado */
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header .title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}

.service-item {
  background: #121212;
  border-left: 4px solid #d4af37;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.service-title {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.service-item p,
.service-item li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.service-item ul {
  padding-left: 20px;
}

.section-image {
  display: block;
  max-width: 100%;    /* nunca ultrapassa a largura do container */
  height: auto;       /* mantém proporção */
  margin: 30px auto;  /* centraliza a imagem com margem */
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  object-fit: cover;  /* mantém proporção e corta se necessário */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .section-image {
    max-width: 90%;
    margin: 20px auto;
  }

  .services-section {
    padding: 40px 15px;
  }
}

@media (max-width: 400px) {
  .section-image {
    max-width: 100%;
    margin: 15px auto;
  }

  .services-section {
    padding: 30px 10px;
  }
}
.services-section p {
  font-family: 'Merriweather', serif;
}
@media (max-width: 600px) {
  .services-section {
    padding: 30px 15px; /* menos padding lateral */
  }

  .section-header .subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .section-header .title {
    font-size: 2rem;
    padding-bottom: 6px;
  }

  .service-item {
    padding: 20px;
    margin-bottom: 30px;
    border-left-width: 3px;
  }

  .service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .service-item p,
  .service-item li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-item ul {
    padding-left: 15px;
  }

  .service-item img {
    border-width: 1.5px;
    border-radius: 6px;
  }
  
}

/* === Religious Service Section === */
.religious-services {
  padding: 4rem 2rem;
  background-color: #fffaf0;
  font-family: 'Georgia', serif;
  color: #4a3928;
}

.religious-container {
  max-width: 960px;
  margin: auto;
  background-color: #fdf7ed;
  border: 1px solid #e9ddc7;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 20px rgba(190, 158, 99, 0.15);
}

.religious-header h1 {
  font-size: 2.8rem;
  text-align: center;
  color: #b08d57; /* dourado claro */
  margin-bottom: 2rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.religious-body h2 {
  font-size: 1.8rem;
  color: #a67832;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.religious-body p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #5a4835;
}

.religious-body strong {
  color: #a67832;
}

.religious-body a {
  color: #c2994d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.religious-body a:hover {
  color: #8b6829;
}

.religious-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.religious-body li {
  margin-bottom: 0.5rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .religious-container {
    padding: 2rem;
  }

  .religious-header h1 {
    font-size: 2rem;
  }

  .religious-body h2 {
    font-size: 1.4rem;
  }
}

/* === Other Services Section === */
.other-services {
  padding: 4rem 2rem;
  background-color: #fffaf0; /* fundo bege claro */
  font-family: 'Georgia', serif;
  color: #4a3928;
  
}

.other-services h1 {
  font-size: 2.8rem;
  text-align: center;
  color: #b08d57; /* dourado claro */
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37; /* dourado mais intenso */
  display: inline-block;
  padding-bottom: 0.5rem;
}

.other-services h2 {
  font-size: 2.0rem;
  text-align: right;
  color: #b08d57; /* dourado claro */
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37; /* dourado mais intenso */
  display: inline-block;
  padding-bottom: 0.5rem;
 margin: 0 auto 2.5rem auto;
 display: table; /* ou block */
}

.entry-content {
  text-align: left;
}

.entry-content ul {
  display: inline-block;
  text-align: left;
}


/* Parágrafos */
.other-services p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  color: #5a4835;
  line-height: 1.6;
}

/* Links */
.other-services a {
  color: #c2994d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.other-services a:hover {
  color: #8b6829;
}

/* Tabela */
.other-services table {
  width: 100%;
  max-width: 960px;
  margin: 2rem auto;
  border-collapse: collapse;
  border: 1px solid #e9ddc7;
  background-color: #fdf7ed;
  box-shadow: 0 8px 20px rgba(190, 158, 99, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.other-services thead {
  background-color: #f5e8d4;
}

.other-services thead th {
  font-size: 1.1rem;
  text-align: left;
  padding: 1rem;
  color: #a67832;
  border-bottom: 1px solid #e1cfa6;
}

.other-services tbody td {
  padding: 1rem;
  font-size: 1rem;
  border-bottom: 1px solid #f0e6d3;
  vertical-align: top;
}

.other-services tbody tr:hover {
  background-color: #fff7e6;
  transition: background-color 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
  .other-services table,
  .other-services thead,
  .other-services tbody,
  .other-services th,
  .other-services td,
  .other-services tr {
    display: block;
    width: 100%;
  }

  .other-services thead {
    display: none;
  }

  .other-services tbody tr {
    margin-bottom: 1.5rem;
    background-color: #fdf7ed;
    padding: 1rem;
    border: 1px solid #e9ddc7;
    border-radius: 8px;
  }

  .other-services tbody td {
    border: none;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 23%;
  }

  .other-services tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    font-weight: bold;
    color: #a67832;
    width: 45%;
    white-space: nowrap;
  }
}

.keepfit-section {
  background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
  color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
}

.section-header .title {
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}

.keepfit-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.keepfit-image img {
  max-width: 500px;
  width: 100%;
  border: 3px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.keepfit-text {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.keepfit-text strong {
  color: #d4af37;
}

.keepfit-text .update-date {
  margin-top: 20px;
  color: #b0b0b0;
  font-size: 0.95rem;
  font-style: italic;
}

.karate-section {
  background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
  color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
}

.karate-section .section-header .title {
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}

.karate-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.karate-image img {
  max-width: 500px;
  width: 100%;
  border: 3px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.karate-text {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.karate-text strong {
  color: #d4af37;
}

.karate-text .update-date {
  margin-top: 20px;
  color: #b0b0b0;
  font-size: 0.95rem;
  font-style: italic;
}



/* === Education Section (estilo inspirado em Other Services) === */
.education-section {
  padding: 4rem 2rem;
  background-color: #fffaf0; /* bege claro */
  font-family: 'Georgia', serif;
  color: #4a3928;
  max-width: 100%;
  box-sizing: border-box;
}

.education-section h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #b08d57; /* dourado claro */
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37; /* dourado mais intenso */
  display: inline-block;
  padding-bottom: 0.5rem;
}

.education-section h2 {
  font-size: 2rem;
  color: #b08d57; /* dourado claro */
  margin: 0 auto 2.5rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37;
  display: table;
  padding-bottom: 0.5rem;
}

.education-container {
  max-width: 960px;
  margin: auto;
  background-color: #fdf7ed;
  border: 1px solid #e9ddc7;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 20px rgba(190, 158, 99, 0.15);
  width: 100%;
  box-sizing: border-box;
}

.education-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #5a4835;
  line-height: 1.6;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0; /* evita aninhamento */
  padding-right: 0;
}

.education-section a {
  color: #c2994d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.education-section a:hover {
  color: #8b6829;
}

.education-section strong {
  color: #a67832;
}

/* Tabela */
.education-section table {
  width: 100%;
  max-width: 960px;
  margin: 2rem auto;
  border-collapse: collapse;
  border: 1px solid #e9ddc7;
  background-color: #fdf7ed;
  box-shadow: 0 8px 20px rgba(190, 158, 99, 0.15);
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
  box-sizing: border-box;
}

.education-section thead {
  background-color: #f5e8d4;
}

.education-section thead th {
  font-size: 1.1rem;
  text-align: left;
  padding: 1rem;
  color: #a67832;
  border-bottom: 1px solid #e1cfa6;
}

.education-section tbody td {
  padding: 1rem;
  font-size: 1rem;
  border-bottom: 1px solid #f0e6d3;
  vertical-align: top;
  color: #4a3928;
}

.education-section tbody tr:hover {
  background-color: #fff7e6;
  transition: background-color 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
  .education-section {
    padding: 3rem 1rem;
  }

  .education-container {
    padding: 2rem 1.2rem;
  }

  .education-section p {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* tabela adaptada para cards */
  .education-section table,
  .education-section thead,
  .education-section tbody,
  .education-section th,
  .education-section td,
  .education-section tr {
    display: block;
    width: 100%;
  }

  .education-section thead {
    display: none;
  }

  .education-section tbody tr {
    margin-bottom: 1.5rem;
    background-color: #fdf7ed;
    padding: 1rem;
    border: 1px solid #e9ddc7;
    border-radius: 8px;
  }

  .education-section tbody td {
    border: none;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 40%;
    text-align: left;
  }

  .education-section tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    font-weight: bold;
    color: #a67832;
    width: 35%;
    white-space: nowrap;
    font-size: 0.85rem; /* tamanho padrão para labels */
  }

  /* diminui o texto dos labels "Time" e "Location" */
  .education-section tbody td[data-label="Time"]::before,
  .education-section tbody td[data-label="Location"]::before {
    font-size: 0.80rem; /* menor que o padrão */
  }
}



/* === Gurdwara Info === */
.gurdwara-info {
  padding: 4rem 2rem;
  background-color: #fffaf0;
  font-family: 'Georgia', serif;
  color: #4a3928;
  
}

.gurdwara-info h1 {
  font-size: 2.8rem;
  text-align: center;
  color: #b08d57;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.gurdwara-info h2 {
  font-size: 2rem;
  color: #a67c32;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #d4af37;
  display: inline-block;
  padding-bottom: 0.3rem;
}
.gurdwara-info .content-wrapper > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.info-img {
  float: left;
  margin: 0 1.5rem 1rem 0;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gurdwara-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #5a4835;
}

.gurdwara-info ul {
  list-style: none;
  padding-left: 0;
}

.gurdwara-info li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.gurdwara-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37; /* dourado */
  font-weight: bold;
}


.gurdwara-info a {
  color: #c2994d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.gurdwara-info a:hover {
  color: #8b6829;
}

@media (max-width: 768px) {
  .info-img {
    float: none;
    display: block;
    margin: 0 auto 1.5rem auto;
    width: 100%;
    max-width: 100%;
  }

  .gurdwara-info h1, .gurdwara-info h2 {
    text-align: center;
  }

  .gurdwara-info ul {
    margin-left: 0;
    padding-left: 1rem;
  }
}

/* === Seção Guru Gobind Singh Ji === */
#guru-gobind-singh {
  padding: 4rem 2rem;
  background-color: #fffaf0; /* bege claro */
  font-family: 'Georgia', serif;
  color: #4a3928;
}

#guru-gobind-singh .container,
#guru-gobind-singh .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

/* Títulos principais */
#guru-gobind-singh h1 {
  font-size: 2.8rem;
  text-align: center;
  color: #b08d57;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

#guru-gobind-singh h2 {
  font-size: 2rem;
  color: #a67c32;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #d4af37;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Parágrafos */
#guru-gobind-singh p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #5a4835;
}

/* Imagem de introdução */
#guru-gobind-singh .intro img,
#guru-gobind-singh .info-img {
  float: left;
  margin: 0 1.5rem 1rem 0;
  width: 300px;
  border-radius: 8px;
  border: 2px solid #dec68b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Animação fade-in */
#guru-gobind-singh .content-wrapper > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Listas */
#guru-gobind-singh ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

#guru-gobind-singh li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #5a4835;
}

#guru-gobind-singh li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Seções com os 5 Ks */
#guru-gobind-singh .ks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

#guru-gobind-singh .k-item {
  background-color: #fffaf0;
  border: 1px solid #e5d7b3;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  flex: 1 1 180px;
  box-shadow: 0 4px 8px rgba(166, 124, 0, 0.1);
}

#guru-gobind-singh .k-item h3 {
  color: #8a6d00;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

#guru-gobind-singh .k-item img {
  margin-top: 0.5rem;
  max-width: 64px;
  height: auto;
}

#guru-gobind-singh .table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

#guru-gobind-singh table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: #fffaf0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

#guru-gobind-singh table th,
#guru-gobind-singh table td {
  border: 1px solid #e9ddc7;
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  color: #4a3928;
}

#guru-gobind-singh table th {
  background-color: #f5e6d3;
  font-weight: bold;
  border-bottom: 2px solid #d4af37;
}

#guru-gobind-singh table tr:last-child td {
  border-bottom: none;
}


/* Créditos das imagens */
#guru-gobind-singh .image-credit {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 1rem;
  color: #7a6650;
}

/* Links */
#guru-gobind-singh a {
  color: #c2994d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#guru-gobind-singh a:hover {
  color: #8b6829;
}

/* Responsivo */
@media (max-width: 768px) {
  #guru-gobind-singh .intro img,
  #guru-gobind-singh .info-img {
    float: none;
    display: block;
    margin: 0 auto 1.5rem auto;
    width: 100%;
    max-width: 100%;
  }

  #guru-gobind-singh h1,
  #guru-gobind-singh h2 {
    text-align: center;
  }

  #guru-gobind-singh .ks-list {
    flex-direction: column;
    align-items: center;
  }

  #guru-gobind-singh ul {
    padding-left: 1rem;
  }

  /* Responsividade para a tabela */
  #guru-gobind-singh .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* rolagem suave em iOS */
	max-width: 100%; /* impede expansão além da tela */
  }

  #guru-gobind-singh table {
    width: 100%;
    min-width: unset; /* remove a largura mínima que pode quebrar layout */
    font-size: 0.9rem;
	
  }

  #guru-gobind-singh table th,
  #guru-gobind-singh table td {
    padding: 0.5rem 0.75rem;
  }
   
}


.khanda-table {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.khanda-item.full {
  text-align: center;
  border-top: 1px solid #d8caaa;
  padding-top: 1rem;
}

.khanda-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.khanda-col {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 300px;
}

.khanda-col.image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.khanda-col img {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(200, 180, 120, 0.3);
}
.festival-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #fcf0c7;
  color: #5a4835;
  border: 1px solid #333;
}

.festival-table th,
.festival-table td {
  padding: 0.75rem;
  border: 1px solid #333;
  text-align: left;
}

.festival-table thead {
  background-color: #deb364;
  color: #5a4835;
}

.festival-table a {
  color: #e6bf65;
  text-decoration: underline;
}



/* === Footer Glamouroso Futurista === */
.footer.royal-glass {
  background: rgba(255, 255, 255, 0.07);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(199, 169, 2, 0.1);
  padding: 80px 20px 40px;
  color: #333;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

/* Container geral */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Colunas */
.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #c7a902;
  text-shadow: 0 0 5px rgba(199, 169, 2, 0.3);
}

/* Logo e frase */
.footer-logo h3 {
  font-size: 1.6rem;
  color: #102542;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #e3b602;
  font-weight: 400;
}

.footer-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* Links */
.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: #7a6500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #c7a902;
  text-shadow: 0 0 4px #c7a902;
}

.footer-contact i {
  margin-right: 10px;
  color: #c7a902;
}

/* Social */
.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(199, 169, 2, 0.1);
  color: #c7a902;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-btn:hover {
  background: rgba(199, 169, 2, 0.3);
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: rgba(199, 169, 2, 0.2);
  margin: 50px 0 30px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.footer-bottom a {
  color: #c7a902;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-shadow: 0 0 3px #c7a902;
}

/* Back to Top */
.back-to-top {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: #c7a902;
  display: none; /* Oculta o botão inicialmente */
  color: white;
  padding: 10px 14px;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(199, 169, 2, 0.5);
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
  background: #a88b00;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .back-to-top {
    right: 20px;
    bottom: 15px;
  }
}
@media (max-width: 480px) {
  /* Footer grid fica coluna única */
  .footer-grid {
    flex-direction: column;
    gap: 25px;
    text-align: left;
  }

  /* Colunas ocupam 100% largura */
  .footer-column {
    flex: 1 1 100%;
    min-width: auto;
  }

  /* Títulos um pouco menores */
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  /* Logo menor e centralizado */
  .footer-logo h3 {
    font-size: 1.6rem;
	color:#102542;
    margin-bottom: 8px;
  }

  /* Frase menor */
  .footer-quote {
    font-size: 1rem;
	color:#102542;
    margin-bottom: 12px;
  }

  /* Links maiores para toque */
  .footer-links a,
  .footer-contact a {
    font-size: 1rem;
  }

  /* Social links maiores e centralizados */
  .social-links {
    justify-content: center;
    gap: 15px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* Footer bottom mais espaçado */
  .footer-bottom {
    font-size: 0.85rem;
    margin-top: 15px;
  }
.back-to-top {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  bottom: 10px;
  right: 15px;
  padding: 8px 10px;
  position: fixed;
  cursor: pointer;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Quando a classe visible for adicionada, mostra o botão */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;

}
