/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3e8ff;
    color: #374151;
    line-height: 1.6;
}
/* Custom gradient for social media icons */
.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}
.social-facebook {
    background: linear-gradient(45deg, #3b5998, #2d4373);
}
.social-linkedin {
    background: linear-gradient(45deg, #0077b5, #005885);
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .social-icons a {
        padding: 0.75rem;
    }
    
    .main-card {
        padding: 1.5rem;
    }
}
/* Animation for pulse effect */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Ensure cookie policy is always on top */
.hovered-element {
    z-index: 50;
}
/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}