/* ============================= */
/* ==== EDIT DESIGN SYSTEM ==== */
/* ============================= */
:root {
  --color-bg: #ffffff;
  --color-section-warm: #F8F4EE;
  --color-primary: #F4A261;
  --color-primary-hover: #E76F51;
  --color-text: #2E2E2E;
  --color-text-muted: #6B6B6B;

  --radius-large: 18px;
  --radius-medium: 12px;
  --radius-small: 8px;

  --shadow-soft: 0 8px 20px rgba(0,0,0,0.06);
  --max-width: 1100px;
}

/* GLOBAL */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}


h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
p { color: var(--color-text-muted); line-height: 1.6; }

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-medium);
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: white;
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}

.nav-inner {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100%;
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 40px 20px;
  transition: 0.3s ease;
  z-index: 2000;
}

.mobile-menu.active { left: 0; }

.mobile-menu a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

/* FADE */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}


/* SCREENSHOT STYLE */
.screenshot-container {
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
}

.screenshot-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ============================= */
/* HERO SECTION                  */
/* ============================= */

.hero {
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left side */
.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Right side card */
.hero-card {
    background: var(--color-section-warm);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    padding: 30px;
    text-align: center;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 768px) {

    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
    }

}



/* ============================= */
/* LEGAL PAGE                    */
/* ============================= */

.legal-toggle {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.legal-button {
  padding: 10px 20px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-text-muted);
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.legal-button.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.legal-content h2 {
  margin-top: 40px;
}

.hidden {
  display: none;
}


/* ===== Active Nav Link ===== */
.nav-links a.active,
.mobile-menu a.active {
  position: relative;
  font-weight: 700;
  color: #2e7d32; /* Adjust to your brand color */
}

.nav-links a.active::after,
.mobile-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2e7d32; /* Same brand color */
  border-radius: 2px;
}
