/* Google Fonts */
@import url('https://fonts.bunny.net/css?family=roboto:400,500,600,700|roboto-slab:400,700');

/* CSS Variables for Schrimpf Brand Colors */
:root {
    --font-sans: 'Roboto', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
    --font-serif: 'Roboto Slab', ui-serif, Georgia, serif;
    
    /* Schrimpf Brand Colors - Based on logo analysis */
    --color-primary: #CF007E;      /* Primary Pink/Magenta */
    --color-secondary: #54595F;    /* Dark Gray */
    --color-text: #7A7A7A;        /* Medium Gray */
    --color-text-dark: #383E42;   /* Dark Text */
    --color-accent: #61CE70;      /* Green Accent */
    --color-light: #EBEBEB;       /* Light Gray */
    --color-white: #FFFFFF;       /* White */
    --color-dark: #232629;        /* Dark Background */
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
}

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

/* Header Styles */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 300px);
    padding: 0;
}

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

h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #cf007e40 !important;
    /* padding: 1rem 0; */
    color: var(--color-white);
    padding-top: 3rem;
    margin-bottom: 0rem; 
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-text);
}

.breadcrumbs li:last-child::after {
    content: '';
}

.breadcrumbs a {
    color: var(--color-text);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    color: var(--color-text-dark);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-light);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

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

.footer-section {
    position: relative;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

.footer-section h3 {
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
    margin-top: 0;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
}

.footer-section address {
    font-style: normal;
    line-height: 1.8;
    color: var(--color-text);
}

.footer-section p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--color-primary);
    transform: translateX(3px);
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--color-light);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--color-text);
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #B0006B;
    text-decoration: none;
    color: var(--color-white);
}

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

.btn-secondary:hover {
    background-color: #43484D;
    color: var(--color-white);
}

/* Home Page Styles */
.product-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card, .service-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-light);
    transition: box-shadow 0.3s;
}

.product-card:hover, .service-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card h3, .service-item h3 {
    margin-top: 0;
}

/* Product Images */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.product-card .product-image {
    max-height: 250px;
    object-fit: cover;
}

.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-left, .image-right {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.image-section {
    margin: 2rem 0;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.why-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.why-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-section {
    background-color: var(--color-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .product-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}

/* Modern Home Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    margin-top: -2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 0, 126, 0.1) 0%, rgba(97, 206, 112, 0.1) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(207, 0, 126, 0.15) 0%, transparent 70%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

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

.intro-text {
    text-align: center;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Modern Product Grid */
.products-overview {
    padding: 6rem 0;
    background-color: #fafafa;
}

.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card-modern {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image-wrapper .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-link {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-link:hover {
    transform: translateX(4px);
    text-decoration: none;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.product-content h3 a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.product-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Modern Services Section */
.services-section-modern {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-item-modern {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.service-item-modern:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(207, 0, 126, 0.1) 0%, rgba(207, 0, 126, 0.05) 100%);
    border-radius: 50%;
    color: var(--color-primary);
}

.service-item-modern h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-item-modern p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Modern Why Section */
.why-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-text {
    text-align: center;
    margin-bottom: 4rem;
}

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

.why-item {
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.why-item p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* Modern CTA Section */
.cta-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #B0006B 100%);
    color: var(--color-white);
    text-align: center;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Button Variants */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: #B0006B;
    border-color: #B0006B;
    text-decoration: none;
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Responsive Updates for Modern Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 4rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.3;
    }
    
    .product-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .intro-section,
    .products-overview,
    .services-section-modern,
    .why-section-modern,
    .cta-section-modern {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .product-image-wrapper {
        height: 220px;
    }
}
