/* General */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    scroll-behavior: smooth;
}

/* Header */
header {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
}

nav a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ddd;
    transform: scale(1.05);
}

/* Animations */
.zoom-fade {
    opacity: 0;
    transform: scale(0.7);
    animation: zoomFade 1s forwards;
}

.pop-up {
    opacity: 0;
    transform: scale(0.5);
    animation: popUp 0.6s forwards;
}

.slide-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: slideFade 1s forwards;
}

.pop-slide {
    opacity: 0;
    transform: translateY(50px);
    animation: popSlide 0.8s forwards;
}

/* Animation delays */
.delay { animation-delay: 0.8s; }
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 1.3s; }

/* Keyframes */
@keyframes zoomFade { to { opacity: 1; transform: scale(1); } }
@keyframes popUp { to { opacity: 1; transform: scale(1); } }
@keyframes slideFade { to { opacity: 1; transform: translateY(0); } }
@keyframes popSlide { to { opacity: 1; transform: translateY(0); } }

/* Products Section */
.products-section {
    padding: 60px 20px;
    text-align: center;
}

.products-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background: #111;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 25px rgba(255,255,255,0.2);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px;
}
