/* Campbell's Brand Colors */
.campbells-red {
    background-color: #a00; /* Deep red like the soup can */
}

.campbells-red-text {
    color: #a00;
}

.campbells-gold-text {
    color: #c8a700; /* Gold accent like the label */
}

/* Hero Section */
.hero {
    background: url('campbells-pattern.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button Styling */
.btn-campbells {
    background-color: #a00;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-campbells:hover {
    background-color: #900;
}
