/* Host Hobbit Web Design - External CSS for Better Performance */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.header { 
    background: #fff; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
}

.nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 0; 
}

.logo { 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #ffc107; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
}

.nav-links a { 
    color: #333; 
    text-decoration: none; 
    font-weight: 500; 
}

.nav-links a:hover { 
    color: #ffc107; 
}

.hero { 
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 
    padding: 120px 0 80px; 
    text-align: center; 
}

.hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
    color: #333; 
}

.hero .highlight { 
    color: #ffc107; 
}

.hero p { 
    font-size: 1.2rem; 
    color: #666; 
    margin-bottom: 2rem; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

.btn { 
    display: inline-block; 
    padding: 12px 24px; 
    background: #ffc107; 
    color: #000; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 500; 
    margin: 0 10px; 
    border: none; 
    cursor: pointer; 
}

.btn:hover { 
    background: #e6ac00; 
}

.section { 
    padding: 80px 0; 
}

.section h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 3rem; 
    color: #333; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    margin-top: 3rem; 
}

.service-card { 
    background: #fff; 
    padding: 2rem; 
    border-radius: 8px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    text-align: center; 
}

.service-card h3 { 
    color: #ffc107; 
    margin-bottom: 1rem; 
}

.areas-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem; 
    margin-bottom: 3rem; 
}

.area-item { 
    text-align: center; 
    padding: 1.5rem; 
    background: #f8f9fa; 
    border-radius: 8px; 
    transition: all 0.3s ease; 
}

.area-item:hover { 
    background: #ffc107; 
    color: #000; 
    transform: translateY(-2px); 
}

.area-name { 
    font-size: 1.1rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
}

.area-description { 
    font-size: 0.9rem; 
    color: #666; 
}

.contact { 
    background: #f8f9fa; 
}

.contact-form { 
    max-width: 800px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 2rem; 
    border-radius: 8px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
}

.form-group { 
    margin-bottom: 1rem; 
}

.form-group label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 500; 
}

.form-group input, 
.form-group textarea, 
.form-group select { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-size: 1rem; 
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus { 
    outline: none; 
    border-color: #ffc107; 
}

.checkbox-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    margin-top: 15px; 
}

.checkbox-item { 
    display: flex; 
    align-items: center; 
    font-weight: normal; 
    cursor: pointer; 
    padding: 15px; 
    border: 2px solid #e9ecef; 
    border-radius: 8px; 
    transition: all 0.3s ease; 
    background: #fff; 
}

.checkbox-item:hover { 
    background-color: #f8f9fa; 
    border-color: #ffc107; 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

.checkbox-item input[type="checkbox"] { 
    margin-right: 12px; 
    transform: scale(1.3); 
}

.checkbox-item input[type="checkbox"]:checked + span { 
    font-weight: 600; 
    color: #ffc107; 
}

.checkbox-item:has(input[type="checkbox"]:checked) { 
    border-color: #ffc107; 
    background-color: #fffbf0; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}

.alert { 
    padding: 1rem; 
    margin-bottom: 1rem; 
    border-radius: 4px; 
}

.alert-success { 
    background: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
}

.alert-error { 
    background: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb; 
}

.footer { 
    background: #333; 
    color: #fff; 
    padding: 40px 0; 
    text-align: center; 
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hero h1 { 
        font-size: 2rem; 
    }
    
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    
    .areas-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 480px) {
    .areas-grid { 
        grid-template-columns: 1fr; 
    }
}
