/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: #333; }

/* Navigation */
nav { display: flex; justify-content: space-between; padding: 2rem; align-items: center; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 2rem; }
nav a { text-decoration: none; color: #333; font-weight: bold; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('vineyard.jpg') center/cover;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: white; text-align: center;
}
.btn {
    margin-top: 1.5rem; padding: 1rem 2rem; background: #8c1c28; /* Wine red */
    color: white; text-decoration: none; border-radius: 5px;
}

/* Containers */
.container { padding: 4rem 2rem; max-width: 800px; margin: auto; text-align: center; }

footer { text-align: center; padding: 2rem; background: #f4f4f4; }
