/* RESET */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #f8f5f2;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('/brando-hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    transform: translateY(-60px);
}

/* LOGO (BIGGER + CLEAN) */
.logo {
    width: 260px;
    margin-bottom: 25px;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.6));
}

/* TITLE */
.hero h1 {
    font-size: 64px;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* SUBTITLE */
.subtitle {
    letter-spacing: 3px;
    font-size: 14px;
    margin-top: 10px;
}

/* PRODUCTS */
.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

/* CARD */
.card {
    background: #f4efe9;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.card img {
    width: 100%;
    border-radius: 10px;
}

/* TITLE */
.card h3 {
    margin: 15px 0 5px;
}

/* DESC */
.desc {
    font-size: 14px;
    color: #444;
}

/* PRICE */
.price {
    margin-top: 10px;
    font-weight: bold;
} 
