:root {
    --primary-color: #feda00;
    /* Updated to DM Me Yellow */
    --text-color: #333;
    --bg-color: #fff;
    --light-gray: #f8f9fa;
    /* Slightly cooler gray */
    --header-height: 80px;
    --container-width: 1280px;
    /* Wider container */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    /* Black text for contrast on yellow */
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #e6c300;
    /* Darker yellow */
    border-color: #e6c300;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 218, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}

/* Header */
.site-header {
    height: var(--header-height);
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    /* Adjust header logo height */
    width: auto;
    object-fit: contain;
}

/* Old logo-icon styles removed or commented out as they are replaced by image */
/*
.logo-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border-radius: 4px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: #000;
    /* Based on logo description "White text K, Red Square" - usually text is black */
/* }
*/

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: #444;
}

/* Ensure buttons in nav don't inherit basic link styles */
.main-nav a.btn {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}


.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.btn:hover {
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    /* Allow it to be tall */
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for text readability */
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    /* Above video and overlay */
    width: 100%;
    /* Removed gap and flex alignment since it's just content now */
}

.hero-content {
    max-width: 700px;
    /* Limit width for readability */
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* New White Outline Button for dark backgrounds */
.btn-outline-white {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Removed old .hero-image styles */

/* Fallback/Placeholder styles removed or kept if you want */
.placeholder-image {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 24px;
    border-radius: 8px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Deeper shadow for modern feel */
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

/* Kitchen Display */
.kitchen-display {
    padding: 80px 0;
    background-color: #fff;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.content-side {
    flex: 1;
}

.eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.content-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.content-side p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.image-side {
    flex: 1;
    width: 100%;
    height: auto   ;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.industry-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.testimonial-card {
    background: #000;
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    margin-top: 30px;
}


.testimonial-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.testimonial-content p {
    margin-bottom: 24px;
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}


.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        position: relative;
        /* Changing sticky to relative on mobile often helps with menu overflow */
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #333;
        border-radius: 3px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .split-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .image-side {
        width: 100%;
        order: -1;
        /* Image first on mobile if desired, or keep default */
    }
}

/* Analytics Dashboard Image */
.feature-side-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-side-image:hover {
    transform: translateY(-5px);
}

/* Footer Contact List Improvements */
.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #999;
}

.contact-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 5px; /* Visual alignment with text top */
    min-width: 20px; /* Fixed width for icon alignment */
}

.contact-list li span {
    flex: 1;
    line-height: 1.5;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-form .btn {
    width: 100%; /* Full width button for better mobile/column fit */
    padding: 10px 20px;
}