/* Custom Bootstrap overrides and additional styles */

/* Font families */
body {
    font-family: 'Poppins', sans-serif;
}

/* Color scheme */
:root {
    --primary-color: #e6007e;
    --secondary-color: #FFED00;
    --accent-color: #a898ec;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #fafafa;
}

/* Override Bootstrap primary color */
.btn-primary,
.bg-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Custom styles for the site */
body {
    padding-top: 0px; /* Account for Anima banner */
    background-color: var(--bg-light);
}

.top-menu {
/* Account for Anima banner */
    background-color: #e8f4f8 !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Pink button styling for header */
.btn-pink {
    background-color: #e91e63;
    border-color: #e91e63;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #c2185b;
    border-color: #c2185b;
    transform: translateY(-1px);
}

.btn-pink:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

/* Language switcher styling */
.language-switcher {
    font-size: 0.9rem;
    font-weight: 500;
}

.language-switcher .text-muted {
    color: #6c757d !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

.min-vh-50 {
    min-height: 50vh;
}

.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Custom spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Testimonials styling */
.carousel-indicators button {
    background-color: var(--primary-color) !important;
}

/* Footer styling */
footer.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navigation active state */
.navbar-nav .nav-link.fw-bold {
    color: var(--primary-color) !important;
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #003d6b;
    border-color: #003d6b;
    transform: translateY(-1px);
}

/* Product cards styling */
.card-body img {
    transition: transform 0.3s ease;
}

.card:hover .card-body img {
    transform: scale(1.05);
}

/* Typography improvements */
.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Social media icons hover effect */
footer a:hover img {
    opacity: 0.8;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom utility classes */
.text-light {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .display-4 {
        font-size: 1.75rem;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 2;
    }
    
    .hero-section .col-lg-6:last-child {
        order: 1;
        margin-bottom: 2rem;
    }
}

/* Navigation styling */
.navbar {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.nav-link-active {
    color: #e91e63 !important;
}

.nav-link-active:hover {
    color: #c2185b !important;
}

.nav-link-blue {
    color: #2196F3 !important;
}

.nav-link-blue:hover {
    color: #1976D2 !important;
}

/* Search button in navigation */
.btn.rounded-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
} 