/*
Theme Name: Baan Punsuk Final Polished Theme
Author: OpenAI
Version: 1.3
*/

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fffaf7;
  color: #333;
  scroll-behavior: smooth;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #222;
}

ul {
  text-align: left;
  max-width: 800px;
  margin: 1rem auto;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1.2s ease-in;
}

.hero-overlay {
  background-color: rgba(0,0,0,0.5);
  color: white;
  text-align: center;
  padding: 3rem;
  border-radius: 12px;
  animation: slideUp 1s ease;
}

.hero-buttons a {
  background: #c19a6b;
  color: white;
  margin: 1rem;
  padding: 1rem 2rem;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-buttons a:hover {
  background: #a0784f;
}

.site-header {
  background: #111;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav-links li a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #c19a6b;
}

.lang-switcher {
  color: white;
  font-size: 0.9rem;
}

.page-section {
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeIn 1s ease;
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  background: #c19a6b;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.float-btn:hover {
  background: #a0784f;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
