/* Open Sauce font */
@font-face {
    font-family: 'Open Sauce';
    src: url('fonts/OpenSauceOne-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sauce';
    src: url('fonts/OpenSauceOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sauce';
    src: url('fonts/OpenSauceOne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sauce';
    src: url('fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sauce';
    src: url('fonts/OpenSauceOne-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sauce';
    src: url('fonts/OpenSauceOne-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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

body {
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #262221;
    background-color: #f9efea;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #262221;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    color: #262221;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #262221;
    cursor: pointer;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.01em;
    font-size: 1rem;
}

.btn-primary {
    background-color: #262221;
    color: #f3bfa2;
}

.btn-primary:hover {
    background-color: #1a1716;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #262221;
    border: 1px solid #262221;
}

.btn-secondary:hover {
    border-color: #262221;
    color: #262221;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Navigation */
.navbar {
    background: #f9efea;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: #262221;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
    margin-left: 4rem;
}

.nav-link {
    text-decoration: underline;
    color: #262221;
    font-weight: 500;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #262221;
}

.nav-link.highlight-nav {
    background-color: #fef3c7;
    padding: 8px 16px;
    border-radius: 8px;
    color: #262221;
    border: 2px solid transparent;
}

.nav-link.highlight-nav:hover {
    border-color: #f59e0b;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: #f9efea;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: #262221;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 2rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: #262221;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Showcase Card */
.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-card {
    background: #f9efea;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.showcase-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.showcase-header h3 {
    font-size: 1.8rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #262221;
    margin-bottom: 0.5rem;
}

.showcase-tagline {
    color: #262221;
    font-size: 0.9rem;
    margin: 0;
}

.showcase-message {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-message p {
    font-size: 1.1rem;
    color: #262221;
    margin: 0;
}

.showcase-services {
    display: flex;
    gap: 1.5rem;
}

.service-item {
    flex: 1;
    text-align: center;
}

.service-image {
    margin-bottom: 1rem;
}

.service-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: #f9efea;
}



.service-info h4 {
    font-size: 1rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: #262221;
    margin-bottom: 0.5rem;
}

.service-info p {
    font-size: 0.9rem;
    color: #262221;
    margin: 0;
    line-height: 1.4;
}



/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #262221;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

/* Features */
.features {
    background: #f9efea;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #262221;
    color: #f3bfa2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.feature-step h3 {
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #262221;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing {
    background: #f9efea;
}

.price-tier {
    color: #262221;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.price-badge {
    background-color: #fbbf24;
    color: #262221;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-featured {
    border: 2px solid #F7F0FE;
}

.section-subtitle {
    text-align: center;
    color: #262221;
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.price-header {
    margin-bottom: 2rem;
}

.price-header h3 {
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: #262221;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #262221;
}

.price-period {
    font-size: 1rem;
    color: #262221;
}

.price-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.5rem 0;
    color: #262221;
}

/* Examples */
.examples {
    background: #f9efea;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: #f9efea;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
}

.example-card h3 {
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #262221;
    margin-bottom: 0.5rem;
}

.example-card p {
    color: #262221;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.example-link {
    color: #262221;
    text-decoration: none;
    font-weight: 600;
}

.example-link:hover {
    color: #262221;
    text-decoration: underline;
}

/* Contact */
.contact {
    background: #f9efea;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #262221;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sauce', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7F0FE;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* About */
.about {
    background: #f9efea;
    text-align: center;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .showcase-services {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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