@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Serif+Pro:wght@400;600&display=swap');

body {
    font-family: 'Source Serif Pro', serif;
    margin: 0;
    padding: 20px;
    background-color: #2c1810;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(205, 133, 63, 0.1) 0%, transparent 50%);
    color: #d4af8c;
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #8b4513;
    padding-bottom: 20px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #deb887;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main {
    max-width: 100%;
    margin: 0 auto;
}

.logo-group {
    margin-bottom: 40px;
    background-color: rgba(139, 69, 19, 0.15);
    background-image: 
        linear-gradient(45deg, rgba(160, 82, 45, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(160, 82, 45, 0.1) 25%, transparent 25%);
    background-size: 20px 20px;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #8b4513;
    box-shadow: 
        0 4px 15px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(222, 184, 135, 0.3);
}

.logo-group h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #cd853f;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.base-container {
    justify-content: center;
}

.logo-item {
    border: 2px solid #8b4513;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(222, 184, 135, 0.2) 0%, rgba(139, 69, 19, 0.1) 100%),
        radial-gradient(circle at center, rgba(205, 133, 63, 0.1) 0%, transparent 70%);
    box-shadow: 
        0 6px 20px rgba(139, 69, 19, 0.4),
        inset 0 1px 0 rgba(222, 184, 135, 0.3),
        inset 0 -1px 0 rgba(139, 69, 19, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 25px rgba(139, 69, 19, 0.5),
        0 6px 15px rgba(205, 133, 63, 0.3),
        inset 0 1px 0 rgba(222, 184, 135, 0.4);
}

.logo-item img {
    max-width: 500px; /* Display original size */
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-item p {
    margin: 0;
    font-weight: 600;
    color: #deb887;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1em;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #8b4513;
    font-size: 0.9em;
    color: #d4af8c;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
}
