/* ============================================
   Website Guy KY - Main Styles
   Retro Louisville Web Design
   ============================================ */

/* CSS Variables */
:root {
    --color-cream: #FDF6E9;
    --color-cream-dark: #F5EBD7;
    --color-brown: #5C3D2E;
    --color-brown-dark: #3D2518;
    --color-orange: #E85D24;
    --color-orange-light: #F07D4A;
    --color-yellow: #E5A836;
    --color-yellow-light: #F0C05A;
    --color-teal: #4A9BA3;
    --color-teal-dark: #3A7A80;
    --color-tan: #D4A574;
    --color-tan-light: #E8C9A5;

    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 4px rgba(92, 61, 46, 0.1);
    --shadow-md: 0 4px 12px rgba(92, 61, 46, 0.15);
    --shadow-lg: 0 8px 24px rgba(92, 61, 46, 0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-brown-dark);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-brown-dark);
    text-align: center;
}

h3 {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-orange);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-teal);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--color-teal-dark);
}

.btn-cta {
    background-color: white;
    color: var(--color-brown);
    border: 2px solid var(--color-brown);
    border-radius: var(--radius-lg);
}

.btn-cta:hover {
    background-color: var(--color-cream);
}

/* Check Icon */
.check-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-teal);
    flex-shrink: 0;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--color-cream);
    border-bottom: 2px solid var(--color-brown);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-brown-dark);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: var(--color-brown);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-brown-dark);
    transition: 0.2s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 60px 0 40px;
    background: var(--color-cream);
}

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

.hero-content {
    max-width: 560px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-brown);
    margin-bottom: 16px;
    line-height: 1.7;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 24px;
}

.location-icon {
    font-size: 1.25rem;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(92, 61, 46, 0.2));
}

/* ============================================
   Domain Marquee
   ============================================ */
.domain-marquee {
    background: var(--color-tan);
    padding: 16px 0;
    overflow: hidden;
    border-top: 3px solid var(--color-brown);
    border-bottom: 3px solid var(--color-brown);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-brown-dark);
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-brown);
    margin-top: 12px;
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--color-cream);
}

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

.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-brown);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-yellow);
}

.step h3 {
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.6;
}

/* ============================================
   Examples Section
   ============================================ */
.examples {
    padding: 80px 0;
    background: var(--color-cream-dark);
}

.example-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--color-cream);
    border: 2px solid var(--color-brown);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-brown-dark);
    color: white;
    border-color: var(--color-brown-dark);
}

.examples-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.example-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-brown);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.example-browser {
    background: var(--color-cream-dark);
    border-bottom: 2px solid var(--color-brown);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-tan);
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-tan);
}

.browser-dots span:first-child {
    background: #FF6B6B;
}

.browser-dots span:nth-child(2) {
    background: #FFD93D;
}

.browser-dots span:nth-child(3) {
    background: #6BCB77;
}

.example-screenshot {
    aspect-ratio: 16/10;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-tan);
    font-size: 0.875rem;
}

.example-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    color: var(--color-tan);
}

.screenshot-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.screenshot-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-brown);
}

.example-card h4 {
    padding: 16px;
    text-align: center;
    font-size: 1rem;
    color: var(--color-brown-dark);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 80px 0;
    background: var(--color-cream);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 3px solid var(--color-brown);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-brown);
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 24px;
}

.pricing-amount span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-teal);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 8px 24px;
    border-radius: var(--radius-md);
    border: 3px solid var(--color-brown);
}

/* ============================================
   Industries Section
   ============================================ */
.industries {
    padding: 60px 0;
    background: var(--color-cream-dark);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.industry-item {
    text-align: center;
    padding: 20px;
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-brown);
}

.industry-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-brown-dark);
    margin-bottom: 4px;
}

.industry-count {
    font-size: 0.8rem;
    color: var(--color-brown);
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: 80px 0;
    background: var(--color-cream);
}

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

.review-card {
    background: white;
    border: 2px solid var(--color-brown);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: var(--color-yellow);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-brown);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-tan-light);
    overflow: hidden;
    border: 2px solid var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-brown-dark);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-brown-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-brown);
}

/* ============================================
   CTA Footer
   ============================================ */
.cta-footer {
    background: var(--color-tan);
    padding: 32px 0;
    border-top: 3px solid var(--color-brown);
    border-bottom: 3px solid var(--color-brown);
}

.cta-footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-footer p {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-brown-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-cream-dark);
    padding: 32px 0;
    position: relative;
}

.footer .container {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--color-brown);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-orange);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-brown);
}

.footer-mascot {
    position: absolute;
    right: 40px;
    bottom: 20px;
}

.footer-mascot img {
    opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .examples-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 24px;
        border-bottom: 2px solid var(--color-brown);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-mascot img {
        max-width: 300px;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .examples-carousel {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-mascot {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .example-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    color: var(--color-brown);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-cream-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.btn-submit {
    grid-column: span 2;
    justify-self: start;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--color-brown);
    color: white;
    padding: 32px;
    border-radius: 16px;
}

.contact-card h3 {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-orange);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-phone:hover {
    color: white;
}

.contact-phone svg {
    fill: currentColor;
}

.contact-hours {
    margin: 12px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-email {
    color: var(--color-orange);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email:hover {
    color: white;
}

/* Avatar initials style */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .contact-form {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .btn-submit {
        grid-column: span 1;
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
    }
}
