/* ========================================
   Compact Centered Design
   von der Weidenvilla
   Optimized for 75% zoom
   ======================================== */

/* CSS Variables */
:root {
    --gold: #B18904;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #A4A4A4;
    --white: #ffffff;
    --hover-gold: #d4a005;
    --shadow: rgba(177, 137, 4, 0.3);
}

/* ========================================
   Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========================================
   Social Media Inline (removed fixed bar)
   ======================================== */

/* ========================================
   Main Container - Compact & Centered
   ======================================== */

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-wrapper {
    text-align: center;
    max-width: 1400px;
}

/* ========================================
   Title Section - Compact
   ======================================== */

.site-title {
    font-family: 'Vivaldi', 'Brush Script MT', cursive;
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: normal;
    text-shadow: 0 0 40px var(--shadow);
    letter-spacing: 3px;
    line-height: 1;
}

.site-subtitle {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--light-gray);
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Social Media Icons - Fixed floating on scroll */
.social-media-inline {
    display: flex;
    gap: 15px;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--dark-gray);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.social-media-inline a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.social-media-inline a:hover {
    transform: scale(1.1);
    opacity: 1;
}

.social-media-inline img {
    display: block;
    filter: brightness(0.9);
}

.social-media-inline a:hover img {
    filter: brightness(1.3);
}

/* ========================================
   Logos Container - Tight & Centered
   ======================================== */

.logos-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 20px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease;
    text-align: center;
}

.logo-link:hover {
    transform: translateY(-10px);
}

.breed-logo {
    width: 400px;
    height: 470px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.logo-link:hover .breed-logo {
    box-shadow: 0 15px 60px var(--shadow);
    filter: brightness(1.15);
}

.breed-name {
    font-family: 'Vivaldi', 'Brush Script MT', cursive;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    color: var(--gold);
    margin-top: 15px;
    font-weight: normal;
    letter-spacing: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo-link:hover .breed-name {
    color: var(--hover-gold);
    transform: scale(1.05);
}

/* ========================================
   Footer - Compact
   ======================================== */

.site-footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--gold);
    padding: 30px 20px 15px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Associations */
.associations {
    text-align: center;
}

.associations-title {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.association-logos {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.association-logos a {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.association-logos a:hover {
    transform: scale(1.1);
    opacity: 1;
}

.association-logos img {
    display: block;
    filter: brightness(0.9);
}

.association-logos a:hover img {
    filter: brightness(1.2);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--hover-gold);
    text-decoration: underline;
}

.copyright {
    color: var(--light-gray);
    font-size: 0.85rem;
}

/* Visitor Counter */
.visitor-counter {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.visitor-counter:hover {
    opacity: 1;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Large Desktop - Even more compact at 75% zoom */
@media (min-width: 1600px) {
    .logos-container {
        gap: 50px;
    }

    .breed-logo {
        width: 450px;
        height: 530px;
    }

    .breed-name {
        font-size: 4rem;
        margin-top: 20px;
    }
}

/* Standard Desktop */
@media (max-width: 1200px) {
    .logos-container {
        gap: 35px;
    }

    .breed-logo {
        width: 350px;
        height: 412px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .main-container {
        padding: 30px 20px;
    }

    .site-title {
        font-size: 3.5rem;
    }

    .site-subtitle {
        font-size: 1.5rem;
        letter-spacing: 6px;
        margin-bottom: 25px;
    }

    .social-media-inline {
        top: 60px;
        right: 10px;
        padding: 8px 12px;
        gap: 10px;
    }

    .social-media-inline img {
        width: 30px !important;
        height: 30px !important;
    }

    .logos-container {
        gap: 30px;
    }

    .breed-logo {
        width: 280px;
        height: 330px;
    }

    .breed-name {
        font-size: 2rem;
        margin-top: 12px;
    }

    .association-logos {
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .main-container {
        padding: 20px 15px;
    }

    .site-title {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .site-subtitle {
        font-size: 1.2rem;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .social-media-inline {
        top: 80px;
        right: 10px;
        padding: 8px 10px;
        gap: 8px;
    }

    .social-media-inline img {
        width: 25px !important;
        height: 25px !important;
    }

    .logos-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .breed-logo {
        width: 260px;
        height: 306px;
    }

    .breed-name {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .site-footer {
        padding: 25px 15px 12px;
    }

    .association-logos {
        gap: 15px;
    }

    .association-logos img {
        width: 50px !important;
        height: auto !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .site-title {
        font-size: 2rem;
    }

    .site-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .breed-logo {
        width: 220px;
        height: 259px;
    }

    .breed-name {
        font-size: 1.5rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .social-media-inline,
    .visitor-counter {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .content-wrapper {
        break-inside: avoid;
    }
}
