/**
 * LokalTanken - Fuel Price Display Stylesheet
 * Brand colors: Green (#2d8659), Red (#e31e24), Black (#1a1a1a), White (#f5f5f5)
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 4px solid #2d8659;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Price Container */
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Benzin Card - Green Theme */
.benzin-card {
    border-color: #2d8659;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f4 100%);
}

.benzin-card .fuel-type {
    color: #2d8659;
}

.benzin-card .price {
    color: #2d8659;
}

/* Diesel Card - Red Theme */
.diesel-card {
    border-color: #e31e24;
    background: linear-gradient(135deg, #ffffff 0%, #fef0f1 100%);
}

.diesel-card .fuel-type {
    color: #e31e24;
}

.diesel-card .price {
    color: #e31e24;
}

/* Fuel Icon */
.fuel-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Fuel Type */
.fuel-type {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Price */
.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

/* Price Unit */
.price-unit {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Last Updated */
.last-updated {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    margin: 0 20px;
}

.last-updated p {
    color: #666;
    font-size: 1rem;
}

.last-updated strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Error Message */
.error-message {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 20px;
}

.error-message h2 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.error-message p {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 10px;
}

.error-details {
    font-size: 0.9rem;
    color: #666;
    font-family: monospace;
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .price-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .fuel-type {
        font-size: 1.3rem;
    }

    .logo {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 15px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2rem;
    }

    .fuel-icon {
        font-size: 2.5rem;
    }

    .logo {
        max-width: 250px;
    }
}