/* Custom CSS for Rian Fashion Store - Public Pages */

/* Global Styles */
:root {
    --primary-color: #00BCD4;
    --secondary-color: #00897B;
    --text-dark: #333;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.cart-count {
    position: relative;
    top: -5px;
    font-size: 0.7rem;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero h1 {
    color: var(--text-dark);
}

.hero .lead {
    color: var(--text-muted);
}

/* Product Card */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    height: 2.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Category Cards */
.categories .card {
    transition: all 0.3s ease;
}

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

/* Article Card */
.latest-articles .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.latest-articles .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #2d3748 !important;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    border: none !important;
    transition: all 0.3s ease;
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4) !important;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-card img {
        height: 200px;
    }
}
