/* CSS Reset */
* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* Fonts */
@font-face {
    font-family: 'Neuropol';
    src: url('font/neuropol.woff2') format('woff2'),
         url('font/neuropol.woff') format('woff'),
         url('font/neuropol.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}

audio, canvas, video {
    display: inline-block;
    max-width: 100%;
}

/* Body Styles */
body {
    background: url('body.jpg') repeat;
    font-family: 'A1TA Medium Web01', Arial, sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Main Container */
#container {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Header Section */
.site-header {
    position: relative;
    max-height: 150px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
}

.logo-image {
    display: block;
    height: auto;
    max-width: 450px;
}

/* Categories Section */
.categories {
    padding: 50px 30px;
    background: transparent;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.category-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    padding: 20px;
    border-radius: 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 180px;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category-title {
    font-family: 'Neuropol', 'Arial Black', sans-serif;
    font-size: 20px;
    font-weight: normal;
    text-align: right;
    margin-bottom: 0;
    text-transform: lowercase;
    line-height: 1.2;
    width: 100%;
}

.category-icon {
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: auto;
    align-self: center;
}

/* Individual Category Colors */
.category-rinder {
    background: linear-gradient(135deg, #f4e8b0 0%, #e8d98c 100%);
}

.category-rinder .category-title {
    color: #5a7a3c;
}

.category-rinder .category-icon {
    background-image: url('images/split/rinder_icon.png');
}

.category-pferde {
    background: linear-gradient(135deg, #d4c9a8 0%, #bcb08c 100%);
}

.category-pferde .category-title {
    color: #5a7a3c;
}

.category-pferde .category-icon {
    background-image: url('images/split/pferde_icon.png');
}

.category-schafe {
    background: linear-gradient(135deg, #b8c896 0%, #a0b87c 100%);
}

.category-schafe .category-title {
    color: #4a5a2c;
}

.category-schafe .category-icon {
    background-image: url('images/split/schafe_icon.png');
}

.category-wild {
    background: linear-gradient(135deg, #9cb87c 0%, #88a868 100%);
}

.category-wild .category-title {
    color: #3a4a2c;
}

.category-wild .category-icon {
    background-image: url('images/split/wild_icon.png');
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    background: transparent;
    flex-wrap: wrap;
    gap: 20px;
}

.tagline h3 {
    font-size: 24px;
    color: #5a7a3c;
    font-weight: bold;
}

.contact p {
    font-size: 20px;
    color: #333;
}

.contact a {
    color: #5a7a3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #b8a348;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: rgba(224, 224, 224, 0.50);
    padding: 15px 30px;
    text-align: center;
    font-size: 14px;
    color: #5a7a3c;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .tagline h3 {
        font-size: 20px;
    }

    .contact p {
        font-size: 16px;
    }

    .site-footer {
        font-size: 12px;
        padding: 12px 15px;
    }
}

@media screen and (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-box {
        min-height: 150px;
    }

    .category-title {
        font-size: 14px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .tagline h3 {
        font-size: 18px;
    }

    .contact p {
        font-size: 14px;
    }

    .site-footer {
        font-size: 9px;
    }
}









