/* ================= CUSTOM STYLES ================= */
:root {
    --primary-color: #2c5530; /* Elegant green */
    --accent-color: #d4a373;  /* Soft earth/gold tone */
    --bg-light: #fdfdfd;
    --text-dark: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    /* Loads header.jpg from your img/ folder */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/header.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}
.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-custom:hover {
    background-color: var(--accent-color);
    color: white;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 5rem 0;
}
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}
.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* Catalog */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.section-title p {
    color: #777;
    font-style: italic;
}

.variety-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
.variety-title {
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Catalog images hover effect */
.catalog-img-wrapper {
    overflow: hidden;
    border-radius: 4px;
}
.catalog-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.catalog-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}
footer a {
    color: #ddd;
    text-decoration: none;
}
footer a:hover {
    color: var(--accent-color);
}