* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Landing Page Gallery */
.landing {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.gallery-slide.active {
    opacity: 1;
}

/* Placeholder images with artistic gradients */
/* Replace these with your actual images:
   .slide1 { background-image: url('../images/slide1.jpg'); }
*/
.slide1 { background-image: url('../images/a_bull_sleeping_2000.86.1.webp'); }
.slide2 { background-image: url('../images/a_bull_sleeping_2000.86.1.webp'); }
.slide3 { background-image: url('../images/a_bull_sleeping_2000.86.1.webp'); }
.slide4 { background-image: url('../images/a_bull_sleeping_2000.86.1.webp'); }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 4rem;
    z-index: 10;
}

.logo {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.8);
    text-stroke: 0.5px rgba(0, 0, 0, 0.8);
    paint-order: stroke fill;
}

.logo:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 1);
    text-stroke: 0.5px rgba(0, 0, 0, 1);
}

.shop-btn {
    display: none;
}

/* Shop Section */
.shop-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.shop-header {
    text-align: center;
    margin-bottom: 4rem;
}

.shop-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #333;
    margin-bottom: 1rem;
}

.shop-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 1rem;
}

.buy-btn {
    padding: 0.8rem 2rem;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background: #764ba2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 4rem;
    }
    
    .shop-header h2 {
        font-size: 2rem;
    }
}
