/* Social Media Icons and Additional Elements Styling */

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Social media brand colors */
.facebook {
    background-color: #1877F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.twitter {
    background-color: #1DA1F2;
}

.youtube {
    background-color: #FF0000;
}

.linkedin {
    background-color: #0A66C2;
}

.tiktok {
    background-color: #000000;
}

.telegram {
    background-color: #0088cc;
}

.whatsapp {
    background-color: #25D366;
}

.threads {
    background-color: #000000;
}

/* Designer profile */
.designer-profile {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgba(16, 185, 129, 0.1);
}

.designer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
    margin-right: 1rem;
}

.designer-info {
    flex: 1;
}

.designer-name {
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.designer-links a {
    color: #10b981;
    text-decoration: underline;
    margin-right: 1rem;
}

/* Donation button */
.donate-button {
    display: inline-flex;
    align-items: center;
    background-color: #0070ba;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.donate-button:hover {
    background-color: #005ea6;
}

.donate-button svg {
    margin-right: 0.5rem;
}

/* Share buttons */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.dark .share-dropdown-content {
    background-color: #1f2937;
}

.share-dropdown:hover .share-dropdown-content {
    display: block;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.dark .share-button {
    color: #d1d5db;
}

.share-button:hover {
    background-color: #f3f4f6;
}

.dark .share-button:hover {
    background-color: #374151;
}

.share-button svg {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

/* Copyright section */
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
}

.dark .copyright {
    border-top-color: #374151;
    color: #9ca3af;
}

.copyright a {
    color: #10b981;
    text-decoration: underline;
}

/* SEO improvements */
.meta-description {
    display: none;
}

.structured-data {
    display: none;
}