body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    background: #2d6a4f;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

header {
    background: #afd4aa;
    text-align: center;
    padding: 50px 0;
}

h1 {
    color: #1b4332;
}

/* Simple card style for products */
.product {
    border: 1px solid #ccc;
    padding: 15px;
    margin: 10px;
    border-radius: 5px;
}

footer {
    background: #2d6a4f;
    color: white;
    text-align: center;
    padding: 10px;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.plan {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 15px;
    width: 250px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.plan h3 {
    color: #2d6a4f;
}

.plan button {
    background: #2d6a4f;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.plan button:hover {
    background: #1b4332;
}
/* Premium Logo Styling */
.logo {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
/* Hero Section */
.hero {
    background: url('broiler-hero.jpeg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    text-align: center;
}

/* Overlay for readability */
.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 25px;
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: 0.3s;
}

.btn-primary {
    background: #2d6a4f;
    color: white;
}

.btn-primary:hover {
    background: #1b4332;
}

.btn-secondary {
    background: white;
    color: #2d6a4f;
}

.btn-secondary:hover {
    background: #f1f8f4;
}