/* Espaço Galis Eventos - Estilos para Página Única */

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

/* Variáveis CSS */
:root {
  --dourado: #D4AF37;
  --dourado-claro: #FFD700;
  --preto: #000000;
  --preto-claro: #111111;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
  --transicao: all 0.3s ease;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--branco);
  background-color: var(--preto);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--dourado);
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--dourado);
}

p {
  margin-bottom: 1.5rem;
  text-align: center;
}

a {
  color: var(--dourado);
  text-decoration: none;
  transition: var(--transicao);
}

a:hover {
  color: var(--dourado-claro);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 5rem 0;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transicao);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
  background-color: var(--dourado-claro);
  color: var(--preto);
  border: none;
}

.btn:hover {
  background-color: var(--dourado);
  color: var(--preto);
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--branco);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.hero-logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--dourado);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--branco);
  margin-bottom: 2rem;
}

.hero-buttons {
  margin-top: 30px;
}

/* Sobre o Espaço */
.about {
  background-color: var(--preto);
  text-align: center;
  padding: 5rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 30px;
}

.about-buttons {
  margin-top: 30px;
}

/* Galeria */
.gallery {
  background-color: var(--preto);
  padding: 5rem 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-tab {
  padding: 10px 20px;
  margin: 0 5px 10px;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--dourado);
  border: 1px solid var(--dourado);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transicao);
}

.gallery-tab:hover,
.gallery-tab.active {
  background-color: var(--dourado);
  color: var(--preto);
}

.gallery-content {
  margin-top: 2rem;
}

.gallery-category {
  display: none;
}

.gallery-category.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transicao);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Agendamento e Datas */
.booking {
  background-color: var(--preto);
  padding: 5rem 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.booking-calendar,
.booking-form {
  background-color: var(--preto-claro);
  padding: 30px;
  border-radius: 10px;
}

.booking-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.calendar-month {
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  margin: 15px 0;
}

.calendar-nav {
  display: flex;
  align-items: center;
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--dourado);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
  text-align: center;
  padding: 10px;
}

.calendar-table th {
  font-weight: 500;
  color: var(--dourado);
}

.calendar-day {
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
}

.calendar-day:hover {
  background-color: rgba(212, 175, 55, 0.2);
}

.calendar-day.disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

/* Formulários */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--branco);
  transition: var(--transicao);
}

.form-control:focus {
  outline: none;
  border-color: var(--dourado);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: var(--branco);
  font-size: 1.8rem;
  transition: var(--transicao);
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .gallery-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-tab {
    margin-bottom: 10px;
    width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
