﻿/*-------------------------------------------------------------------------------*/
/*																				 */
/* CSS-File: 	online.css       	                                             */
/* Version:		001																 */
/*																				 */
/* Datum:		23.11.2019														 */
/*																				 */
/* Author:		cannonale-online												 */
/* Purpose:		css styles                  									 */
/*																				 */
/* History:		- None -		            									 */
/*																				 */
/*																				 */
/*-------------------------------------------------------------------------------*/		

        :root {
            --cannondale-green: #43b02a;
            --dark-bg: #1a1a1a;
            --text-color: #333;
            --light-gray: #f4f4f4;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Header mit neuem Logo */
        header {
            text-align: center;
            padding: 15px 0;
            background: #fff;
           /* border-bottom: 4px solid var(--cannondale-green);*/
        }

        header img {
            max-width: 250px;
            height: auto;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cannondale-team.jpg'); /* Platzhalter für Hintergrundbild */
            background-size:cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 100px 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .btn-green {
            background-color: var(--cannondale-green);
            color: #fff;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            display: inline-block;
            transition: background 0.3s;
        }

        .btn-green:hover {
            background-color: #368e22;
        }

        /* Features Section */
        .section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .feature-card img {
            width: 50px;
            margin-bottom: 15px;
        }

        /* Produkt Section */
        .product-section {
            background-color: var(--light-gray);
            padding: 0px 20px;
        }

        .product-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            text-align: center;
            padding-bottom: 25px;
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-card h3 {
            margin: 20px 0 10px;
        }

        .product-card p {
            padding: 0 20px;
            font-size: 0.95rem;
            margin-bottom: 20px;
            min-height: 60px;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: #ccc;
            text-align: center;
            padding: 40px 20px;
            font-size: 0.9rem;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        footer img {
            max-width: 150px;
            filter: brightness(0) invert(1); /* Logo weiß für dunklen Hintergrund */
            margin-bottom: 20px;
        }

        logo img {
			padding: 0 0 1% 1%;
		}
