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

:root {
    --color-primary: #dc2626;
    --color-beige: #f5f5dc;
    --color-beige-light: #faf8f3;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-border: #e5e7eb;
    --color-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

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

/* Navigation */
.navbar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
    gap: 20px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-badge {
    flex: 1;
    text-align: center;
}

.nav-badge span {
    background: #fef3c7;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', 'Nunito Sans', sans-serif;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    border-radius: 25px;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-beige-light) 0%, #fff 100%);
    padding: 80px 0 60px;
    text-align: center;
}

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

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

.hero-badge span {
    background: var(--color-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', 'Nunito Sans', sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.scroll-hint {
    margin-top: 40px;
}

.scroll-hint a {
    text-decoration: none;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-hint .arrow {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-beige-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto 50px;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

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

.brand-card.featured {
    border: 3px solid var(--color-primary);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--color-beige-light);
    border-radius: 8px;
    padding: 15px;
}

.brand-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

/* Logo size adjustments */
.logo-voliotis img {
    max-height: 90px;
}

.logo-cretamel img,
.logo-shroom img,
.logo-vigor img {
    max-height: 60px;
}

.logo-kk {
    background: transparent;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.brand-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.badge {
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.brand-description {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--color-text-light);
}

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

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-header {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-checkbox input {
    width: auto;
}

.form-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.form-footer {
    margin-top: 15px;
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

.contact-info {
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info-wrapper h4 {
    font-size: 18px;
    margin: 30px 0 15px;
}

.social-links {
    line-height: 2;
}

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

.social-links a:hover {
    text-decoration: underline;
}

.qr-section {
    margin-top: 30px;
    padding: 20px;
    background: var(--color-beige-light);
    border-radius: 8px;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 5px 0;
}

.footer-credit {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
}



/* Updated Navigation Styles */
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
    gap: 20px;
}

.logo img {
    height: 90px !important;
    width: auto;
}

.logo {
    margin-left: 45px; /* Half of logo width to center it */
}

/* Removed yellow badge */

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* BNI Badge */
.bni-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bni-badge img {
    height: 30px;
    width: auto;
}

.bni-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Red button for B2B */
.btn-red {
    background: var(--color-primary) !important;
    color: white !important;
    font-size: 13px !important;
    padding: 10px 24px !important;
    text-transform: lowercase;
    border-radius: 25px !important;
}

.btn-red:hover {
    background: #b91c1c !important;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 20px;
}

.language-switcher a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

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

.language-switcher .lang-active {
    color: var(--color-primary);
}

.lang-separator {
    color: var(--color-border);
    font-weight: 300;
}

/* Hero Badge White */
.hero-badge-white {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-right {
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }
    
    .bni-badge {
        flex-direction: row;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 120px !important;
    }
    
    .nav-badge-text {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .bni-badge img {
        height: 30px;
    }
    
    .bni-badge span {
        font-size: 10px;
    }
}


/* Updated responsive styles */
@media (max-width: 768px) {
    .logo img {
        height: 70px !important;
    }
    
    .logo {
        margin-left: 35px;
    }
    
    .bni-badge img {
        height: 20px;
    }
    
    .bni-text {
        font-size: 9px;
    }
    
    .btn-red {
        font-size: 11px !important;
        padding: 8px 18px !important;
    }
}



/* Brand products images */
.brand-products {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
}

.brand-products img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
}

/* Standardize all brand logos to 120x75 */
.brand-logo img {
    width: 120px !important;
    height: 75px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .brand-products {
        min-height: 150px;
        padding: 10px;
    }
    
    .brand-products img {
        max-height: 180px;
    }
}




/* Yellow featured badge variant for Polskie Wafle */
.brand-card.featured .featured-badge[style*="background: #f59e0b"] {
    background: #f59e0b !important;
    color: white;
}

/* Yellow border for Polskie Wafle featured card */
.brand-card.featured:has(.featured-badge[style*="background: #f59e0b"]) {
    border: 3px solid #f59e0b !important;
}




/* Purple featured badge variant for Shroom */
.brand-card.featured .featured-badge[style*="background: #8b5cf6"] {
    background: #8b5cf6 !important;
    color: white;
}

/* Purple border for Shroom featured card */
.brand-card.featured:has(.featured-badge[style*="background: #8b5cf6"]) {
    border: 3px solid #8b5cf6 !important;
}

