/* Brand Identity */
:root {
    --brand-blue: #3a82f7;
    --brand-dark: #1a1a1a;
    --brand-white: #ffffff;
    --hero-bg: #e5d3b3;
    /* Fallback warm barn color */
}

.main-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    background: white;
    color: #333;
}

.nav-left {
    display: flex;
    gap: 20px;
}

.nav-left a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-family: 'Serif', Georgia, serif;
}

.logo-icon {
    font-size: 28px;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: auto;
    padding: 0;
}

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

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--brand-white);
    color: var(--brand-dark);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}