/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #222;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d4af37;
}
.navbar nav a {
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar nav a:hover,
.navbar nav .active {
  color: #d4af37;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/customfurni.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeIn 2s ease forwards;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  animation: slideUp 2s ease forwards;
  margin-top: 1rem;
}

/* Optional image inside hero */
.hero-content img {
  max-width: 100%;
  border-radius: 16px;
  margin: 1.5rem 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-content img:hover {
  transform: scale(1);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

/* Hero overlay (if needed for extra darkness) */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px);}
  to { opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-content img { margin: 1rem 0; }
}

/* Contact Section */
.contact-section {
  padding: 3rem 8%;
  text-align: center;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-section p {
  margin-bottom: 2rem;
  color: #555;
}
.contact-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  outline: none;
}
.contact-form button {
  padding: 1rem;
  background: #d4af37;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.contact-form button:hover {
  background: #b9962b;
  transform: scale(1.05);
}

/* Map */
.map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* ====== Footer ====== */
footer {
  background: #111;
  color: #eee;
  padding: 2rem 8%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links a {
  display: block;
  margin: 0.3rem 0;
  color: #eee;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  text-shadow: 0 0 8px #d4af37;
}
.socials a {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.socials a:hover {
  color: #d4af37;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .contact-container {
    flex-direction: column;
  }
}
