@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

:root {
  --brown: #4a2f22;
  --gold: #c8a46d;
  --cream: #f8f5f2;
  --text: #333;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  margin: 0;
  color: var(--text);
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  position: relative;
  background: url('https://img01.ztat.net/article/spp-media-p1/5d84b2848e1b4d47b30f74c223d9d359/ece82ff7992545c1a5cb1a7360553d4b.jpg?imwidth=1800') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.price {
  font-size: 2rem;
  color: var(--gold);
  margin: 10px 0;
}

.cta {
  display: inline-block;
  background: var(--gold);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta:hover {
  background: white;
  color: var(--brown);
}

/* SECTIONS */
section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  color: var(--brown);
  margin-bottom: 40px;
}

/* GALLERY */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  background: var(--gold);
  border: none;
  padding: 14px;
  color: white;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: var(--brown);
}

/* FOOTER */
footer {
  text-align: center;
  background: var(--brown);
  color: white;
  padding: 30px;
  font-size: 0.9rem;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BY ELIAS badge */
.by-elias {
  position: fixed;
  bottom: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.by-elias:hover {
  background: var(--gold);
  color: var(--brown);
  transform: scale(1.05);
}