@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 100px 20px 60px;
  background: linear-gradient(to bottom, #0b0b0b, #111);
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
}

/* Navbar Premium */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.navbar:hover {
  border-bottom-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: #d4af37;
  font-weight: 900;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-links li a:hover::before {
  left: 100%;
}

.nav-links li a:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nav-links li a:active {
  transform: translateY(0);
}

.nav-links li a.active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 1rem 1rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .nav-links {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .nav-links li a {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
}

/* Contact Section */
.contact-section {
  max-width: 700px;
  margin: auto;
  background: rgba(20, 20, 20, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.contact-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: gold;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.contact-section .intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
  color: #ffd700;
}

.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 10px;
  color: white;
  padding: 12px 15px;
  font-size: 1rem;
  resize: vertical;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.btn {
  background: linear-gradient(45deg, #ffd700, #ffea00);
  border: none;
  border-radius: 15px;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: linear-gradient(45deg, #ffea00, #ffd700);
  box-shadow: 0 0 25px rgba(255, 215, 0, 1);
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background: #111;
  color: #aaa;
  margin-top: 4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-section {
    padding: 30px 20px;
  }

  .contact-section h1 {
    font-size: 2.2rem;
  }
}
