:root {
    --bg-color: #121212;
    --surface-color: #1e1e1e;
    --primary-color: #03dac6;
    --primary-variant-color: #018786;
    --on-bg-color: #ffffff;
    --on-surface-color: #e0e0e0;
    --shadow-color: rgba(0, 255, 234, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--on-bg-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
}

header {
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--on-bg-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    background: url('hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--on-surface-color);
}

.cta-button, .whatsapp-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.cta-button:hover, .whatsapp-button:hover {
    background-color: var(--on-bg-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.product-gallery, .custom-order {
    padding: 6rem 5%;
    text-align: center;
}

.product-gallery {
    background-color: var(--bg-color);
}

.custom-order {
    background-color: var(--surface-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 1.5rem;
    color: var(--on-surface-color);
    flex-grow: 1;
}

.product-card .whatsapp-button {
    margin: 1.5rem;
}

.custom-order-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-order-content img {
    max-width: 50%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.custom-order-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
}

footer p:first-child {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    h2 { font-size: 2rem; }
    
    nav ul { display: none; } /* Simple responsive solution for now */

    .custom-order-content {
        flex-direction: column;
        text-align: center;
    }
    .custom-order-content img {
        max-width: 100%;
    }
}

