/* -----------------------------------------------
   HER BEAUTY BY LUBNA — CONTACT PAGE THEME
   Elegant dark background with gold accents
------------------------------------------------*/

body {
  font-family: "Poppins", sans-serif;
  background-color: #1a0f0d; /* deep plum */
  color: #f5e7b2; /* soft gold */
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Container */
.contact-section {
  max-width: 750px;
  margin: 4rem auto;
  background: linear-gradient(145deg, #24120f, #1a0f0d);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(245, 217, 138, 0.2);
  text-align: center;
  transition: all 0.4s ease;
}

.contact-section:hover {
  box-shadow: 0 0 40px rgba(245, 217, 138, 0.35);
}

/* Heading */
.contact-section h2 {
  color: #f5d98a;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  font-size: 0.95rem;
  color: #f8eec9;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 217, 138, 0.3);
  background: #2c1a17;
  color: #f5e7b2;
  font-size: 1rem;
  resize: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f5d98a;
  box-shadow: 0 0 8px rgba(245, 217, 138, 0.4);
}

/* Submit button */
.contact-form button {
  background: #f5d98a;
  color: #1a0f0d;
  font-weight: 600;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #fff2b2;
  transform: scale(1.03);
}

/* Contact info block */
.contact-info {
  margin-top: 2.5rem;
  color: #f5e7b2;
  text-align: center;
  font-size: 1rem;
}

.contact-info p {
  margin: 0.3rem 0;
}

.contact-info a {
  color: #f5d98a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #fff2b2;
}

.contact-info .socials {
  margin-top: 1rem;
}

.contact-info .socials a {
  margin: 0 0.5rem;
  font-size: 1.4rem;
  color: #f5d98a;
}

.contact-info .socials a:hover {
  color: #fff2b2;
}
/* -----------------------------------------------
   HER BEAUTY BY LUBNA — NAVBAR & FOOTER STYLING
   Elegant dark layout with gold accents
------------------------------------------------*/

/* NAVBAR */
header {
  background: #1a0f0d;
  box-shadow: 0 2px 10px rgba(245, 217, 138, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5d98a;
  letter-spacing: 1px;
}

.logo span {
  color: #fff2b2;
  font-weight: 400;
  font-style: italic;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #f5e7b2;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f5d98a;
}

/* Active link underline */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #f5d98a;
  border-radius: 2px;
}

/* FOOTER */
footer {
  background: #1a0f0d;
  color: #f5e7b2;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(245, 217, 138, 0.15);
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #1a0f0d;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1.5rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar {
    flex-direction: column;
  }
}
