/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    margin-top: -76px;
}

.hero-image {
    height: 80vh;
    overflow: hidden;
}

.hero-image img {
    object-fit: cover;
    height: 100%;
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 10px;
}

/* Category Cards */
.category-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    width: 100%;
}

/* Shop Page Styles */
.shop-header {
    background-color: var(--light-gray);
    padding: 3rem 0;
}

.filters-sidebar {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filters-sidebar h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-check {
    margin-bottom: 0.5rem;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-info {
    padding: 1rem;
}

.product-info h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

.rating {
    font-size: 0.8rem;
}

/* Collections Page Styles */
.collections-header {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.featured-collection {
    padding: 5rem 0;
}

.featured-collection img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.collection-content {
    padding: 2rem;
}

.collection-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.collection-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.newsletter {
    background-color: var(--light-gray);
}

.newsletter-form .form-control {
    border-radius: 30px 0 0 30px;
    padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.75rem 1.5rem;
}

/* Lookbook Page Styles */
.lookbook-header {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.lookbook-item {
    margin-bottom: 2rem;
}

.lookbook-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lookbook-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lookbook-item:hover .lookbook-image img {
    transform: scale(1.05);
}

.lookbook-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lookbook-item:hover .lookbook-overlay {
    opacity: 1;
}

.instagram-feed {
    background-color: var(--light-gray);
}

.instagram-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.instagram-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* Blog Page Styles */
.blog-header {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.featured-post {
    padding: 5rem 0;
}

.featured-post img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-content {
    padding: 2rem;
}

.blog-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.post-meta i {
    margin-right: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* About Page Styles */
.about-header {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.our-story {
    padding: 5rem 0;
}

.our-story img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.story-content {
    padding: 2rem;
}

.achievement {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.achievement h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.join-team {
    background-color: var(--light-gray);
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-light {
    background-color: white;
    border: none;
}

.btn-light:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-outline-light:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    margin-top: 4rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: none;
    margin: 0 0.2rem;
    border-radius: 5px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image {
        height: 60vh;
    }
    
    .category-card img {
        height: 300px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .product-image img {
        height: 250px;
    }

    .filters-sidebar {
        margin-bottom: 2rem;
    }

    .collection-card img {
        height: 300px;
    }

    .featured-collection {
        padding: 3rem 0;
    }

    .collection-content {
        padding: 1rem;
        text-align: center;
    }

    .lookbook-image img {
        height: 350px;
    }

    .instagram-item img {
        height: 150px;
    }

    .featured-post {
        padding: 3rem 0;
    }

    .post-content {
        padding: 1rem;
        text-align: center;
    }

    .post-image img {
        height: 200px;
    }

    .our-story {
        padding: 3rem 0;
    }

    .story-content {
        padding: 1rem;
        text-align: center;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
} 