/* Reset + Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Header - Transparent for home page */
header {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  padding: 20px 60px;
  z-index: 1000;
  transition: 0.4s ease;
  background: transparent;
}
header.scrolled {
  background: #111;
  padding: 15px 60px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}

/* Hamburger */
.dropdown { position: relative; }
.hamburger {
  width: 28px; height: 18px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  height: 2px; width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Dropdown */
.dropdown-content {
  position: absolute;
  top: 45px; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-15px);
  transition: 0.3s ease;
}
.dropdown-content a {
  padding: 16px 22px;
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #111;
}
.dropdown-content a:hover { background: #f4f4f4; }
.dropdown.show .dropdown-content {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}

/* Social Icons */
.social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.social-icon.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #FEDA77 0%, #F58529 25%,
    #DD2A7B 50%, #8134AF 75%,
    #515BD4 100%
  );
  color: #fff;
}
.social-icon.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #111;
}

/* Footer */
footer {
  background: #111;
  color: #777;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  width: 100%;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 60px;
  min-height: 40px;
}
.footer-content p {
  margin: 0;
  flex: 1;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 60px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c6b08a;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.social-icon:hover {
  background: #c6b08a;
  color: #111;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 25px rgba(198, 176, 138, 0.4);
  border-color: #c6b08a;
}

/* General Section */
section { padding: 120px 80px; }
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  header { padding: 20px; }
  header.scrolled { padding: 15px 20px; }
  section { padding: 80px 30px; }
  .footer-content {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  .social-links {
    position: static;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  header { padding: 15px; }
  section { padding: 60px 20px; }
  section h2 { font-size: 2rem; }
}
