/* ---------------- General ---------------- */
body {
  margin:0;
  padding:0;
  font-family:'Roboto', sans-serif;
  background:#fffaf8;
  color:#333;
}

/* Header Logo Animation */
.logo-text {
  font-family:'Great Vibes', cursive;
  font-size:28px;
  color:#ffd700;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------------- Hero Section ---------------- */
.contact-hero {
  text-align:center;
  padding:120px 20px;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/contact-hero.jpg') center/cover no-repeat;
  color:#fff;
}
.contact-hero h1 {
  font-family:'Playfair Display', serif;
  font-size:48px;
  margin-bottom:20px;
  animation: fadeInDown 1s ease forwards;
}
.contact-hero p {
  font-size:20px;
  margin-bottom:30px;
  animation: fadeInUp 1.5s ease forwards;
}

/* ---------------- Contact Form ---------------- */
.contact-form-section {
  display:flex;
  justify-content:center;
  padding:80px 20px;
}
#contactForm {
  width:100%;
  max-width:600px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding:40px;
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
#contactForm h2 {
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:20px;
  text-align:center;
}
#contactForm input,
#contactForm textarea {
  width:100%;
  padding:15px;
  margin-bottom:20px;
  border-radius:10px;
  border:1px solid #ccc;
  font-size:16px;
  outline:none;
  transition:0.3s;
}
#contactForm input:focus,
#contactForm textarea:focus {
  border-color:#e52e71;
  box-shadow:0 0 10px rgba(229,46,113,0.3);
}
.btn-gradient {
  width:100%;
  padding:15px;
  font-weight:bold;
  color:#fff;
  background: linear-gradient(45deg, #ff8a00, #e52e71);
  border:none;
  border-radius:50px;
  cursor:pointer;
  transition:0.4s;
}
.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow:0 10px 25px rgba(229,46,113,0.4);
}

/* ---------------- Animations ---------------- */
@keyframes fadeInDown {
  0% { opacity:0; transform:translateY(-50px); }
  100% { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  0% { opacity:0; transform:translateY(50px); }
  100% { opacity:1; transform:translateY(0); }
}

/* ---------------- Responsive ---------------- */
@media(max-width:768px){
  .contact-form-section { padding:50px 20px; }
  .contact-hero h1 { font-size:36px; }
  .contact-hero p { font-size:18px; }
}
