@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}


.tea-title {
    font-family: 'Manrope', serif;
    color: #553c1b;
}

.tea-card {
    transition: transform 0.3s ease;
}

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


        
        .card {
            transition: all 0.3s ease;
            max-width: 320px;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .client-image {
            transition: all 0.3s ease;
        }
        
        .card:hover .client-image {
            transform: scale(1.1);
        }
        
        /* Animation for cards */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-card {
            animation: fadeIn 0.6s ease forwards;
        }
        
        /* Custom gradient with better contrast */
        .gradient-bg {
            background: linear-gradient(135deg, #ff8938 0%, #ff0000 100%);
        }
        
        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
                height: auto;
            }
            
            .card-container {
                margin-top: 2rem;
                height: 700px;
                position: relative;
            }
            
            .mobile-padding {
                padding: 2rem 1rem;
            }
        }
        
        /* Custom button styles */
        .explore-btn {
            background: white;
            color: #ff5722;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .explore-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #ff5722;
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .explore-btn:hover:before {
            width: 100%;
        }
        
        .explore-btn:hover {
            color: white;
        }
