/* 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);
  }
}


/* MAIN */
.landing {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO SECTION */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  max-width: 500px;
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 30px;
}

/* BUTTON + INFO */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: #C9B37E;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.info-box {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}

/* IMAGE */
/* HERO IMAGE WRAPPER */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE CONTAINER */
.image-placeholder {
  width: 100%;
  max-width: 480px;        /* kontrollerad storlek */
  aspect-ratio: 4 / 5;    /* snygg stående proportion */
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* IMAGE ITSELF */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* behåller proportioner */
  object-position: center;
  display: block;
}

.image-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .image-placeholder {
    max-width: 320px;
  }
}

/* FEATURES */
.features {
  margin-top: 120px;
  padding: 80px 60px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;

  /* Full width */
width: 100%;
margin-left: 0;
padding-left: max(60px, calc((100vw - 1200px) / 2));
padding-right: max(60px, calc((100vw - 1200px) / 2));

  /* Dark premium background */
  background: linear-gradient(
    180deg,
    #121212 0%,
    #0b0b0b 100%
  );

  /* Softer, organic shape */
  border-radius: 48px 48px 28px 28px;

  /* Depth & softness */
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6);

  position: relative;
}



.feature .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: inline-block;

  animation: floatIcon 4s ease-in-out infinite;
}

/* Subtil float */
@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px); /* mindre rörelse */
  }
  100% {
    transform: translateY(0);
  }
}

.feature h2 {
  color: #ccc;
  font-size: 0.95rem;
}

.feature p {
  color: #ccc;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ================= BODY LAYOUT ================= */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* takes remaining space so footer sticks to bottom */
}


/* ================= INFO SECTION ================= */
.info-section {
  width: 100%;
  padding: 120px 40px;
  background: #0b0b0b; /* mörk bakgrund bakom boxen */
}

/* DARK CONTAINER BOX */
.info-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;

  background: #141414; /* mörkgrå box */
  padding: 80px 70px;

  border-radius: 32px; /* mjukare form */
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ================= TEXT ================= */
.info-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #f5f5f5; /* ljus text */
}

.info-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  color: #cfcfcf; /* mjuk grå text */
}

/* ================= IMAGE ================= */
.info-image {
  display: flex;
  justify-content: center;
}

.info-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .info-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;

    padding: 60px 35px;
    border-radius: 26px;
  }

  .info-text p {
    margin: 0 auto;
  }

  .info-image img {
    max-width: 300px;
  }
}


/* ================= HOW IT WORKS ================= */
.how-it-works {
  width: 100%;
  padding: 120px 40px;
  background: #fff;
}

.how-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.how-steps h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 40px;
  color: #000;
}

.step-card {
  display: flex;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 18px;
  background: #f7f7f7;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.step-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: #C9B37E; /* champagne gold */
  background: rgba(201,179,126,0.15);
  padding: 8px 12px;
  border-radius: 10px;
  height: fit-content;
}

.step-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.step-card p {
  font-size: 0.95rem;
  color: #555;
}

/* RIGHT IMAGE */
.how-image {
  display: flex;
  justify-content: center;
}

.how-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* ================= SCROLL ANIMATION ================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .how-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .step-card {
    text-align: left;
  }

  .how-image img {
    max-width: 300px;
  }
}


/* CTA Section */
.final-cta {
  padding: 120px 20px;
  background: linear-gradient(
    to bottom,
    rgba(201,179,126,0.12),
    rgba(255,255,255,0)
  );
}

.cta-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.cta-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(201,179,126,0.35),
    0 30px 80px rgba(0,0,0,0.25);
  animation: subtle-glow 4s ease-in-out infinite;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 99;
}

/* TEXT */
.cta-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-text p {
  max-width: 520px;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 35px;
}

/* BUTTON */
.cta-btn {
  padding: 16px 36px;
  border-radius: 40px;
  border: none;
  background: #C9B37E;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,179,126,0.5);
}

/* SUBTLE WOW EFFECT */
@keyframes subtle-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(201,179,126,0.3),
      0 30px 80px rgba(0,0,0,0.25);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(201,179,126,0.6),
      0 35px 90px rgba(201,179,126,0.35);
  }
}

/* SCROLL-IN ANIMATION */
.final-cta {
  opacity: 0;
  transform: translateY(40px);
  animation: fade-in-up 1s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .cta-image {
    margin: auto;
    width: 260px;
    height: 260px;
  }

  .cta-text h2 {
    font-size: 2.3rem;
  }
}




/* ================= 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;
  }
}
