/* Custom styles for Flower Shop */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Gradient backgrounds */
.bg-flower-gradient {
    background: linear-gradient(135deg, #f8b4cb 0%, #e91e63 100%);
}

.bg-nature-gradient {
    background: linear-gradient(135deg, #87a96b 0%, #4caf50 100%);
}

/* Custom shadows */
.shadow-flower {
    box-shadow: 0 10px 25px rgba(248, 180, 203, 0.3);
}

.shadow-elegant {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.btn-flower {
    background-color: #e91e63;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(248, 180, 203, 0.3);
}

.btn-flower:hover {
    background-color: rgba(233, 30, 99, 0.9);
    transform: translateY(-2px);
}

.btn-outline-flower {
    border: 2px solid #e91e63;
    color: #e91e63;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
    background-color: transparent;
}

.btn-outline-flower:hover {
    background-color: #e91e63;
    color: white;
}

/* Navbar styles */
.navbar-blur {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Hero section styles */
.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

/* Section spacing */
.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* Text styles */
.text-flower-gradient {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #e91e63;
    border-color: transparent;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #e91e63;
    border-color: transparent;
}

/* Mobile menu styles */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Loading spinner */
.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #e91e63;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .hero-height {
        height: 70vh;
    }
}

@media (min-width: 769px) {
    .hero-height {
        height: 80vh;
    }
}