/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

body {
  background: #fff;
  color: #0a0a0a;
}

/* NAVBAR */
.navbar {
  background: #0a0a0a;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

/* navbar logo */

.navbar-logo {
  color: #c9b37e; /* Champagne gold */
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  display: flex; /* ADD */
  align-items: center; /* ADD */
}

/* ADD THIS NEW RULE */
.navbar-logo img {
  height: 5rem; /* Adjust to your preference */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional: subtle hover effect */
.navbar-logo img:hover {
  transform: scale(1.05);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 880px) {
  .navbar-logo img {
    height: 5rem; /* Slightly smaller on mobile */
  }
}

/* MENU */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar-menu li a {
  color: #c9b37e; /* Champagne gold */
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.35s ease;
  position: relative;
}

/* Hover effect: lift + scale + gold glow */
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: #0a0a0a; /* Text dark */
  background-color: #d4af37; /* Brighter gold background */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6); /* Soft gold glow */
}

/* Extra glowing edges */
.navbar-menu li a:hover::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 25px;
  box-shadow: 0 0 15px 4px rgba(212, 175, 55, 0.6);
  opacity: 1;
  transition: all 0.35s ease;
  pointer-events: none;
}

/* HAMBURGER */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.bar {
  width: 28px;
  height: 3.5px;
  background: #c9b37e; /* champagne gold */
  transition: all 0.4s ease;
}

/* TOGGLE ANIMATION: perfect X */
.navbar-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media (max-width: 880px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: #000;
    width: 220px;
    padding: 25px;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 10px 0;
    transition: all 0.35s ease;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li a {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 15px;
  }

  /* Optional: simpler hover glow for mobile */
  .navbar-menu li a:hover::before {
    box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.5);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 120px 20px;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(201, 179, 126, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(201, 179, 126, 0.18),
      transparent 55%
    ),
    linear-gradient(to bottom, #faf9f6, #ffffff);
}

/* CARD */
.contact-card {
  max-width: 1100px;
  margin: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* LEFT IMAGE */
.contact-visual img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
}

/* FORM */
.contact-form h2,
.contact-success h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 20px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form textarea {
  border-radius: 20px;
  resize: none;
  height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9b37e;
  box-shadow: 0 0 0 3px rgba(201, 179, 126, 0.25);
}

/* BUTTON */
.contact-btn {
  margin-top: 15px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #c9b37e, #d4af37);
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(201, 179, 126, 0.4);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 179, 126, 0.6);
}

.contact-btn.secondary {
  background: transparent;
  border: 1px solid #c9b37e;
}

/* SUCCESS STATE */
.contact-success {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: all 0.5s ease;
  text-align: center;
}

.contact-success.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.success-image img {
  width: 120px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    text-align: center;
  }

  .contact-visual img {
    max-width: 260px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #0a0a0a; /* Black base */
  width: 100%;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05); /* subtle glossy effect */
  backdrop-filter: blur(4px); /* slight glassy/glossy feel */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Jost", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Contact email styling */
.footer p a {
  color: #c9b37e; /* Champagne gold */
  text-decoration: none;
  font-size: 1rem; /* större text */
  font-weight: 600; /* lite fylligare */
  transition: all 0.3s ease;
}

.footer p a:hover {
  color: #d4af37; /* lite ljusare guld på hover */
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Footer links */
.footer-links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li a {
  color: #c9b37e; /* Champagne gold for links */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #d4af37; /* Slightly brighter gold on hover */
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    gap: 15px;
  }
}
