/*
Theme Name: GeneratePress Bergen
Description: GeneratePress child theme for Bergen template with terracotta/forest green colors
Template: generatepress
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600&family=Poppins:wght@400;600&display=swap');

:root {
    --terracotta: #C65D44;
    --forest-green: #2F5233;
    --warm-beige: #F5F0E6;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--warm-beige);
    color: var(--forest-green);
}

.site-logo img {
    max-height: 60px;
}

.bergen-hero {
    background: linear-gradient(135deg, var(--warm-beige), #fff);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.bergen-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.bergen-cta {
    background: var(--terracotta);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.bergen-cta:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .bergen-hero h1 {
        font-size: 2rem;
    }
    .bergen-hero {
        padding: 60px 15px;
    }
}
