:root {
    --brand-red: #A31D1D; /* Darkish red to match peppers */
    --brand-dark: #222222;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--brand-dark);
}

h1, h2, h3, .brand-text {
    font-family: 'Playfair Display', serif;
}

.brand-text {
    font-size: 1.2rem;
    color: var(--brand-red);
    font-weight: 600;
}

.btn-brand {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #821717;
    border-color: #821717;
}

/* SEO Friendly Hero Section */
.hero {
    position: relative;
    background-color: var(--brand-red); /* Fallback */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Dark overlay to ensure text is readable regardless of the background photo */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-style: italic;
    font-size: 2rem;
    color: #FFD700; /* Subtle gold/yellow from the original images */
    margin-top: 20px;
}

/* Add to existing CSS */

.brand-tagline {
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--brand-red);
}

/* Custom Navigation Styling */
.custom-nav .nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--brand-dark);
    margin: 0 15px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline effect on hover */
.custom-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--brand-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.custom-nav .nav-link:hover {
    color: var(--brand-red);
}

.custom-nav .nav-link:hover::after {
    width: 100%;
}

/* Make the contact link stand out a bit more */
.custom-nav .contact-link {
    font-weight: 600;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
    padding: 5px 20px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-nav .contact-link::after {
    display: none; /* remove the underline for the button */
}

.custom-nav .contact-link:hover {
    background-color: var(--brand-red);
    color: white !important;
}