/*
Theme Name: DigiBee Testing Theme
Version: 5.0 - Soft Redesign
*/

/* 1. Reset i bazy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f7fa;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Kontenery - to one mogły "rozjeżdżać" stronę */
.site-main, .entry-content {
    width: 100%;
}

/* 3. Typografia DigiBee */
h1, h2, h3 {
    color: #34495e;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* 4. Komponenty */
.btn-gold {
    background: linear-gradient(135deg, #a8c8e1 0%, #7fb3d5 100%);
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(127, 179, 213, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 179, 213, 0.35);
    background: linear-gradient(135deg, #7fb3d5 0%, #6a9bc3 100%);
}

.card-course {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-course:hover {
    border-color: #a8c8e1;
    box-shadow: 0 4px 16px rgba(168, 200, 225, 0.15);
}