/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

/* Light and Dark Mode Themes */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --footer-bg: #1e1e1e;
    --footer-text: #e0e0e0;
    --light-grey: #7e7c7c;
    --dark-grey: #e8e8e8;
    --bg-color-white: #ffffff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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;
}


form#contact-form .form-row { margin-bottom: 14px; }
input, textarea {
  width: 150%;
  background: #333336;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: var(--placeholder); }
input:focus, textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(122,162,255,.2);
}


