/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #2a2a2a;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
}

.brand-line {
    font-size: 1.2rem;
    font-weight: normal;
    color: #cccccc;
    display: block;
    margin-top: -0.5rem;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 0.5rem;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 100px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Frontpage tassen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-text {
    color: #ffffff;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Products Section */
.products {
    padding: 4rem 2rem;
    background-color: #f0f0f0;
    color: #333333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: transparent;
    perspective: 1000px;
    height: 500px;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-front, .product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-card-back h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.product-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    padding: 0;
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: #333333;
}

.product-card-front p {
    padding: 2rem;
    color: #666666;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 1rem;
    display: block;
}

/* About Section */
.about {
    background-color: #1a1a1a;
    padding: 4rem 2rem;
    color: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #2a2a2a;
    color: #ffffff;
}

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

.contact-info {
    background: #333333;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888888;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .products, .about, .contact {
        padding: 2rem 1rem;
    }
}