/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    background: #222;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo h2 {
    color: #d4af37; /* Gold accent */
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.3rem;
    cursor: pointer;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: #d4af37;
    color: #222;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    transform: scale(1.05);
}

.featured-categories, .best-sellers, .why-us {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #222;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.product-info {
    padding: 1.2rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

footer {
    background: #222;
    color: #ddd;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-icons i {
    font-size: 1.8rem;
    margin-right: 1rem;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-links {
        gap: 1rem;
        font-size: 0.95rem;
    }
}
/* ====================== CATALOGUE PAGE STYLES ====================== */

.catalogue-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/id/1015/1920/600') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.catalogue-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.filters-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filters select, 
.filters button {
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.filters button {
    background: #d4af37;
    color: #222;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}

.search-bar i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Product Card (enhanced for catalogue) */
.product-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.product-info {
    padding: 1.4rem;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.price {
    font-size: 1.45rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #222;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #d4af37;
    color: #222;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .catalogue-header h1 {
        font-size: 2.8rem;
    }
}
/* ====================== ABOUT US PAGE STYLES ====================== */

.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.about-hero-content p {
    font-size: 1.5rem;
    font-style: italic;
}

.our-story {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.values-section {
    background: #f8f8f8;
    padding: 100px 2rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3.2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.journey {
    padding: 100px 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4af37;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.year {
    width: 100px;
    height: 100px;
    background: #d4af37;
    color: #222;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.content {
    margin-left: 80px;
    padding-top: 15px;
}

.content h3 {
    color: #d4af37;
    margin-bottom: 8px;
}

.founder-section {
    background: #222;
    color: white;
    padding: 100px 2rem;
}

.founder-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
}

.founder-info h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.founder-info h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: normal;
}

.founder-info p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.signature {
    font-style: italic;
    font-size: 1.3rem;
    color: #d4af37;
}

/* Responsive */
@media (max-width: 992px) {
    .story-container,
    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    .year {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    .content {
        margin-left: 60px;
    }
}