/* ===============================
   We Code IT • Shared Legal Styles
   Matches parent site vibe: light UI, blue gradient accents, clean cards
   =============================== */

/* Base + Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root{
  /* Brand */
  --brand: #0e7be7;
  --brand-2: #2dd4ff;

  /* Surface */
  --bg: #f7fafc;           /* light page bg */
  --card: #ffffff;         /* card bg */
  --border: rgba(15,23,42,.08);

  /* Ink */
  --ink: #0f172a;          /* slate-900 */
  --muted: #475569;        /* slate-600 */

  /* Effects */
  --radius: 16px;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --maxw: 1060px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Light-only (optional dark media) */
@media (prefers-color-scheme: dark){
  :root{
    --bg:#0b0d12; --card:#111522; --ink:#e8edf7; --muted:#a9b3c5; --border:rgba(255,255,255,.09);
    --shadow:0 10px 30px rgba(0,0,0,.25);
  }
}

body{
  margin:0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color:var(--ink);
  background:
    radial-gradient(900px 400px at 120% -10%, rgba(13,123,231,.08), transparent 40%),
    radial-gradient(800px 280px at -10% -20%, rgba(45,212,255,.10), transparent 45%),
    var(--bg);
  line-height:1.7;
}

/* Links & Buttons */
a{ color:var(--brand); text-decoration:none; }
a:hover{ text-decoration:underline; }

.button{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:10px 14px; border-radius:999px; border:1px solid var(--border);
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color:white; font-weight:600; box-shadow: var(--shadow);
}
.button:hover{ filter:brightness(1.05); text-decoration:none; transform:translateY(-1px); }

/* Header / Nav */
.site-header{
  position: sticky; top:0; z-index:40;
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  max-width:var(--maxw); margin:0 auto; padding:14px 20px;
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px;
}
.brand .logo{
  width:28px; height:28px; border-radius:8px;
  background: conic-gradient(from 180deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 4px rgba(13,123,231,.12);
}
.nav-links{
  margin-left:auto; display:flex; gap:14px; flex-wrap:wrap;
}
.nav-links a{
  color:var(--ink); padding:8px 10px; border-radius:10px; border:1px solid transparent; font-weight:600;
}
.nav-links a:hover{ background:rgba(13,123,231,.08); border-color:var(--border); text-decoration:none; }

/* Layout */
.wrap{ max-width:var(--maxw); margin:28px auto; padding:0 20px;
  display:grid; grid-template-columns: 280px 1fr; gap:24px; }
@media (max-width: 900px){ .wrap{ grid-template-columns: 1fr; } }

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.main{ padding:28px; }
.toc{ padding:20px; position: sticky; top:86px; align-self:start; }
.toc h4{ margin:0 0 10px 0; font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.14em; }
.toc ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.toc a{ display:block; padding:8px 10px; border-radius:10px; color:var(--ink); border:1px solid transparent; }
.toc a:hover{ background:rgba(13,123,231,.08); border-color:var(--border); text-decoration:none; }

/* Typography */
h1{ font-size: clamp(28px, 4vw, 40px); line-height:1.15; margin: 8px 0 10px; }
h2{ font-size: clamp(20px, 2.4vw, 28px); margin-top:26px; }
h3{ font-size: clamp(18px, 2.0vw, 22px); margin-top:18px; }
.lead{ color:var(--muted); font-size: clamp(14px, 2vw, 16px); }

.meta{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; color:var(--muted); font-size:13px;
}
.kbd{ padding:2px 8px; border:1px solid var(--border); border-radius:8px; background:rgba(2,6,23,.04); }

/* Sections */
.section{ border-top:1px dashed var(--border); padding-top:16px; margin-top:16px; }
.badge{
  display:inline-block; padding:2px 8px; font-size:12px; border:1px solid var(--border); border-radius:999px; color:var(--muted);
}

/* Lists + callouts */
ul{ padding-left: 18px; }
.callout{
  padding:14px 16px; border:1px solid var(--border); border-radius:12px; background: rgba(13,123,231,.08);
}
.note{ background: rgba(61,220,151,.10); }

/* Footer */
.site-footer{
  margin:40px auto 60px; max-width:var(--maxw); padding:12px 20px; color:var(--muted); font-size:14px;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  border-top:1px solid var(--border);
}
.small{ font-size:13px; color:var(--muted); }

/* Print */
@media print{
  .site-header, .toc, .site-footer{ display:none !important; }
  .wrap{ display:block; margin:0; }
  .card{ border:none; box-shadow:none; }
}

/* Utility */
.tagline{
  display:inline-flex; gap:.5rem; align-items:center;
  padding:6px 10px; border-radius:999px; border:1px solid var(--border);
  background:linear-gradient(90deg, rgba(13,123,231,.06), rgba(45,212,255,.06));
  font-size:12px; color:var(--muted);
}

/* Hide Privacy page TOC on small screens */
@media (max-width: 900px) {
  aside.toc {
    display: none !important;
  }
}










/* Styles from main styles.css that fit We Code IT theme */


input, textarea {
    width: 300%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #1f7a8c;
}

button {
    padding: 12px;
    background-color: #1f7a8c;
    color: white;
    border: none;
    border-radius: 0px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #136b73;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
    color: #666;
}

.contact-info a {
    color: #1f7a8c;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 30px;
    width: auto;
}

.logo-image {
    height: 30px;
    width: auto;
    cursor: pointer;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3232fd;
}

/* Active Link - Button Style */
.nav-link.active {
    background-color: #0505cd;; /* Blue background for active link */
    color: #fff; /* White text for active link */
    border-radius: 0px;
    padding: 5px 15px;
    transition: all 0.3s ease;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
}

.hamburger .bar {
    height: 3px;
    width: 30px;
    margin-left: auto;
    background-color: var(--text-color); /* Explicitly set bar color */
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger:hover {
    color: #3232fd;
}

.hamburger .bar:nth-child(1) {
    top: 25%;
}
.hamburger .bar:nth-child(3) {
    top: 75%;
}

.hamburger.active  .bar:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active  .bar:nth-child(2) {
   opacity: 0;
}

.hamburger.active  .bar:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sticky Navbar */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8); /* Light mode translucent */
    backdrop-filter: blur(10px); /* Adds blur for translucency */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Adjust padding when the navbar is sticky */
.container {
    padding-top: 80px; /* Make space for the sticky navbar */
}


/* Add padding below the navigation bar */
.container {
    padding-top: 10px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #181818;
        --text-color: #f1f1f1;
        --footer-bg: #101010;
        --footer-text: #b0b0b0;
        --light-grey: #7e7c7c;
        --dark-grey: #2b2a2a;
        --bg-color-white: #ffffff;
    }

    .sticky {
        background-color: rgba(24, 24, 24, 0.8); /* Dark mode translucent */
    }
}

/* Container Layout */
.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
    
}

.left-column, .right-column {
    flex: 1;
    padding: 20px;
}

/* Typography with Gradient Text */
h1, p.gradient-text {
    font-size: 7.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #3232fd, #fa25fa);
    background-clip: text;
    color: transparent;
}

h2, p.gradient-text {
    font-size: 6.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #3232fd, #fa25fa);
    background-clip: text;
    color: transparent;
}

p.gradient-text {
    font-size: 3rem;
    margin-bottom: 20px;
}


p.subtitle-text {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.modern-button {
    background-color: #3232fd; 
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.modern-button:hover {
    background-color: #fa25fa;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.modern-button:active {
    transform: scale(0.98);
}

/* Right Column Layout */
.right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    background-color: var(--light-grey); /* Light grey background for right section */
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.center-sub-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 20px;
    justify-content: center; /* Centers content vertically (optional) */
    text-align: center; /* Ensures the text is centered */
}

.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 20px;
    padding-left: 20px;
    justify-content: center; /* Centers content vertically (optional) */
    text-align: center; /* Ensures the text is centered */
}

.marketing-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 60px;
    justify-content: center; /* Centers content vertically (optional) */
    text-align: center; /* Ensures the text is centered */
    background-color: var(--dark-grey);
}

.merchant-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 60px;
    justify-content: center; /* Centers content vertically (optional) */
    text-align: center; /* Ensures the text is centered */
    background-color: var(--dark-grey);
  
}

/* Smartphone Image with 70% of Screen Height */
.app-image {
    height: 70vh;
    width: auto;
    border-radius: 10px;
}

/* Store Buttons Centered */
.store-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.store-logo {
    width: 300px;
    height: auto;
    cursor: pointer;
}

/* Add Space on Mobile View */
@media (max-width: 768px) {

    .logo-image {
        height: 30;
        width: auto;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu-wrapper {
        position: absolute;
        top: 50px;
        right: 0;
        width: 50%;
        background-color: rgba(255, 255, 255, 0.9); /* Light mode translucent */
        backdrop-filter: blur(10px); /* Adds blur effect */
        height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: height 0.3s ease;
    }

    @media (prefers-color-scheme: dark) {
        .nav-menu-wrapper {
            background-color: rgba(24, 24, 24, 0.9); /* Dark mode translucent */
        }
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    /* Make nav visible when active */
    .nav-menu-wrapper.active {
        height: 200px; /* Adjust as per your needs */
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .container {
        flex-direction: column;
    }

    .left-column, .right-column {
        padding: 40px;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .left-column {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .right-column {
        width: 100%;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 3.0rem;
    }

    .app-image {
        margin: 0 auto;
    }

    p.gradient-text {
        font-size: 2.5rem;
    }

    p.subtitle-text {
        font-size: 2.5rem;
    }

    p.marketing-gradient-text {
        font-size: 2.5rem;
    }

    .store-buttons {
        flex-direction: column; /* Stack vertically on smaller screens */
    }
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--footer-text);
}

.footer-column p, .footer-column ul {
    font-size: 1rem;
    color: var(--footer-text);
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--footer-text);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 0.9rem;
}
