File size: 1,237 Bytes
a31aac5
 
0df46b5
a31aac5
 
 
 
 
 
 
 
 
 
0df46b5
 
a31aac5
 
 
 
 
 
 
 
 
 
0df46b5
 
a31aac5
 
0df46b5
 
a31aac5
 
 
0df46b5
 
a31aac5
 
 
0df46b5
a31aac5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animation for hero text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

/* Product hover effect */
.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Instagram hover effect */
.instagram-item:hover img {
    transform: scale(1.1);
}

/* Lookbook overlay transition */
.lookbook-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lookbook-item:hover::after {
    opacity: 1;
}

/* Newsletter input focus */
.newsletter-input:focus {
    border-color: #c0a080;
    box-shadow: 0 0 0 1px #c0a080;
}