/* Custom Font */
@font-face {
    font-family: 'VVDS Fifties';
    src: url('./fonts/VVDS-Fifties-Med-Bold-Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "VVDS Fifties", "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 35px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.05em;
    color: rgb(254, 249, 240);
}

.btn-demo {
    background-color: #a8e063;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-demo:hover {
    background-color: #96d04f;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-mockup {
    margin-top: 40px;
}

.hero-mockup video {
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* How It Works Section */
.how-it-works {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.how-it-works h2 {
    font-size: 35px;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card:first-child {
    grid-column: span 2;
}

.step-card {
    background-color: transparent;
}

.step-image {
    border-radius: 15px;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.step-image.yellow {
    background-color: #f4c430;
}

.step-image.pink {
    background-color: #ffd4e5;
}

.step-image.light {
    background-color: #f5f0e8;
}

.step-image.dark {
    background-color: #4a5568;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #bbb;
    font-size: 16px;
}

/* Featured Stores Section */
.featured-stores {
    background: linear-gradient(135deg, #ff7757 0%, #ff6b4a 100%);
    padding: 80px 0;
}

.featured-stores h2 {
    font-size: 35px;
    margin-bottom: 50px;
    text-align: center;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.store-card {
    background-color: transparent;
}

.store-screenshot {
    background-color: #fff;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.store-screenshot:hover {
    transform: scale(1.02);
}

.store-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.store-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-info h3 {
    font-size: 22px;
    font-weight: 600;
}

.view-store {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.view-store:hover {
    opacity: 0.8;
}

/* Benefits Section */
.benefits {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.benefits h2 {
    font-size: 35px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.benefit-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #bbb;
    font-size: 18px;
}

/* Suppliers Section */
.suppliers {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.suppliers h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.suppliers-subtitle {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 50px;
}

.suppliers-logos {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.suppliers-logos::before,
.suppliers-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.suppliers-logos::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

.suppliers-logos::after {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.suppliers-logos-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

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

.supplier-logo {
    flex-shrink: 0;
    min-width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.supplier-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
}

.supplier-logo.and-more {
    color: #666;
    font-size: 18px;
    font-style: italic;
}

/* Testimonial Section */
.testimonial {
    background-color: #f5f0e8;
    padding: 80px 0;
    color: #1a1a1a;
}

.testimonial blockquote {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote p {
    font-size: 28px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.testimonial cite {
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
}

.company-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Pricing Section */
.pricing {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.pricing h2 {
    font-size: 35px;
    margin-bottom: 15px;
    text-align: left;
}

.pricing-subtitle {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1100px;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 20px;
    margin-bottom: 35px;
    color: #ccc;
}

.features {
    list-style: none;
}

.features li {
    padding: 5px 0;
    padding-left: 28px;
    position: relative;
    color: #ccc;
    font-size: 15px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a8e063;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 80px 0 40px;
    text-align: left;
}

.footer .logo {
    font-size: 42px;
    margin-bottom: 30px;
}

.footer h2 {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer .btn-demo {
    display: inline-block;
    margin-bottom: 40px;
}

.footer-copy {
    color: #fff;
    font-size: 18px;
}

.footer-copy a {
    color: #fff;
    text-decoration: none;
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 32px !important;
    }

    .steps-grid,
    .stores-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .step-card:first-child {
        grid-column: span 1;
    }

    .suppliers-logos {
        flex-direction: column;
    }

    .testimonial blockquote p {
        font-size: 20px;
    }

    .benefit-item h3 {
        font-size: 22px;
    }
}
