/* Proximile Site-Specific Styles */

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color, #333);
    transition: color 0.3s ease;
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    color: var(--color);
    opacity: 0.8;
}

.social-links svg {
    width: 100%;
    height: 100%;
}

.social-links .hf-icon {
    background: url('../svg/hf-logo.svg') no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Hero adjustments */
.hero__content {
    padding-bottom: calc(var(--baseline) + 1.3vw);
}

/* Navigation font size */
.navbar__menu li a {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

/* Gallery items */
.gallery-item {
    max-height: 300px;
    overflow: auto;
}

.gallery-item .container {
    display: flex;
    flex-direction: column;
}

.gallery-item p {
    font-size: 0.9em;
    line-height: 1.2;
    margin-bottom: 5px;
    word-break: break-word;
    max-height: 3.6em;
    overflow: hidden;
}

.gallery-item img {
    max-height: 200px;
    object-fit: contain;
}

/* Form messages */
.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.form-message--success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
