/* 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);
  }
}


/* ===== ABOUT SECTION BACKGROUND ===== */
.about-section {
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(201,179,126,0.25),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(201,179,126,0.18),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      #faf9f6,
      #ffffff
    );
  overflow: hidden;
}

/* Subtle floating light effect */
.about-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(201,179,126,0.15),
    transparent 70%
  );
  animation: floatGlow 20s linear infinite;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(80px, 60px); }
  100% { transform: translate(0, 0); }
}

/* ===== CARD ===== */
.about-card {
  position: relative;
  max-width: 1100px;
  margin: auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  z-index: 1;
}

/* ===== IMAGE ===== */
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== TEXT ===== */
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}





/* ================= 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;
  }
}

