/* Custom Styles for Fleurs Éclatantes */

/* Header and Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    margin-bottom: 2rem;
}

/* Product Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* About Section */
.contact-info {
    background-color: #e9ecef;
    padding: 2rem;
    border-radius: 10px;
}

/* Form Styling */
#contactForm {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: 3rem;
}

.social-icons a {
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Cart Button Animation */
.addToCart {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Flower Icon */
.fas.fa-rose {
    color: #e91e63;
    font-size: 1.8rem;
    vertical-align: middle;
}