/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    background-color: #f7f3f1;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #2e2e2e;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- LOGO & NAV --- */
header {
    background: transparent;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: #a48e77;
}

.logo-icon {
    margin-right: 10px;
    stroke: #c2b19b;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.logo-sub {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: -3px;
    color: #6a6a6a;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #6a6a6a;
}

nav a:hover, nav a.active {
    color: #2e2e2e;
}

.btn-kontakt {
    background-color: #2e2e2e;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-kontakt:hover {
    background-color: #a48e77;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(247, 243, 241, 0.95) 30%, rgba(247, 243, 241, 0) 70%);
    z-index: 10;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 70%;
    object-fit: cover;
    z-index: 5;
}

.container-hero {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 15;
}

.hero-content {
    max-width: 450px;
    margin-top: 50px;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1 span.gold {
    color: #a48e77;
    font-style: italic;
}

.hero p {
    color: #6a6a6a;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #2e2e2e;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary .arrow {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

/* --- ICONS SECTION --- */
.icons-row {
    padding: 40px 0;
    position: relative;
    z-index: 20;
    margin-top: -100px;
}

.container-icons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.icon-box {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 25px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    width: calc(25% - 15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.icon-container {
    margin-right: 20px;
}

.icon-box h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #2e2e2e;
    text-transform: uppercase;
}

.icon-box p {
    font-size: 0.8rem;
    color: #6a6a6a;
    line-height: 1.4;
}

/* --- ABOUT US SECTION --- */
.about-us {
    padding: 100px 0 60px;
}

.container-about {
    display: flex;
    justify-content: space-between;
}

.about-text {
    width: 45%;
    padding-top: 40px;
}

.about-text h3 {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #a48e77;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 30px;
}

/* --- PHOTO GALLERY SECTION --- */
.container-photos {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    width: 100%;
}

.photo-item {
    position: relative;
    width: calc(33.33% - 13.33px);
    aspect-ratio: 4/5;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo-overlay h4 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* --- TIER-ÜBERSICHT (tiere.php) --- */
.page-title {
    padding: 140px 0 20px;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0dcd9;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #2e2e2e;
    color: #fff;
    border-color: #2e2e2e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tier-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.tier-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tier-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.tier-card-content {
    padding: 25px;
}

.tier-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a48e77;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.tier-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #2e2e2e;
}

.tier-meta {
    font-size: 0.85rem;
    color: #8a8a8a;
    margin-bottom: 15px;
}

.tier-card p {
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* --- TIER-DETAILSEITE (tier-details.php) --- */
.tier-detail-container {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    align-items: flex-start;
}

/* Neue Galerie für das Tier */
.tier-gallery {
    width: 45%;
}

.tier-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tier-thumbs {
    display: flex;
    gap: 15px;
}

.tier-thumb-img {
    flex: 1;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tier-detail-info {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.tier-detail-info h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.tier-detail-meta {
    font-size: 1.1rem;
    color: #a48e77;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Die neuen Fakten-Boxen */
.fact-section {
    background: #fbfbfb;
    border: 1px solid #f4f0ed;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.fact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a48e77;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #f4f0ed;
    padding-bottom: 8px;
}

.fact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fact-item span {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
}

.fact-item b {
    color: #2e2e2e;
    font-size: 0.95rem;
}

.tier-desc {
    font-size: 1.05rem;
    color: #6a6a6a;
    line-height: 1.8;
    margin-bottom: 30px;
    background: #fff;
}

/* --- FOOTER --- */
footer {
    padding: 30px 0;
    background-color: transparent;
}

.footer-inner p {
    color: #6a6a6a;
    font-size: 0.75rem;
    text-align: center;
}

.footer-inner a:hover {
    color: #2e2e2e;
    text-decoration: underline;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    nav, .btn-kontakt { display: none; }
    .hero-content { max-width: 100%; padding: 0 40px; text-align: center; margin-top: 100px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-img { width: 100%; height: 100%; object-fit: cover; right: auto; left: 0; opacity: 0.2; }
    .hero-overlay { background: rgba(247, 243, 241, 0.95); }
    .container-icons { flex-wrap: wrap; gap: 10px; margin-top: -30px; }
    .icon-box { width: calc(50% - 5px); }
    .container-about { flex-direction: column; text-align: center; align-items: center;}
    .about-text { width: 80%; }
    .container-photos { width: 100%; padding: 0 20px; gap: 10px;}
    .photo-item { width: calc(33.33% - 6.66px); }
    .tier-card { width: calc(50% - 15px); }
    .tier-detail-container { flex-direction: column; padding: 20px; }
    .tier-gallery, .tier-detail-info { width: 100%; }
    .fact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .tier-card { width: 100%; }
    .filter-nav { flex-wrap: wrap; }
}