@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
        
body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.bebas {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1598033129183-c4f50c736f10?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1925&q=80');
    background-size: cover;
    background-position: center;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #111827;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
    left: 0;
    background: #111827;
}

.fabric-texture {
    background-image: url('https://images.unsplash.com/photo-1534211698453-9eb666b5a1b1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.transition-300 {
    transition: all 0.3s ease;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-overlay {
    background: rgba(15, 23, 42, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px #111827;
}

.metallic-text {
    background: linear-gradient(90deg, #e5e7eb, #9ca3af, #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.border-accent {
    position: relative;
}

.border-accent:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb, #9ca3af, #e5e7eb);
}