body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    padding: 0 1em;
}

nav ul li a {
    font-size: 1.25em; /* Adjust this value as needed */
    text-decoration: none;
    color: #333;
    padding: 0.5em 1em; /* Add padding for better spacing */
    display: inline-block; /* This allows the padding to take effect */
    transition: color 0.3s ease; /* Optional: for a smooth color transition on hover */
}

/* Add a hover effect for better user experience */
nav ul li a:hover {
    color: #800000; /* Change the color on hover to your brand color or any color you prefer */
}

nav #logo {
    height: auto; /* maintains aspect ratio */
    width: 100%; /* makes the logo as wide as its container */
    max-width: 200px; /* or whatever maximum size you desire */
    margin: 0; /* removes any default margin */
}


.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero-image.png') no-repeat center center; 
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 10em 0;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.btn {
    background-color: #800000;
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #a00000;
}

section {
    padding: 2em;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1em 0;
}

footer p {
    margin: 0;
}

.wine-section {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    padding: 20px;
}

.wine {
    margin: 10px;
    padding: 20px;
    text-align: center;
}

.wine img {
    width: 100%; /* Adjust as needed */
    height: auto;
    margin-bottom: 10px;
}
.cta-button-container {
    text-align: center; /* Centers the button */
    padding: 20px;
}

.btn.cta-button {
    padding: 1em 2em; /* Larger padding for a bigger button */
    font-size: 1.25em; /* Larger font size for button text */
    display: inline-block; /* Allows setting padding and margins */
    margin-top: 20px; /* Spacing above the button */
    background-color: #800000; /* Use your brand color */
    color: white;
    border: none;
    border-radius: 5px;
}

.btn.cta-button:hover {
    background-color: #a00000; /* Darker shade on hover */
    text-decoration: none; /* Removes underline on hover */
}

