/* ========================================
   BARKHAUS MARKETING SITE - GLOBAL STYLES
   ======================================== */

:root {
  --color-deep-taupe: #4d4c4c;
  --color-warm-brown: #804e3f;
  --color-sand: #cbb19d;
  --color-stone: #bfae9b;
  --color-dove: #e2d4c6;
  --color-cloud: #e9e8e6;
  --color-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-deep-taupe);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.75rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1rem; }

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

.text-center { text-align: center; }
.text-white { color: var(--color-white); }

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-deep-taupe);
    text-decoration: none;
    font-family: 'Noto Serif Display', serif;
}

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

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

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    background: var(--color-warm-brown);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--color-deep-taupe);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 78, 63, 0.3);
}

.btn-primary {
    background: var(--color-warm-brown);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--color-warm-brown);
    border: 2px solid var(--color-warm-brown);
}

.btn-secondary:hover {
    background: var(--color-warm-brown);
    color: white;
}

.btn-light {
    background: white;
    color: var(--color-warm-brown);
}

.btn-light:hover {
    background: var(--color-cloud);
    color: var(--color-deep-taupe);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 6rem 0;
}

.section-light {
    background: linear-gradient(135deg, var(--color-cloud) 0%, white 100%);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-warm-brown) 0%, var(--color-deep-taupe) 100%);
    color: white;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   HERO
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--color-dove) 0%, var(--color-cloud) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

/* ========================================
   FEATURES GRID
   ======================================== */

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    opacity: 0.8;
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-two-col.reverse {
    direction: rtl;
}

.content-two-col.reverse > * {
    direction: ltr;
}

/* ========================================
   DEMO VISUAL
   ======================================== */

.demo-visual {
    margin-top: 3rem;
}

.image-placeholder {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 1rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.25rem;
}

.image-placeholder-sm {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-cloud);
    border: 2px dashed var(--color-stone);
    flex-shrink: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

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

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

.testimonial-quote {
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--color-warm-brown) 0%, var(--color-deep-taupe) 100%);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ========================================
   FORMS
   ======================================== */

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

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

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-cloud);
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-warm-brown);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PRICING CARDS
   ======================================== */

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

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--color-warm-brown);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-warm-brown);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card .subtitle {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list li:before {
    content: "✓";
    color: var(--color-warm-brown);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   PARTNER LOGOS
   ======================================== */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-deep-taupe);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

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

.footer-section p {
    opacity: 0.8;
}

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

/* ========================================
   BLOG / RESOURCES
   ======================================== */

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

.resource-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--color-deep-taupe);
    display: block;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.resource-image {
    width: 100%;
    height: 200px;
    background: var(--color-cloud);
    border-bottom: 2px dashed var(--color-stone);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-stone);
}

.resource-content {
    padding: 2rem;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
}

.resource-meta {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero { padding: 5rem 0 3rem; }
    .section { padding: 4rem 0; }

    .nav-links { display: none; }

    .features-grid,
    .testimonials-grid,
    .pricing-grid,
    .partner-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .content-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
