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

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
/* ===== HEADER ===== */
/* ===== HEADER ===== */
/* ===== HEADER SLIDESHOW ===== */
.site-header {
  position: relative;
  color: white;
  text-align: center;
  padding: 80px 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Fundo com animação */
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideshow 18s infinite;
  z-index: 0;
}

@keyframes slideshow {
  0%   { background-image: url("/img_raw/header.jpeg/header1.jpg.jpg"); }
  33%  { background-image: url("/img_raw/header.jpeg/header2.jpg.jpg"); }
  66%  { background-image: url("/img_raw/header.jpeg/header3.jpg.jpg"); }
  100% { background-image: url("/img_raw/header.jpeg/header1.jpg.jpg"); }
}

.site-header h1,
.site-header p,
.lang-switch {
  position: relative;
  z-index: 2;
}


/* ===== INTRO ===== */
.intro {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
  font-size: 1.2rem;
  padding: 0 20px;
}

/* ===== GALERIAS ===== */
.gallery-section {
  padding: 50px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #007bff;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.grid-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ===== BOTÃO VER MAIS ===== */
.load-more {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin: 10px auto 40px auto;
  display: block;
}

.load-more:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Botão fechar */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #ff4d4d;
}

/* Navegação */
.lightbox .prev,
.lightbox .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 50px;
  font-weight: bold;
  color: white;
  padding: 16px;
  user-select: none;
  transition: 0.3s;
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #00c3ff;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 25px 15px;
  background: #f0f8ff;
  margin-top: 40px;
  color: #333;
  font-size: 0.95rem;
}

footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}

footer a:hover {
  text-decoration: underline;
}

/* Cabeçalho */
.site-header {
  position: relative;
  background: url("img_raw/Santorini/header.jpg") center/cover no-repeat;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Camada escura sobre a imagem */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* escurece um pouco */
  z-index: 1;
}

/* Conteúdo por cima da camada */
.site-header .header-content {
  position: relative;
  z-index: 2;
}

/* Título */
.site-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Subtítulo */
.site-header p {
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Botões de idioma */
.lang-switch button {
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-switch button:hover {
  background: #fff;
  color: #333;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

