/* Import fonts */
@font-face {
    font-family: 'ALGERIAN';
    src: url('../../label-maker/fonts/algerian.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calisto MT';
    src: url('../../label-maker/fonts/calisto-mt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Georgia, 'Times New Roman', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero section */
.hero {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem 8rem;
    position: relative;
}

.hero nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

nav .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Features section */
.features {
    padding: 2.5rem 2rem;
    background: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

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

.feature-card svg {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Workflow section */
.workflow {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, #f5f5f5, #e5e5e5);
}

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

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

/* CTA section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    color: #ffffff;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Benefits section */
.benefits {
    padding: 6rem 2rem;
    background: #ffffff;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.benefit-card {
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card.highlight {
    border-left: 4px solid #1a1a1a;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #4a4a4a;
    font-size: 1.1rem;
}

/* Comparison section */
.comparison {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, #f5f5f5, #e5e5e5);
}

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

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.comparison-row.header {
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
}

.comparison-row.header > div {
    color: #ffffff;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 0.5rem;
}

.our-tool {
    color: #1a1a1a;
    font-weight: 600;
}

.others {
    color: #666;
}

/* Compatibility section */
.compatibility {
    padding: 6rem 2rem;
    background: #ffffff;
    text-align: center;
}

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

.printer-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.printer-list p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.printer-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.printer-list li {
    padding: 0.5rem;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.printer-list li::before {
    content: '✓';
    color: #1a1a1a;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Requirements Section */
.requirements {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.requirements h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.requirements p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.download-button:hover {
    transform: translateY(-2px);
    background: #333;
}

.download-button svg {
    width: 24px;
    height: 24px;
}

.setup-steps {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.setup-steps h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.setup-steps ol {
    padding-left: 25px;
    margin: 0;
}

.setup-steps li {
    margin: 15px 0;
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.testimonial-card .quote {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

/* Enhanced Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

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

.footer-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem 7rem;
    }

    .hero nav {
        margin-bottom: 3rem;
    }

    .hero-content {
        padding-top: 6rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .comparison-row.header {
        display: none;
    }

    .comparison-row > div {
        padding: 0.75rem;
    }

    .comparison-row > div.feature {
        font-weight: 600;
        background: #f5f5f5;
        border-radius: 6px;
    }

    .printer-list ul {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }
    
    .download-button {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .requirements {
        padding: 60px 20px;
    }

    .setup-steps {
        padding: 20px;
    }

    .section-nav {
        padding: 0 1rem;
        overflow: hidden;
    }

    .nav-menu {
        width: max-content;
        max-width: none;
        flex-wrap: nowrap;
        gap: 0.1rem;
        padding: 0.5rem 0.4rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    /* Hide all nav items except Home, Shop, and Create Label on mobile */
    .nav-menu li {
        display: none;
    }

    .nav-menu li:first-child, /* Home */
    .nav-menu li:nth-child(4), /* Shop */
    .nav-menu li:last-child /* Create Label */ {
        display: block;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.35rem 0.5rem;
        white-space: nowrap;
    }

    .nav-cta {
        margin: 0;
    }

    .section-nav.sticky {
        width: 95%;
        top: 0.5rem;
    }

    .features {
        padding: 2rem 1rem;
    }

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

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem 4rem;
    }

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

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .compatibility h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }
}

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

/* Add scroll margin for sections */
section {
    scroll-margin-top: 5rem;
}

/* Section Navigation styles */
.section-nav {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    margin: -3rem auto 3rem;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.section-nav.sticky {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    transform: none;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0.8rem 1rem;
    justify-content: center;
    align-items: center;
    background: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 50px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
    max-width: 100%;
    position: relative;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    pointer-events: none;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    background: transparent;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Special styling for CTA button in nav */
.nav-cta {
    background: rgba(26, 115, 232, 0.8) !important;
    color: #ffffff !important;
    padding: 0.6rem 1.4rem !important;
    box-shadow: 
        0 2px 6px rgba(26, 115, 232, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(4px);
}

.nav-cta:hover {
    background: rgba(26, 115, 232, 0.9) !important;
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(26, 115, 232, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
}

/* Home link styles */
.nav-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-home::before {
    content: '🏠';
    font-size: 1.1rem;
}

/* FAQ Section Styles */
.faq-section {
    padding: 2.5rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f4fe;
}

.faq-question.active {
    background: #f0f4fe;
    color: #1a73e8;
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
    padding: 0 1.2rem;
}

.faq-answer p {
    margin: 1.2rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin: 0.5rem 0;
    color: #4a5568;
    line-height: 1.5;
}

/* Responsive styles for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-category {
        margin-bottom: 2rem;
    }

    .faq-category h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .section-nav.sticky {
        width: 95%;
        top: 0.5rem;
        left: .65rem;
    }
} 