/**
 * @author Firma: 4Unit Systems Integration GmbH
 *         Adresse: Jahnstraße 36, 34582 Borken (Hessen)
 *         Telefon: 05682 73 48 26
 *         E-Mail: info@4unit.com
 *         Website: https://4unit.com
 *
 * @license Kommerzielle Nutzung nur mit gültiger Lizenz von 4Unit Systems Integration GmbH
 */

/*
Theme Name:     Tasteo
Theme URI:      https://4unit.com/themes/tasteo
Author:         4Unit Systems Integration GmbH
Author URI:     https://4unit.com
Description:    Kind-Theme von Sophrie Pro für moderne Restaurants & Food-Delivery.
Version:        1.0.0
Template:       shopire-pro
License:        4Unit Commercial License
License URI:    https://4unit.com/lizenz
Text Domain:    tasteo
Tags:           food, woocommerce, restaurant, child-theme, responsive
*/

/* Import Parent Theme Styles */
@import url("../shopire-pro/style.css");

/* Custom Variables für Tasteo Theme */
:root {
    --tasteo-primary: #E63946;
    --tasteo-secondary: #457B9D;
    --tasteo-accent-light: #F1FAEE;
    --tasteo-accent-dark: #1D3557;
    --tasteo-text: #333333;
    --tasteo-background: #FFFFFF;
}

/* Font Imports */
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-Regular.woff2') format('woff2'),
         url('./assets/fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-Medium.woff2') format('woff2'),
         url('./assets/fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter-Bold.woff2') format('woff2'),
         url('./assets/fonts/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./assets/fonts/Nunito-Regular.woff2') format('woff2'),
         url('./assets/fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./assets/fonts/Nunito-Bold.woff2') format('woff2'),
         url('./assets/fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--tasteo-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--tasteo-accent-dark);
}

/* Container für constrained width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Anpassungen */
.site-header {
    background: var(--tasteo-background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation */
.main-navigation {
    background: var(--tasteo-primary);
}

.main-navigation a {
    color: white;
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--tasteo-accent-light);
}

/* WooCommerce Anpassungen */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: var(--tasteo-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: var(--tasteo-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 123, 157, 0.3);
}

/* Produktkarten */
.woocommerce ul.products li.product {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--tasteo-accent-dark);
    margin: 15px 0 10px;
}

/* Mobile Sticky Warenkorb */
@media (max-width: 768px) {
    .sticky-cart {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--tasteo-primary);
        padding: 15px;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }
    
    .sticky-cart .button {
        width: 100%;
        margin: 0;
    }
}

/* Footer */
.site-footer {
    background: var(--tasteo-accent-dark);
    color: white;
    padding: 40px 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
} 