:root {
    --primary: #FF8A3C;
    --primary-dark: #F07422;
    --secondary: #FFF9F2;
    --background: #FDFAF7;
    --text: #2D3748;
}


/* Toast Notification */
.toast {
    visibility: hidden;
    min-width: 280px;
    background: linear-gradient(135deg, #444, #222);
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 16px 24px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 40px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out, visibility 0.4s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Show Animation */
.toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.5;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 250, 247, 0.75);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo {
    height: 32px;
    width: auto;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .business-login {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.2s ease;
}

.nav-links .business-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    min-height: 100vh;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('https://static.wixstatic.com/media/f6b4b0_4b6bbba0c0b941b9a0a8b72ad5b467cc~mv2.gif') center/cover; */
    background: url('images/background.gif') center/cover;
    opacity: 0.1;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { opacity: 0.1; }
    50% { opacity: 0.15; }
    100% { opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Social proof styles */
.social-proof {
    padding: 2rem;
    background: white;
    max-width: 900px;
    margin: -3rem auto 0;
    position: relative;
    z-index: 1500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.visible {
    animation: fadeInUp 0.8s forwards;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-number .number {
    display: inline-block;
    transform: perspective(500px) rotateX(-90deg);
    animation: flipIn 0.6s forwards;
}

@keyframes flipIn {
    to {
        transform: perspective(500px) rotateX(0);
    }
}

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    margin-top:1.5rem;
    color: var(--text);
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--primary);
    width: 100%;
}

/* Tabs text sizing */
.tab-button h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tab-button p {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.9;
}

.features {
    min-height: 100vh;
    padding: 4rem 0;
}

.feature-scroll-container {
    height: calc(100vh - 124px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-scroll-content {
    position: relative;
    width: 1200px;
    height: 80vh;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.feature-text {
    flex: 0 1 500px;
    opacity: 0;
    transform: translateY(30%);
}

.feature-text h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.9;
}

.feature-image {
    flex: 0 1 600px;
    opacity: 0;
    transform: translateY(30px);
}

.feature-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Testimonials Scroll */
.testimonials {
    padding: 8rem 2rem;
    background: var(--secondary);
    overflow: hidden;
}

.testimonial-scroll {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.testimonial-card {
    flex: 0 0 350px;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 5 - 2rem * 5));
    }
}

/* Clone testimonial cards for infinite scroll */
.testimonial-track {
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.feature-mockup {
    flex: 1;
    text-align: center;
}

.feature-mockup img {
    max-width: 300px;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-details {
    flex: 1;
    display: grid;
    gap: 2rem;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    background: var(--secondary);
    width: 100%;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.testimonial-content cite {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

.user-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Business Section */
.business {
    padding: 8rem 2rem;
    background: white;
    width: 100%;
    text-align: center;
}

.business-cta-container {
    width: 100%;
    text-align: center;
    margin-top: 4rem;
}

.business-cta {
    display: inline-block;
    text-align: center;
    background: var(--primary);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
}

.business-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.business h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.business-features {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.business-card {
    text-align: center;
    padding: 2rem;
}

.business-card img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.business-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Download Prompt */
.download-prompt {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    width: 100%;
}

.prompt-content {
    max-width: 800px;
    margin: 0 auto;
}

.prompt-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.prompt-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 4rem 2rem 2rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Add smooth reveal animations for all sections */
.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Beta Signup Styles */
.beta-signup {
    margin-top: 2rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.beta-note {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    background: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.beta-note-container,
.signup-form {
    transition: all 0.5s ease;
    opacity: 1;
    max-height: 200px;
    overflow: hidden;
}

.beta-note-container.hidden,
.signup-form.hidden {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.signup-form input[type="email"],
.extended-form input[type="text"],
.extended-form select {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-size: 1rem;
}

.signup-form input[type="email"]::placeholder,
.extended-form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.extended-form select {
    color: var(--text);
    background: white;
    cursor: pointer;
}

.signup-form button,
.extended-form button {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #000000;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 140px;
}

.signup-form button:hover,
.extended-form button:hover {
    background: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.extended-form {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
    opacity: 0;
}

.extended-form.visible {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.extended-form-title {
    color: var(--text);
    margin: 1rem 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.5;
}

.extended-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    
}

.form-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}


/* Add smooth scrolling to html */
html {
    scroll-behavior: smooth;
}

.feature-tabs {
    max-width: 1400px;
    width: 65%;
    margin: 0 auto;
    display: flex;
    gap: 8rem;
    align-items: flex-start;
    padding: 2rem;
    justify-content: center;
}

.tabs-container {
    flex: 0 1 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tab-button {
    background: white;
    border: 2px solid transparent;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.tab-button:hover {
    transform: translateX(10px);
}

.tab-button.active {
    border-color: var(--primary);
    background: var(--secondary);
}

.tab-content {
    flex: 0 1 500px;
    position: relative;
    min-height: 700px;
    display: flex;
    justify-content: center;
}

.tab-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tab-image.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.tab-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


/* Discovery Section */
.discover {
    padding: 8rem 2rem;
    background: var(--background);
}

.discover h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text);
}

.discover-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    padding: 1rem;
}

.discover-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.discover-card:hover {
    transform: translateY(-5px);
}

.discover-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.discover-content p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.promo-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.promo-card {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
}

.promo-tag {
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-card h4 {
    color: var(--primary);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.promo-card p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
}

.promo-card.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

.promo-card.full-width h4 {
    font-size: 1.4rem;
}

/* Burger menu button */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Hide burger menu by default */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.burger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {

    .feature-tabs {
        width: 400px;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .tabs-container {
        flex: none;
        width: 100%;
    }

    .tab-button  {
        cursor: default;
        transform: none !important;
        opacity: 1;
        background: white;
        padding: 1.5rem;
    }

    .tab-button:hover {
        transform: none !important;
    }
    .tab-image.active {
        position: relative;
        top: 0;
        
    
    }

    .business-features {
        grid-template-columns: 1fr;
    }

    .feature-mockup img {
        max-width: 250px;
    }

    .footer-content {
        text-align: center;
    }
    .footer-brand{
        display: inline-flex;
        justify-content: center;
        text-align: center;
    }

    #the-style{
        display: inline-flex;
        padding-left: 20%;
    }

    .footer-brand.img{
        padding-left: 20%;
    }
    .footer-links {
        align-items: center;
    }

    .hero{
        width: 100vw;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .social-proof {
        padding: 1.5rem;
        margin-top: -2rem;
    }

    .stat-number {
        font-size: 2rem;
    }


    .signup-form, 
    .form-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .signup-form input[type="email"],
    .signup-form button,
    .extended-form input[type="text"],
    .extended-form select,
    .form-submit button {
        width: 100%;
        max-width: 100%;
    }

    .extended-form {
        width: 100%;
    }

    .extended-form-fields {
        padding: 0;
    }

    .form-row {
        margin-bottom: 0.5rem;
    }

    .extended-form-title {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .beta-note {
        width: auto;
        display: block;
        margin: 0 auto 1rem;
    }

    .form-submit {
        width: 100%;
        padding: 0;
    }

    .form-submit button {
        width: 100%;
        margin: 1rem 0;
    }
    .extended-form.visible {
        max-height: 900px;
    }

    .section-title {
        font-size: 2.5rem;
        margin: 1rem 0;
    }

    .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .features {
        padding: 2rem 0;
    }
    .discover {
        padding: 4rem 1rem;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }

    .discover h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .discover-card {
        padding: 1.5rem;
    }

    .discover-content h3 {
        font-size: 1.5rem;
    }

    .promo-examples {
        grid-template-columns: 1fr;
    }
    .body{
        width: 100vw;
    }
    .burger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px; /* Adjust based on your navbar height */
        left: 0;
        right: 0;
        background: rgba(253, 250, 247, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Animate burger menu when active */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .business-card img {
        max-width: 300px;
    }
}

