/* ===== GLOBAL ===== */

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #F8F5F2;
  color: #4A4A4A;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 1px;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* ===== HEADER ===== */

header {
  background: #F8F5F2;
  padding: 20px 0;
  border-bottom: 1px solid #EAD7CF;
}

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

.logo {
  font-size: 1.5rem;
  color: #6B4F4F;
}

nav a {
  margin-right: 25px;
  text-decoration: none;
  color: #6B4F4F;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.6;
}

.lang-toggle {
  background: none;
  border: 1px solid #7A9E7E;
  color: #7A9E7E;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: #7A9E7E;
  color: white;
}

/* ===== HERO ===== */

.hero {
  padding: 120px 0 90px 0;
  text-align: center;
  background: linear-gradient(to bottom, #F8F5F2, #EFE8E2);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #6B4F4F;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  color: #7A7A7A;
}

/* ===== SECTION ===== */

.section {
  padding: 90px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: #6B4F4F;
}

.light {
  background: #EFE8E2;
}

/* ===== GALLERY GRID ===== */

.gallery-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Instagram-style overlay */
.gallery-item::after {
  content: "View";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== LIGHTBOX ===== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  text-align: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  margin-top: 5%;
  border-radius: 14px;
}

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

/* ===== ABOUT ===== */

#about p {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-size: 1.05rem;
  color: #555;
}

/* ===== CONTACT ===== */

form {
  max-width: 450px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input {
  padding: 14px;
  border: 1px solid #EAD7CF;
  background: white;
  border-radius: 8px;
}

button {
  padding: 14px;
  border: none;
  background: #7A9E7E;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #6B4F4F;
}

/* ===== FOOTER ===== */

footer {
  background: #F8F5F2;
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #EAD7CF;
}

